From 5e99204183f35616c380dbd14bea7b3533e6b89f Mon Sep 17 00:00:00 2001 From: Jovan Popovic Date: Tue, 14 Jun 2016 22:25:40 +0200 Subject: [PATCH 01/12] Added dotnet Todo REST API Added sample app that shows how to create REST API using JSON functionalities in SLQ server 2016/Azure SQL Database --- .../.vs/config/applicationhost.config | 994 +++ .../Controllers/TodoController.cs | 99 + .../json/dotnet-todo-rest-api/Program.cs | 25 + .../dotnet-todo-rest-api/Project_Readme.html | 187 + .../Properties/launchSettings.json | 28 + .../json/dotnet-todo-rest-api/Startup.cs | 52 + .../json/dotnet-todo-rest-api/TodoApp.xproj | 19 + .../dotnet-todo-rest-api/TodoApp.xproj.user | 7 + .../json/dotnet-todo-rest-api/app.config | 5 + .../dotnet-todo-rest-api/appsettings.json | 10 + .../json/dotnet-todo-rest-api/project.json | 45 + .../dotnet-todo-rest-api/project.lock.json | 5436 +++++++++++++++++ .../dotnet-todo-rest-api/setup/TodoDb.bacpac | Bin 0 -> 4586 bytes .../json/dotnet-todo-rest-api/setup/setup.sql | 19 + .../json/dotnet-todo-rest-api/web.config | 14 + 15 files changed, 6940 insertions(+) create mode 100644 samples/features/json/dotnet-todo-rest-api/.vs/config/applicationhost.config create mode 100644 samples/features/json/dotnet-todo-rest-api/Controllers/TodoController.cs create mode 100644 samples/features/json/dotnet-todo-rest-api/Program.cs create mode 100644 samples/features/json/dotnet-todo-rest-api/Project_Readme.html create mode 100644 samples/features/json/dotnet-todo-rest-api/Properties/launchSettings.json create mode 100644 samples/features/json/dotnet-todo-rest-api/Startup.cs create mode 100644 samples/features/json/dotnet-todo-rest-api/TodoApp.xproj create mode 100644 samples/features/json/dotnet-todo-rest-api/TodoApp.xproj.user create mode 100644 samples/features/json/dotnet-todo-rest-api/app.config create mode 100644 samples/features/json/dotnet-todo-rest-api/appsettings.json create mode 100644 samples/features/json/dotnet-todo-rest-api/project.json create mode 100644 samples/features/json/dotnet-todo-rest-api/project.lock.json create mode 100644 samples/features/json/dotnet-todo-rest-api/setup/TodoDb.bacpac create mode 100644 samples/features/json/dotnet-todo-rest-api/setup/setup.sql create mode 100644 samples/features/json/dotnet-todo-rest-api/web.config diff --git a/samples/features/json/dotnet-todo-rest-api/.vs/config/applicationhost.config b/samples/features/json/dotnet-todo-rest-api/.vs/config/applicationhost.config new file mode 100644 index 00000000..c3bb2d68 --- /dev/null +++ b/samples/features/json/dotnet-todo-rest-api/.vs/config/applicationhost.config @@ -0,0 +1,994 @@ + + + + + + +
+
+
+
+
+
+
+
+ + +
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ +
+
+ +
+
+
+
+
+
+ +
+
+
+
+
+ +
+
+
+ +
+
+ +
+
+ +
+
+
+ + +
+
+
+
+
+
+ +
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/samples/features/json/dotnet-todo-rest-api/Controllers/TodoController.cs b/samples/features/json/dotnet-todo-rest-api/Controllers/TodoController.cs new file mode 100644 index 00000000..1b7df777 --- /dev/null +++ b/samples/features/json/dotnet-todo-rest-api/Controllers/TodoController.cs @@ -0,0 +1,99 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; +using Belgrade.SqlClient; +using System.Data.SqlClient; +using System.IO; + +namespace TodoApp.Controllers +{ + [Route("api/[controller]")] + public class TodoController : Controller + { + private readonly IQueryPipe SqlPipe; + private readonly ICommand SqlCommand; + + public TodoController(ICommand sqlCommand, IQueryPipe sqlPipe) + { + this.SqlCommand = sqlCommand; + this.SqlPipe = sqlPipe; + } + + // GET api/Todo + [HttpGet] + public async Task Get() + { + await SqlPipe.Stream("select * from Todo FOR JSON PATH", Response.Body, "[]"); + } + + // GET api/Todo/5 + [HttpGet("{id}")] + public async Task Get(int id) + { + var cmd = new SqlCommand("select * from Todo where Id = @id FOR JSON PATH, WITHOUT_ARRAY_WRAPPER"); + cmd.Parameters.AddWithValue("id", id); + await SqlPipe.Stream(cmd, Response.Body, "{}"); + } + + // POST api/Todo + [HttpPost] + public async Task Post() + { + string todo = new StreamReader(Request.Body).ReadToEnd(); + var cmd = new SqlCommand( + @"insert into Todo + select * + from OPENJSON(@todo) + WITH( Title nvarchar(30), Description nvarchar(4000), Completed bit, TargetDate datetime2)"); + cmd.Parameters.AddWithValue("todo", todo); + await SqlCommand.ExecuteNonQuery(cmd); + } + + // PATCH api/Todo + [HttpPatch] + public async Task Patch(int id) + { + string todo = new StreamReader(Request.Body).ReadToEnd(); + var cmd = new SqlCommand( + @"update Todo + set Title = ISNULL(json.Title, Title), Description = ISNULL(json.Description, Description), + Completed = ISNULL(json.Completed, Completed), TargetDate = ISNULL(json.TargetDate, TargetDate) + from OPENJSON(@todo) + WITH( Title nvarchar(30), Description nvarchar(4000), + Completed bit, TargetDate datetime2) AS json + where Id = @id"); + cmd.Parameters.AddWithValue("id", id); + cmd.Parameters.AddWithValue("todo", todo); + await SqlCommand.ExecuteNonQuery(cmd); + } + + // PUT api/Todo/5 + [HttpPut("{id}")] + public async Task Put(int id) + { + string todo = new StreamReader(Request.Body).ReadToEnd(); + var cmd = new SqlCommand( + @"update Todo + set Title = json.Title, Description = json.Description, + Completed = json.completed, TargetDate = json.TargetDate + from OPENJSON( @todo ) + WITH( Title nvarchar(30), Description nvarchar(4000), + Completed bit, TargetDate datetime2) AS json + where Id = @id"); + cmd.Parameters.AddWithValue("id", id); + cmd.Parameters.AddWithValue("todo", todo); + await SqlCommand.ExecuteNonQuery(cmd); + } + + // DELETE api/Todo/5 + [HttpDelete("{id}")] + public async Task Delete(int id) + { + var cmd = new SqlCommand(@"delete Todo where Id = @id"); + cmd.Parameters.AddWithValue("id", id); + await SqlCommand.ExecuteNonQuery(cmd); + } + } +} diff --git a/samples/features/json/dotnet-todo-rest-api/Program.cs b/samples/features/json/dotnet-todo-rest-api/Program.cs new file mode 100644 index 00000000..8f0fec07 --- /dev/null +++ b/samples/features/json/dotnet-todo-rest-api/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.Hosting; +using Microsoft.AspNetCore.Builder; + +namespace TodoApp +{ + 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/samples/features/json/dotnet-todo-rest-api/Project_Readme.html b/samples/features/json/dotnet-todo-rest-api/Project_Readme.html new file mode 100644 index 00000000..bddf864a --- /dev/null +++ b/samples/features/json/dotnet-todo-rest-api/Project_Readme.html @@ -0,0 +1,187 @@ + + + + + Welcome to ASP.NET Core + + + + + + + + + + diff --git a/samples/features/json/dotnet-todo-rest-api/Properties/launchSettings.json b/samples/features/json/dotnet-todo-rest-api/Properties/launchSettings.json new file mode 100644 index 00000000..755da75b --- /dev/null +++ b/samples/features/json/dotnet-todo-rest-api/Properties/launchSettings.json @@ -0,0 +1,28 @@ +{ + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:15194/", + "sslPort": 0 + } + }, + "profiles": { + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "api/Todo", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "TodoApp": { + "commandName": "Project", + "launchBrowser": true, + "launchUrl": "http://localhost:5000/api/Todo", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} \ No newline at end of file diff --git a/samples/features/json/dotnet-todo-rest-api/Startup.cs b/samples/features/json/dotnet-todo-rest-api/Startup.cs new file mode 100644 index 00000000..b1c1e84c --- /dev/null +++ b/samples/features/json/dotnet-todo-rest-api/Startup.cs @@ -0,0 +1,52 @@ +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 Belgrade.SqlClient; +using Belgrade.SqlClient.Common; +using Belgrade.SqlClient.SqlDb; +using System.Data.SqlClient; + +namespace TodoApp +{ + public class Startup + { + public Startup(IHostingEnvironment env) + { + var builder = new ConfigurationBuilder() + .SetBasePath(env.ContentRootPath) + .AddJsonFile("appsettings.json", optional: true, 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) + { + const string ConnString = "Server=SERVERNAME.database.windows.net;Database=DATABASENAME;User Id=USERNAME;Password=PASSWORD"; + + services.AddTransient( _=> new QueryPipe(new SqlConnection(ConnString))); + services.AddTransient( _=> new Command(new SqlConnection(ConnString))); + + // Add framework services. + services.AddMvc(); + } + + // 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(); + } + } +} diff --git a/samples/features/json/dotnet-todo-rest-api/TodoApp.xproj b/samples/features/json/dotnet-todo-rest-api/TodoApp.xproj new file mode 100644 index 00000000..1038e91f --- /dev/null +++ b/samples/features/json/dotnet-todo-rest-api/TodoApp.xproj @@ -0,0 +1,19 @@ + + + + 14.0 + $(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion) + + + + c8014cba-1952-414a-b78e-f60f9e5c5625 + TodoApp + .\obj + .\bin\ + v4.6 + + + 2.0 + + + diff --git a/samples/features/json/dotnet-todo-rest-api/TodoApp.xproj.user b/samples/features/json/dotnet-todo-rest-api/TodoApp.xproj.user new file mode 100644 index 00000000..4a17fd06 --- /dev/null +++ b/samples/features/json/dotnet-todo-rest-api/TodoApp.xproj.user @@ -0,0 +1,7 @@ + + + + IIS Express + true + + \ No newline at end of file diff --git a/samples/features/json/dotnet-todo-rest-api/app.config b/samples/features/json/dotnet-todo-rest-api/app.config new file mode 100644 index 00000000..49aadfaa --- /dev/null +++ b/samples/features/json/dotnet-todo-rest-api/app.config @@ -0,0 +1,5 @@ + + + + + diff --git a/samples/features/json/dotnet-todo-rest-api/appsettings.json b/samples/features/json/dotnet-todo-rest-api/appsettings.json new file mode 100644 index 00000000..fa8ce71a --- /dev/null +++ b/samples/features/json/dotnet-todo-rest-api/appsettings.json @@ -0,0 +1,10 @@ +{ + "Logging": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Debug", + "System": "Information", + "Microsoft": "Information" + } + } +} diff --git a/samples/features/json/dotnet-todo-rest-api/project.json b/samples/features/json/dotnet-todo-rest-api/project.json new file mode 100644 index 00000000..4370dc88 --- /dev/null +++ b/samples/features/json/dotnet-todo-rest-api/project.json @@ -0,0 +1,45 @@ +{ + "dependencies": { + "Belgrade.Sql.Client": "0.1.0", + "Microsoft.AspNetCore.Mvc": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Server.IISIntegration": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Server.Kestrel": "1.0.0-rc2-final", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "1.0.0-rc2-final", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-final", + "Microsoft.Extensions.Configuration.Json": "1.0.0-rc2-final", + "Microsoft.Extensions.Logging": "1.0.0-rc2-final", + "Microsoft.Extensions.Logging.Console": "1.0.0-rc2-final", + "Microsoft.Extensions.Logging.Debug": "1.0.0-rc2-final", + "System.Data.SqlClient": "4.1.0-rc2-24027", + "System.IO": "4.1.0-rc2-24027" + }, + + "tools": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools": { + "version": "1.0.0-preview1-final", + "imports": "portable-net45+win8+dnxcore50" + } + }, + + "frameworks": { + "net46": { } + }, + + "buildOptions": { + "emitEntryPoint": true, + "preserveCompilationContext": true + }, + + "publishOptions": { + "include": [ + "wwwroot", + "Views", + "appsettings.json", + "web.config" + ] + }, + + "scripts": { + "postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ] + } +} diff --git a/samples/features/json/dotnet-todo-rest-api/project.lock.json b/samples/features/json/dotnet-todo-rest-api/project.lock.json new file mode 100644 index 00000000..127ee2bb --- /dev/null +++ b/samples/features/json/dotnet-todo-rest-api/project.lock.json @@ -0,0 +1,5436 @@ +{ + "locked": false, + "version": 2, + "targets": { + ".NETFramework,Version=v4.6": { + "Belgrade.Sql.Client/0.1.0": { + "type": "package", + "dependencies": { + "System.Data.SqlClient": "(, )" + }, + "frameworkAssemblies": [ + "System", + "System.Data" + ], + "compile": { + "lib/Belgrade.SqlClient.dll": {} + }, + "runtime": { + "lib/Belgrade.SqlClient.dll": {} + } + }, + "Libuv/1.9.0-rc2-20901": { + "type": "package", + "runtimeTargets": { + "runtimes/debian-x64/native/libuv.so": { + "assetType": "native", + "rid": "debian-x64" + }, + "runtimes/osx/native/libuv.dylib": { + "assetType": "native", + "rid": "osx" + }, + "runtimes/rhel-x64/native/libuv.so": { + "assetType": "native", + "rid": "rhel-x64" + }, + "runtimes/win7-arm/native/libuv.dll": { + "assetType": "native", + "rid": "win7-arm" + }, + "runtimes/win7-x64/native/libuv.dll": { + "assetType": "native", + "rid": "win7-x64" + }, + "runtimes/win7-x86/native/libuv.dll": { + "assetType": "native", + "rid": "win7-x86" + } + } + }, + "Microsoft.AspNetCore.Antiforgery/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.DataProtection": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Http.Abstractions": "1.0.0-rc2-final", + "Microsoft.AspNetCore.WebUtilities": "1.0.0-rc2-final", + "Microsoft.Extensions.ObjectPool": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Antiforgery.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Antiforgery.dll": {} + } + }, + "Microsoft.AspNetCore.Authorization/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Options": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Authorization.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Authorization.dll": {} + } + }, + "Microsoft.AspNetCore.Cors/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "1.0.0-rc2-final", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Options": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Cors.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Cors.dll": {} + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/1.0.0-rc2-final": { + "type": "package", + "compile": { + "lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll": {} + } + }, + "Microsoft.AspNetCore.DataProtection/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "1.0.0-rc2-final", + "Microsoft.AspNetCore.DataProtection.Abstractions": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Options": "1.0.0-rc2-final" + }, + "frameworkAssemblies": [ + "System.Security", + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/net451/Microsoft.AspNetCore.DataProtection.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.DataProtection.dll": {} + } + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0-rc2-final": { + "type": "package", + "compile": { + "lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-rc2-24027" + }, + "compile": { + "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Http": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Http.Extensions": "1.0.0-rc2-final", + "Microsoft.Extensions.Configuration": "1.0.0-rc2-final", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-final", + "Microsoft.Extensions.FileProviders.Physical": "1.0.0-rc2-final", + "Microsoft.Extensions.Logging": "1.0.0-rc2-final", + "Microsoft.Extensions.Options": "1.0.0-rc2-final", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-24027" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Hosting.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Hosting.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Http.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "1.0.0-rc2-final", + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Html.Abstractions/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Text.Encodings.Web": "4.0.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "1.0.0-rc2-final", + "Microsoft.AspNetCore.WebUtilities": "1.0.0-rc2-final", + "Microsoft.Extensions.ObjectPool": "1.0.0-rc2-final", + "Microsoft.Extensions.Options": "1.0.0-rc2-final", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-final", + "System.Buffers": "4.0.0-rc2-24027" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Http.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Http.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Abstractions/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "1.0.0-rc2-final", + "System.Text.Encodings.Web": "4.0.0-rc2-24027" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Extensions/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0-rc2-final", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-final", + "System.Buffers": "4.0.0-rc2-24027" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Http.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.Http.Features/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Http.Features.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Http.Features.dll": {} + } + }, + "Microsoft.AspNetCore.HttpOverrides/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "1.0.0-rc2-final", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Options": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.HttpOverrides.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.HttpOverrides.dll": {} + } + }, + "Microsoft.AspNetCore.JsonPatch/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1-rc2-24027", + "Newtonsoft.Json": "8.0.3", + "System.Collections.Concurrent": "4.0.12-rc2-24027", + "System.ComponentModel.TypeConverter": "4.0.1-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Reflection.Extensions": "4.0.1-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027", + "System.Runtime.Serialization.Primitives": "4.1.1-rc2-24027", + "System.Text.Encoding.Extensions": "4.0.11-rc2-24027" + }, + "compile": { + "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {} + }, + "runtime": { + "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll": {} + } + }, + "Microsoft.AspNetCore.Localization/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "1.0.0-rc2-final", + "Microsoft.Extensions.Globalization.CultureInfoCache": "1.0.0-rc2-final", + "Microsoft.Extensions.Localization.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Options": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Localization.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Localization.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.ApiExplorer": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Mvc.Cors": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Mvc.Localization": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Mvc.Razor": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Mvc.TagHelpers": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.0-rc2-final", + "Microsoft.Extensions.Caching.Memory": "1.0.0-rc2-final", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Mvc.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Mvc.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Abstractions/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0-rc2-final", + "Microsoft.Net.Http.Headers": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Core": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Core/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Authorization": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Http": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Mvc.Abstractions": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Routing": "1.0.0-rc2-final", + "Microsoft.Extensions.DependencyModel": "1.0.0-rc2-final", + "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final", + "System.Buffers": "4.0.0-rc2-24027", + "System.Diagnostics.DiagnosticSource": "4.0.0-rc2-24027" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Mvc.Core.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Cors/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cors": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Mvc.Core": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Core": "1.0.0-rc2-final", + "Microsoft.Extensions.Localization": "1.0.0-rc2-final" + }, + "frameworkAssemblies": [ + "System.ComponentModel.DataAnnotations" + ], + "compile": { + "lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Mvc.Core": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Localization/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Localization": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Mvc.Razor": "1.0.0-rc2-final", + "Microsoft.Extensions.DependencyInjection": "1.0.0-rc2-final", + "Microsoft.Extensions.Localization": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Host": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "1.0.0-rc2-final", + "Microsoft.CodeAnalysis.CSharp": "1.3.0-beta1-20160429-01", + "Microsoft.Extensions.FileProviders.Composite": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Runtime": "1.0.0-rc2-final", + "Microsoft.Extensions.Caching.Memory": "1.0.0-rc2-final", + "Microsoft.Extensions.FileProviders.Physical": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor": "1.0.0-rc2-final", + "Microsoft.Extensions.Caching.Memory": "1.0.0-rc2-final", + "Microsoft.Extensions.FileSystemGlobbing": "1.0.0-rc2-final", + "Microsoft.Extensions.Primitives": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Antiforgery": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Html.Abstractions": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Mvc.Core": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "1.0.0-rc2-final", + "Microsoft.Extensions.WebEncoders": "1.0.0-rc2-final", + "Newtonsoft.Json": "8.0.3", + "System.Buffers": "4.0.0-rc2-24027" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + } + }, + "Microsoft.AspNetCore.Razor/1.0.0-rc2-final": { + "type": "package", + "compile": { + "lib/net451/Microsoft.AspNetCore.Razor.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Razor.dll": {} + } + }, + "Microsoft.AspNetCore.Razor.Runtime/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Html.Abstractions": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Razor": "1.0.0-rc2-final" + }, + "frameworkAssemblies": [ + "System.Xml", + "System.Xml.Linq" + ], + "compile": { + "lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll": {} + } + }, + "Microsoft.AspNetCore.Routing/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Routing.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.ObjectPool": "1.0.0-rc2-final", + "Microsoft.Extensions.Options": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Routing.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Routing.dll": {} + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll": {} + } + }, + "Microsoft.AspNetCore.Server.IISIntegration/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Http": "1.0.0-rc2-final", + "Microsoft.AspNetCore.Http.Extensions": "1.0.0-rc2-final", + "Microsoft.AspNetCore.HttpOverrides": "1.0.0-rc2-final", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Options": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll": {} + } + }, + "Microsoft.AspNetCore.Server.Kestrel/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Libuv": "1.9.0-rc2-20901", + "Microsoft.AspNetCore.Hosting": "1.0.0-rc2-final", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final", + "System.Buffers": "4.0.0-rc2-24027", + "System.Numerics.Vectors": "4.1.1-rc2-24027", + "System.Threading.Tasks.Extensions": "4.0.0-rc2-24027" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll": {} + } + }, + "Microsoft.AspNetCore.WebUtilities/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-final", + "System.Buffers": "4.0.0-rc2-24027", + "System.Text.Encodings.Web": "4.0.0-rc2-24027" + }, + "compile": { + "lib/net451/Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.AspNetCore.WebUtilities.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package", + "frameworkAssemblies": [ + "System" + ] + }, + "Microsoft.CodeAnalysis.Common/1.3.0-beta1-20160429-01": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.AppContext": "4.1.0-rc2-24027", + "System.Collections": "4.0.11-rc2-24027", + "System.Collections.Concurrent": "4.0.12-rc2-24027", + "System.Collections.Immutable": "1.2.0-rc2-24027", + "System.Console": "4.0.0-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Diagnostics.FileVersionInfo": "4.0.0-rc2-24027", + "System.Diagnostics.StackTrace": "4.0.1-rc2-24027", + "System.Diagnostics.Tools": "4.0.1-rc2-24027", + "System.Dynamic.Runtime": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO.FileSystem": "4.0.1-rc2-24027", + "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Reflection.Metadata": "1.3.0-rc2-24027", + "System.Reflection.Primitives": "4.0.1-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027", + "System.Runtime.Handles": "4.0.1-rc2-24027", + "System.Runtime.InteropServices": "4.1.0-rc2-24027", + "System.Runtime.Numerics": "4.0.1-rc2-24027", + "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-24027", + "System.Security.Cryptography.X509Certificates": "4.1.0-rc2-24027", + "System.Text.Encoding": "4.0.11-rc2-24027", + "System.Text.Encoding.CodePages": "4.0.1-rc2-24027", + "System.Text.Encoding.Extensions": "4.0.11-rc2-24027", + "System.Threading": "4.0.11-rc2-24027", + "System.Threading.Tasks": "4.0.11-rc2-24027", + "System.Threading.Tasks.Parallel": "4.0.1-rc2-24027", + "System.Threading.Thread": "4.0.0-rc2-24027", + "System.Xml.ReaderWriter": "4.0.11-rc2-24027", + "System.Xml.XDocument": "4.0.11-rc2-24027", + "System.Xml.XPath.XDocument": "4.0.1-rc2-24027", + "System.Xml.XmlDocument": "4.0.1-rc2-24027" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/1.3.0-beta1-20160429-01": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.3.0-beta1-20160429-01]" + }, + "compile": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + }, + "runtime": { + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CSharp/4.0.1-rc2-24027": { + "type": "package", + "frameworkAssemblies": [ + "Microsoft.CSharp" + ], + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "Microsoft.DotNet.InternalAbstractions/1.0.0-rc2-002702": { + "type": "package", + "compile": { + "lib/net451/Microsoft.DotNet.InternalAbstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.DotNet.InternalAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-final", + "System.Collections": "4.0.11-rc2-24027", + "System.Threading": "4.0.11-rc2-24027", + "System.Threading.Tasks": "4.0.11-rc2-24027" + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Caching.Memory/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Options": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.Extensions.Caching.Memory.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Caching.Memory.dll": {} + } + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-final", + "System.Collections": "4.0.11-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027", + "System.Runtime.InteropServices": "4.1.0-rc2-24027", + "System.Threading": "4.0.11-rc2-24027" + }, + "compile": { + "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-final", + "System.Linq": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-final", + "Microsoft.Extensions.FileProviders.Physical": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll": {} + } + }, + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "1.0.0-rc2-final", + "Microsoft.Extensions.Configuration.FileExtensions": "1.0.0-rc2-final", + "Newtonsoft.Json": "8.0.3" + }, + "compile": { + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Configuration.Json.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", + "System.Collections": "4.0.11-rc2-24027", + "System.Collections.Concurrent": "4.0.12-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027", + "System.Threading": "4.0.11-rc2-24027", + "System.Threading.Tasks": "4.0.11-rc2-24027" + }, + "compile": { + "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "System.ComponentModel": "4.0.1-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027" + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.InternalAbstractions": "1.0.0-rc2-002702", + "Newtonsoft.Json": "7.0.1" + }, + "compile": { + "lib/net451/Microsoft.Extensions.DependencyModel.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "1.0.0-rc2-final", + "System.IO": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027" + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Composite/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0-rc2-final" + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.FileSystemGlobbing": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.FileProviders.Physical.dll": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/1.0.0-rc2-final": { + "type": "package", + "compile": { + "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll": {} + } + }, + "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "System.Collections.Concurrent": "4.0.12-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027" + }, + "compile": { + "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {} + }, + "runtime": { + "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll": {} + } + }, + "Microsoft.Extensions.Localization/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Localization.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Options": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.Extensions.Localization.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Localization.dll": {} + } + }, + "Microsoft.Extensions.Localization.Abstractions/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.0.1-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027" + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", + "System.Threading": "4.0.11-rc2-24027" + }, + "compile": { + "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {} + }, + "runtime": { + "lib/netstandard1.1/Microsoft.Extensions.Logging.dll": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Collections.Concurrent": "4.0.12-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027", + "System.Runtime.InteropServices": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "runtime": { + "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll": {} + } + }, + "Microsoft.Extensions.Logging.Console/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Console.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Console.dll": {} + } + }, + "Microsoft.Extensions.Logging.Debug/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "1.0.0-rc2-final" + }, + "compile": { + "lib/net451/Microsoft.Extensions.Logging.Debug.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.Logging.Debug.dll": {} + } + }, + "Microsoft.Extensions.ObjectPool/1.0.0-rc2-final": { + "type": "package", + "compile": { + "lib/net451/Microsoft.Extensions.ObjectPool.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.ObjectPool.dll": {} + } + }, + "Microsoft.Extensions.Options/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Primitives": "1.0.0-rc2-final", + "System.ComponentModel": "4.0.1-rc2-24027", + "System.Diagnostics.Debug": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Linq.Expressions": "4.0.11-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027", + "System.Threading": "4.0.11-rc2-24027" + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.Options.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.Options.dll": {} + } + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-final": { + "type": "package", + "compile": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + }, + "runtime": { + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll": {} + } + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll": {} + } + }, + "Microsoft.Extensions.WebEncoders/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "1.0.0-rc2-final", + "Microsoft.Extensions.Options": "1.0.0-rc2-final", + "System.Text.Encodings.Web": "4.0.0-rc2-24027" + }, + "compile": { + "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {} + }, + "runtime": { + "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll": {} + } + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-final": { + "type": "package", + "dependencies": { + "System.Buffers": "4.0.0-rc2-24027", + "System.Collections": "4.0.11-rc2-24027", + "System.Diagnostics.Contracts": "4.0.1-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.Linq": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027", + "System.Text.Encoding": "4.0.11-rc2-24027" + }, + "compile": { + "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {} + } + }, + "Newtonsoft.Json/8.0.3": { + "type": "package", + "compile": { + "lib/net45/Newtonsoft.Json.dll": {} + }, + "runtime": { + "lib/net45/Newtonsoft.Json.dll": {} + } + }, + "runtime.native.System/4.0.0-rc2-24027": { + "type": "package" + }, + "runtime.native.System.Data.SqlClient.sni/4.0.0-rc2-24027": { + "type": "package", + "dependencies": { + "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni": "4.0.1-rc2-24027", + "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni": "4.0.1-rc2-24027" + } + }, + "runtime.native.System.Net.Http/4.0.1-rc2-24027": { + "type": "package" + }, + "runtime.native.System.Security.Cryptography/4.0.0-rc2-24027": { + "type": "package" + }, + "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.0.1-rc2-24027": { + "type": "package", + "runtimeTargets": { + "runtimes/win7-x64/native/sni.dll": { + "assetType": "native", + "rid": "win7-x64" + } + } + }, + "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.0.1-rc2-24027": { + "type": "package", + "runtimeTargets": { + "runtimes/win7-x86/native/sni.dll": { + "assetType": "native", + "rid": "win7-x86" + } + } + }, + "System.AppContext/4.1.0-rc2-24027": { + "type": "package", + "frameworkAssemblies": [ + "mscorlib" + ], + "compile": { + "ref/netstandard1.3/System.AppContext.dll": {} + }, + "runtime": { + "lib/net46/System.AppContext.dll": {} + } + }, + "System.Buffers/4.0.0-rc2-24027": { + "type": "package", + "compile": { + "lib/netstandard1.1/System.Buffers.dll": {} + }, + "runtime": { + "lib/netstandard1.1/System.Buffers.dll": {} + } + }, + "System.Collections/4.0.11-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Concurrent/4.0.12-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Collections.Immutable/1.2.0-rc2-24027": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel/4.0.1-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.ComponentModel.Primitives/4.0.1-rc2-24027": { + "type": "package", + "frameworkAssemblies": [ + "System", + "mscorlib" + ], + "compile": { + "ref/net45/System.ComponentModel.Primitives.dll": {} + }, + "runtime": { + "lib/net45/System.ComponentModel.Primitives.dll": {} + } + }, + "System.ComponentModel.TypeConverter/4.0.1-rc2-24027": { + "type": "package", + "dependencies": { + "System.ComponentModel.Primitives": "4.0.1-rc2-24027" + }, + "frameworkAssemblies": [ + "System", + "mscorlib" + ], + "compile": { + "ref/net45/System.ComponentModel.TypeConverter.dll": {} + }, + "runtime": { + "lib/net45/System.ComponentModel.TypeConverter.dll": {} + } + }, + "System.Console/4.0.0-rc2-24027": { + "type": "package", + "frameworkAssemblies": [ + "mscorlib" + ], + "compile": { + "ref/net46/System.Console.dll": {} + }, + "runtime": { + "lib/net46/System.Console.dll": {} + } + }, + "System.Data.Common/4.0.1-rc2-24027": { + "type": "package", + "frameworkAssemblies": [ + "System.Data", + "mscorlib" + ], + "compile": { + "ref/net45/System.Data.Common.dll": {} + }, + "runtime": { + "lib/net45/System.Data.Common.dll": {} + } + }, + "System.Data.SqlClient/4.1.0-rc2-24027": { + "type": "package", + "dependencies": { + "System.Data.Common": "4.0.1-rc2-24027", + "runtime.native.System.Data.SqlClient.sni": "4.0.0-rc2-24027" + }, + "frameworkAssemblies": [ + "System.Data", + "mscorlib" + ], + "compile": { + "ref/net46/System.Data.SqlClient.dll": {} + }, + "runtime": { + "lib/net46/System.Data.SqlClient.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win7/lib/netstandard1.3/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win7" + } + } + }, + "System.Diagnostics.Contracts/4.0.1-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Diagnostics.Debug/4.0.11-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Diagnostics.DiagnosticSource/4.0.0-rc2-24027": { + "type": "package", + "compile": { + "lib/net46/System.Diagnostics.DiagnosticSource.dll": {} + }, + "runtime": { + "lib/net46/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.FileVersionInfo/4.0.0-rc2-24027": { + "type": "package", + "frameworkAssemblies": [ + "System", + "mscorlib" + ], + "compile": { + "ref/net46/_._": {} + }, + "runtime": { + "lib/net46/System.Diagnostics.FileVersionInfo.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win7/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll": { + "assetType": "runtime", + "rid": "win7" + } + } + }, + "System.Diagnostics.StackTrace/4.0.1-rc2-24027": { + "type": "package", + "frameworkAssemblies": [ + "mscorlib" + ], + "compile": { + "ref/net46/_._": {} + }, + "runtime": { + "lib/net46/System.Diagnostics.StackTrace.dll": {} + } + }, + "System.Diagnostics.Tools/4.0.1-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Dynamic.Runtime/4.0.11-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Globalization/4.0.11-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.IO/4.1.0-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.IO.FileSystem/4.0.1-rc2-24027": { + "type": "package", + "dependencies": { + "System.IO.FileSystem.Primitives": "4.0.1-rc2-24027" + }, + "frameworkAssemblies": [ + "mscorlib" + ], + "compile": { + "ref/net46/System.IO.FileSystem.dll": {} + }, + "runtime": { + "lib/net46/System.IO.FileSystem.dll": {} + } + }, + "System.IO.FileSystem.Primitives/4.0.1-rc2-24027": { + "type": "package", + "frameworkAssemblies": [ + "mscorlib" + ], + "compile": { + "ref/net46/System.IO.FileSystem.Primitives.dll": {} + }, + "runtime": { + "lib/net46/System.IO.FileSystem.Primitives.dll": {} + } + }, + "System.Linq/4.1.0-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Linq.Expressions/4.0.11-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Numerics.Vectors/4.1.1-rc2-24027": { + "type": "package", + "frameworkAssemblies": [ + "System.Numerics", + "mscorlib" + ], + "compile": { + "ref/net46/System.Numerics.Vectors.dll": {}, + "ref/net46/_._": {} + }, + "runtime": { + "lib/net46/System.Numerics.Vectors.dll": {}, + "lib/net46/_._": {} + } + }, + "System.Reflection/4.1.0-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection.Extensions/4.0.1-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Reflection.Metadata/1.3.0-rc2-24027": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "1.2.0-rc2-24027" + }, + "compile": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + }, + "runtime": { + "lib/portable-net45+win8/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.0.1-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Resources.ResourceManager/4.0.1-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime/4.1.0-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Extensions/4.1.0-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Handles/4.0.1-rc2-24027": { + "type": "package", + "compile": { + "ref/net46/_._": {} + }, + "runtime": { + "lib/net46/_._": {} + } + }, + "System.Runtime.InteropServices/4.1.0-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Numerics/4.0.1-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Runtime.Serialization.Primitives/4.1.1-rc2-24027": { + "type": "package", + "frameworkAssemblies": [ + "System.Runtime.Serialization", + "mscorlib" + ], + "compile": { + "ref/net46/System.Runtime.Serialization.Primitives.dll": {} + }, + "runtime": { + "lib/net46/System.Runtime.Serialization.Primitives.dll": {} + } + }, + "System.Security.Cryptography.Algorithms/4.1.0-rc2-24027": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.Primitives": "4.0.0-rc2-24027" + }, + "frameworkAssemblies": [ + "System.Core", + "mscorlib" + ], + "compile": { + "ref/net46/System.Security.Cryptography.Algorithms.dll": {} + }, + "runtime": { + "lib/net46/System.Security.Cryptography.Algorithms.dll": {} + } + }, + "System.Security.Cryptography.Encoding/4.0.0-rc2-24027": { + "type": "package", + "dependencies": { + "runtime.native.System.Security.Cryptography": "4.0.0-rc2-24027" + }, + "frameworkAssemblies": [ + "System", + "mscorlib" + ], + "compile": { + "ref/net46/System.Security.Cryptography.Encoding.dll": {} + }, + "runtime": { + "lib/net46/System.Security.Cryptography.Encoding.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win7/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll": { + "assetType": "runtime", + "rid": "win7" + } + } + }, + "System.Security.Cryptography.Primitives/4.0.0-rc2-24027": { + "type": "package", + "frameworkAssemblies": [ + "mscorlib" + ], + "compile": { + "ref/net46/System.Security.Cryptography.Primitives.dll": {} + }, + "runtime": { + "lib/net46/System.Security.Cryptography.Primitives.dll": {} + } + }, + "System.Security.Cryptography.X509Certificates/4.1.0-rc2-24027": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.Algorithms": "4.1.0-rc2-24027", + "System.Security.Cryptography.Encoding": "4.0.0-rc2-24027", + "runtime.native.System": "4.0.0-rc2-24027", + "runtime.native.System.Net.Http": "4.0.1-rc2-24027", + "runtime.native.System.Security.Cryptography": "4.0.0-rc2-24027" + }, + "frameworkAssemblies": [ + "System", + "System.Core", + "mscorlib" + ], + "compile": { + "ref/net46/System.Security.Cryptography.X509Certificates.dll": {} + }, + "runtime": { + "lib/net46/System.Security.Cryptography.X509Certificates.dll": {} + } + }, + "System.Text.Encoding/4.0.11-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Text.Encoding.CodePages/4.0.1-rc2-24027": { + "type": "package", + "dependencies": { + "System.Collections": "4.0.11-rc2-24027", + "System.Globalization": "4.0.11-rc2-24027", + "System.IO": "4.1.0-rc2-24027", + "System.Reflection": "4.1.0-rc2-24027", + "System.Resources.ResourceManager": "4.0.1-rc2-24027", + "System.Runtime": "4.1.0-rc2-24027", + "System.Runtime.Extensions": "4.1.0-rc2-24027", + "System.Runtime.Handles": "4.0.1-rc2-24027", + "System.Runtime.InteropServices": "4.1.0-rc2-24027", + "System.Text.Encoding": "4.0.11-rc2-24027", + "System.Threading": "4.0.11-rc2-24027" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.Extensions/4.0.11-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Text.Encodings.Web/4.0.0-rc2-24027": { + "type": "package", + "compile": { + "lib/netstandard1.0/System.Text.Encodings.Web.dll": {} + }, + "runtime": { + "lib/netstandard1.0/System.Text.Encodings.Web.dll": {} + } + }, + "System.Threading/4.0.11-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading.Tasks/4.0.11-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.0.0-rc2-24027": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll": {} + } + }, + "System.Threading.Tasks.Parallel/4.0.1-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Threading.Thread/4.0.0-rc2-24027": { + "type": "package", + "frameworkAssemblies": [ + "mscorlib" + ], + "compile": { + "ref/net46/_._": {} + }, + "runtime": { + "lib/net46/System.Threading.Thread.dll": {} + } + }, + "System.Xml.ReaderWriter/4.0.11-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Xml.XDocument/4.0.11-rc2-24027": { + "type": "package", + "compile": { + "ref/net45/_._": {} + }, + "runtime": { + "lib/net45/_._": {} + } + }, + "System.Xml.XmlDocument/4.0.1-rc2-24027": { + "type": "package", + "frameworkAssemblies": [ + "System.Xml", + "mscorlib" + ], + "compile": { + "ref/net46/_._": {} + }, + "runtime": { + "lib/net46/System.Xml.XmlDocument.dll": {} + } + }, + "System.Xml.XPath/4.0.1-rc2-24027": { + "type": "package", + "frameworkAssemblies": [ + "System.Xml", + "mscorlib" + ], + "compile": { + "ref/net46/_._": {} + }, + "runtime": { + "lib/net46/System.Xml.XPath.dll": {} + } + }, + "System.Xml.XPath.XDocument/4.0.1-rc2-24027": { + "type": "package", + "dependencies": { + "System.Xml.XPath": "4.0.1-rc2-24027" + }, + "frameworkAssemblies": [ + "System.Xml", + "System.Xml.Linq", + "mscorlib" + ], + "compile": { + "ref/net46/_._": {} + }, + "runtime": { + "lib/net46/System.Xml.XPath.XDocument.dll": {} + } + } + } + }, + "libraries": { + "Belgrade.Sql.Client/0.1.0": { + "sha512": "g+OdZ5XStR1Tf5nhdfzNPEY9xLyAwwsM+t7rXhi/WyGD3Nb4G8sufhjMwoAwpIzjqhNuUlGxZL0nlWCZNMRtow==", + "type": "package", + "files": [ + "Belgrade.Sql.Client.0.1.0.nupkg.sha512", + "Belgrade.Sql.Client.nuspec", + "lib/Belgrade.SqlClient.dll" + ] + }, + "Libuv/1.9.0-rc2-20901": { + "sha512": "NW+YOuRDrlmGM6yjSRjJUqlHukDEqUTuZKVJvEzWV4LH8wEKqrmVcxTqAab87+UiQ3KOLsyaBJ3ZNdmzxFUTig==", + "type": "package", + "files": [ + "Libuv.1.9.0-rc2-20901.nupkg.sha512", + "Libuv.nuspec", + "runtimes/debian-x64/native/libuv.so", + "runtimes/osx/native/libuv.dylib", + "runtimes/rhel-x64/native/libuv.so", + "runtimes/win7-arm/native/libuv.dll", + "runtimes/win7-x64/native/libuv.dll", + "runtimes/win7-x86/native/libuv.dll", + "thirdpartynotices.txt" + ] + }, + "Microsoft.AspNetCore.Antiforgery/1.0.0-rc2-final": { + "sha512": "dvmfV1ExR2oqTt9rxhaRrutFBfta7fXY4o5nA8OU0f8CYzdZ7vyw7hyebAEE1p9SFXH5Km8/WFWkZ8uu3GNGPg==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Antiforgery.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Antiforgery.nuspec", + "lib/net451/Microsoft.AspNetCore.Antiforgery.dll", + "lib/net451/Microsoft.AspNetCore.Antiforgery.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Antiforgery.xml" + ] + }, + "Microsoft.AspNetCore.Authorization/1.0.0-rc2-final": { + "sha512": "ZeV8YInPAMAM0IbbZUnjaNOSYWZVu8EuHd+PEUQENaMIJ6hLqPm06M4AM3CS2b07FGjPkV5WqjV5PckZDI9mkw==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Authorization.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Authorization.nuspec", + "lib/net451/Microsoft.AspNetCore.Authorization.dll", + "lib/net451/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Authorization.xml" + ] + }, + "Microsoft.AspNetCore.Cors/1.0.0-rc2-final": { + "sha512": "9z1b66i3QNBVZSb5/f6QuRfiNEZuxcB3tub/ArFWugovnYu3ejgTZEdAQtnKSfnnlw6sIeyvHA1BCib+eUmH2g==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Cors.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Cors.nuspec", + "lib/net451/Microsoft.AspNetCore.Cors.dll", + "lib/net451/Microsoft.AspNetCore.Cors.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Cors.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Cors.xml" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/1.0.0-rc2-final": { + "sha512": "pkxGrn5RCFGmJdAtydcjXong9KiqmOa7KDSX7yfVsqQ5UEdvnSPbhHSQvBMJrUtRWwrl6fuQ6caQzfGcBR9aFw==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Cryptography.Internal.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Cryptography.Internal.nuspec", + "lib/net451/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net451/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Cryptography.Internal.xml" + ] + }, + "Microsoft.AspNetCore.DataProtection/1.0.0-rc2-final": { + "sha512": "OfC2eQP22/etD/sFqrZ8FPxbmMTeERtWNxVdNT3LeQwuOvSyd642ckDagcyX20HglAwYpYbZ4MuQFsSl1pzuJA==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.DataProtection.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.DataProtection.nuspec", + "lib/net451/Microsoft.AspNetCore.DataProtection.dll", + "lib/net451/Microsoft.AspNetCore.DataProtection.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.xml" + ] + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/1.0.0-rc2-final": { + "sha512": "JFk890DtR1vYN0q/Iuork6zBNS7GlY8tdL7uE3lVVw15Xg8dz4AxYDoymWrSinbuOV9puwzKy+FZnQzDiSUFgQ==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.DataProtection.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.DataProtection.Abstractions.nuspec", + "lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.dll", + "lib/net451/Microsoft.AspNetCore.DataProtection.Abstractions.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.DataProtection.Abstractions.xml" + ] + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/1.0.0-rc2-final": { + "sha512": "q2KCO4LYhp8DYff2+8TBSo/wCe2yWK8D9U5N5x+AJCcQu/XS42aPOfUyuiuf1YCDI71UZAeUa0JZa1wVdeJHSg==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Diagnostics.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Diagnostics.Abstractions.nuspec", + "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.dll", + "lib/netstandard1.0/Microsoft.AspNetCore.Diagnostics.Abstractions.xml" + ] + }, + "Microsoft.AspNetCore.Hosting/1.0.0-rc2-final": { + "sha512": "nFGSvCL9YXB9OeZxM2B2vM38+gbBNSICF4YTdbaoGDO39OZVT3w0PtmqZQIm8wGQ5rZE2BRSSrkDeDUS/hdddg==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Hosting.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Hosting.nuspec", + "lib/net451/Microsoft.AspNetCore.Hosting.dll", + "lib/net451/Microsoft.AspNetCore.Hosting.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.xml" + ] + }, + "Microsoft.AspNetCore.Hosting.Abstractions/1.0.0-rc2-final": { + "sha512": "EZY6EF9MzSRAVJJNaMGrRDGjFXtd9x96gZY0M5J91Mn453GY+ray0SZBo9ED1uYqGqtvFg5uIiI9VBBrqZAElQ==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Hosting.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Hosting.Abstractions.nuspec", + "lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "lib/net451/Microsoft.AspNetCore.Hosting.Abstractions.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Abstractions.xml" + ] + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/1.0.0-rc2-final": { + "sha512": "PI+9VZXqhPSRk5PslkeYmjp5R38KQo0N+TTfmRFSgQ1XQQYMyOkl1BcIVSNHUIPEz0o+MmNk3OqFp5QeV1vZyg==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Hosting.Server.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Hosting.Server.Abstractions.nuspec", + "lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "lib/net451/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Hosting.Server.Abstractions.xml" + ] + }, + "Microsoft.AspNetCore.Html.Abstractions/1.0.0-rc2-final": { + "sha512": "wVqhkopksHunVNaU8nTrX8h4L3hdPrkI5oWkDbvA0xD2hTNL82WmDWwG0YdDbq98XPJ/P/LCznZ45GnRz/lUbw==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Html.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Html.Abstractions.nuspec", + "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.dll", + "lib/netstandard1.0/Microsoft.AspNetCore.Html.Abstractions.xml" + ] + }, + "Microsoft.AspNetCore.Http/1.0.0-rc2-final": { + "sha512": "b2npuCnnmTijWXELJXTf9hzPvry82W/JbUiJ8TSdCSC1AUNuJu/3j6tAppUEkrq53KniExeJWqAVN1DNSzJuIw==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Http.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Http.nuspec", + "lib/net451/Microsoft.AspNetCore.Http.dll", + "lib/net451/Microsoft.AspNetCore.Http.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Http.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Http.xml" + ] + }, + "Microsoft.AspNetCore.Http.Abstractions/1.0.0-rc2-final": { + "sha512": "ndmI1ufOWIq7b9ntY5rX2D7GeLG1Y6yAycPdxzOnK5k9siKcEikr1dhiQpWjRIPv5EoehvkLeCuQ991rujInRw==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Http.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Http.Abstractions.nuspec", + "lib/net451/Microsoft.AspNetCore.Http.Abstractions.dll", + "lib/net451/Microsoft.AspNetCore.Http.Abstractions.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Http.Abstractions.xml" + ] + }, + "Microsoft.AspNetCore.Http.Extensions/1.0.0-rc2-final": { + "sha512": "51WUpcbF7nhiZbxc4vM0sUGUo4E0uJ5LWLlKy3PYIIsja1APvJoiizK8S0/6EEYTgNi8RZpbv8b/yUyU/kJ5fg==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Http.Extensions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Http.Extensions.nuspec", + "lib/net451/Microsoft.AspNetCore.Http.Extensions.dll", + "lib/net451/Microsoft.AspNetCore.Http.Extensions.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Http.Extensions.xml" + ] + }, + "Microsoft.AspNetCore.Http.Features/1.0.0-rc2-final": { + "sha512": "Wcn5RF+ZQgxHOuyb9u7H1jHSn7cTVyzKCl51xwBNd3tZAnxVSLhpwANSLGeMRd+MgIpd8rFqRhd8LCeB+BrlQA==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Http.Features.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Http.Features.nuspec", + "lib/net451/Microsoft.AspNetCore.Http.Features.dll", + "lib/net451/Microsoft.AspNetCore.Http.Features.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Http.Features.xml" + ] + }, + "Microsoft.AspNetCore.HttpOverrides/1.0.0-rc2-final": { + "sha512": "0EEYIFULc/hz/thwEiwZGWToQlSt7/pIQPTiUKji9Ir1yhvugKBnCcKDQLhTOOAiqAWd9e5UfFuoP31NhojsxQ==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.HttpOverrides.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.HttpOverrides.nuspec", + "lib/net451/Microsoft.AspNetCore.HttpOverrides.dll", + "lib/net451/Microsoft.AspNetCore.HttpOverrides.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.HttpOverrides.xml" + ] + }, + "Microsoft.AspNetCore.JsonPatch/1.0.0-rc2-final": { + "sha512": "6zCyIkw/nFox0zPPZ2RsBJgq7QdFLoDJ0pWe1IIIAVllIw8J+6n0sDcIfypXlEny3kpslGutaR4bWQPRuH/Y8w==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.JsonPatch.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.JsonPatch.nuspec", + "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.dll", + "lib/netstandard1.1/Microsoft.AspNetCore.JsonPatch.xml" + ] + }, + "Microsoft.AspNetCore.Localization/1.0.0-rc2-final": { + "sha512": "BilhBurHj/4K+yPUXqpalzOpTpgtN4VJIagULbE6LSS/AJFnm2E+qtks59cCHdvzJxuTCswOoWiNyvgnbqvnOQ==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Localization.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Localization.nuspec", + "lib/net451/Microsoft.AspNetCore.Localization.dll", + "lib/net451/Microsoft.AspNetCore.Localization.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Localization.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Localization.xml" + ] + }, + "Microsoft.AspNetCore.Mvc/1.0.0-rc2-final": { + "sha512": "vzCC0/VzdxqaWidqconJFtScPGLiG+dIYzKgqCeJU884e3OujB3TPZGjzQNypZMBqLs5WX5sZA5l8PQC7OXYvg==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Mvc.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.nuspec", + "lib/net451/Microsoft.AspNetCore.Mvc.dll", + "lib/net451/Microsoft.AspNetCore.Mvc.xml", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.dll", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.xml" + ] + }, + "Microsoft.AspNetCore.Mvc.Abstractions/1.0.0-rc2-final": { + "sha512": "Xpj+GEStqZY3FfE10SK1W0Wrdek0uQZv/YS28kcWSKIu6aqojPcsP5sTow+JFnS8a27vxwVdn/iNVpmppN0cDw==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Mvc.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.Abstractions.nuspec", + "lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.dll", + "lib/net451/Microsoft.AspNetCore.Mvc.Abstractions.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Mvc.Abstractions.xml" + ] + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/1.0.0-rc2-final": { + "sha512": "FyFOVpiLAW8O0Ue9xbAZp0J85u3iA2bZ1TzpDUuIj5w9WDGjQnv0mTLl09uy8wBqIQYXMeOEKJyb/MfXY/SLow==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Mvc.ApiExplorer.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.ApiExplorer.nuspec", + "lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.dll", + "lib/net451/Microsoft.AspNetCore.Mvc.ApiExplorer.xml", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.ApiExplorer.dll", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.ApiExplorer.xml" + ] + }, + "Microsoft.AspNetCore.Mvc.Core/1.0.0-rc2-final": { + "sha512": "H3cNbfPq2JXxY6y8dW7OPbTZYGNJo4S119DLPPKsbf1z3VuHUkKEZNy9fBee1tHUj26ND/PBzZ5C4FXaFX989Q==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Mvc.Core.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.Core.nuspec", + "lib/net451/Microsoft.AspNetCore.Mvc.Core.dll", + "lib/net451/Microsoft.AspNetCore.Mvc.Core.xml", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Core.dll", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Core.xml" + ] + }, + "Microsoft.AspNetCore.Mvc.Cors/1.0.0-rc2-final": { + "sha512": "p0Tg+BHfcbWzcJrdTc4T2Uy0Y1kMYQTSZJnoZ6HioQyuZnvYmgo+HR9NfcGSecgg1dM8Ea2ItF8pnh6yLRhNCQ==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Mvc.Cors.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.Cors.nuspec", + "lib/net451/Microsoft.AspNetCore.Mvc.Cors.dll", + "lib/net451/Microsoft.AspNetCore.Mvc.Cors.xml", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Cors.dll", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Cors.xml" + ] + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/1.0.0-rc2-final": { + "sha512": "U40NtMeJpPraqiLv4/6P+a16bXCM36t72Epbp8x/V35Xr4NSIHZ8PkhtBSdI6eWInsdZPUV5vGXzNyT3BXB4rg==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Mvc.DataAnnotations.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.DataAnnotations.nuspec", + "lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.dll", + "lib/net451/Microsoft.AspNetCore.Mvc.DataAnnotations.xml", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.DataAnnotations.dll", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.DataAnnotations.xml" + ] + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/1.0.0-rc2-final": { + "sha512": "fO/lI6VCOJuQU4OoMxwwrsXcOQw3yqOKNVABxkP215GofEYrE9UjrJZjSKDl1JEh6014WYcOfbx6DDfw9/HrXQ==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Mvc.Formatters.Json.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.Formatters.Json.nuspec", + "lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.dll", + "lib/net451/Microsoft.AspNetCore.Mvc.Formatters.Json.xml", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Formatters.Json.dll", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Formatters.Json.xml" + ] + }, + "Microsoft.AspNetCore.Mvc.Localization/1.0.0-rc2-final": { + "sha512": "T6gPQgkwa380n8PnX5V9rFT6Zecup4NzK/MAaTMQ84QdJJXBoNNhZ5TfbydxG04IYpsZtikyezN3a2toR1NZlw==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Mvc.Localization.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.Localization.nuspec", + "lib/net451/Microsoft.AspNetCore.Mvc.Localization.dll", + "lib/net451/Microsoft.AspNetCore.Mvc.Localization.xml", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Localization.dll", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Localization.xml" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor/1.0.0-rc2-final": { + "sha512": "oGcGdt0c74TbcdKwcEO/uV4AevquW5Z+eIEKQGXmhb8KHAQh4eO7pRJepp5+5XrM+VPNED+FdvAGfe8YoVKeBw==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Mvc.Razor.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.Razor.nuspec", + "lib/net451/Microsoft.AspNetCore.Mvc.Razor.dll", + "lib/net451/Microsoft.AspNetCore.Mvc.Razor.xml", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Razor.dll", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Razor.xml" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Host/1.0.0-rc2-final": { + "sha512": "zREudJwjqm6pjuzOa+OFW0jtvE5pVHfcWd3P97DhivsWznF1afkYbE9r9jlmNpIc5swnyrKhes6jsnpbVbNcXw==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Mvc.Razor.Host.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.Razor.Host.nuspec", + "lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.dll", + "lib/net451/Microsoft.AspNetCore.Mvc.Razor.Host.xml", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Razor.Host.dll", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.Razor.Host.xml" + ] + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/1.0.0-rc2-final": { + "sha512": "bePjw8Jc/k6bha7XNv9H2LZHjsuPm0n1ujHcRnUsz9v4xlicW4yV3UhQ/DmplFPWNVHMa0y0BgN5kEhlNqpUcQ==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Mvc.TagHelpers.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.TagHelpers.nuspec", + "lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.dll", + "lib/net451/Microsoft.AspNetCore.Mvc.TagHelpers.xml", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.TagHelpers.dll", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.TagHelpers.xml" + ] + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/1.0.0-rc2-final": { + "sha512": "tXrY6gozRdfEaQu7oL/CBi/dvJYDPSqB+Uk4KwgpUbVgfNc6gxMQJURHHVg3k6eYvpVBM5DYlMXLGs7ME3hlzg==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Mvc.ViewFeatures.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Mvc.ViewFeatures.nuspec", + "lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.dll", + "lib/net451/Microsoft.AspNetCore.Mvc.ViewFeatures.xml", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.ViewFeatures.dll", + "lib/netstandard1.5/Microsoft.AspNetCore.Mvc.ViewFeatures.xml" + ] + }, + "Microsoft.AspNetCore.Razor/1.0.0-rc2-final": { + "sha512": "6nsCyZ6GJKxmBBgc4daQvCMchJRh9+Q7oZBzp4jmfSD5Ju9Jd53y622G4bKQXZrEBSTujSJ+d8r4cqt71tcIkg==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Razor.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Razor.nuspec", + "lib/net451/Microsoft.AspNetCore.Razor.dll", + "lib/net451/Microsoft.AspNetCore.Razor.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Razor.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Razor.xml" + ] + }, + "Microsoft.AspNetCore.Razor.Runtime/1.0.0-rc2-final": { + "sha512": "ydM66tgqnydDcAxyPYqL+ww9yR4dDlBz9HeIpeFocV5MnygDlQwjOFDlD0vWQEKI6dt39802PHpoXa2K/OwVuw==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Razor.Runtime.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Razor.Runtime.nuspec", + "lib/net451/Microsoft.AspNetCore.Razor.Runtime.dll", + "lib/net451/Microsoft.AspNetCore.Razor.Runtime.xml", + "lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.dll", + "lib/netstandard1.5/Microsoft.AspNetCore.Razor.Runtime.xml" + ] + }, + "Microsoft.AspNetCore.Routing/1.0.0-rc2-final": { + "sha512": "PkpR5hgMzoI2uLbng29ZVA+bVNaOnsUzHEY5TKnLmwY1FL7ll76lEkvDiQrTTyWT+Rp6Z3JFVxnAH4fSxDp27A==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Routing.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Routing.nuspec", + "lib/net451/Microsoft.AspNetCore.Routing.dll", + "lib/net451/Microsoft.AspNetCore.Routing.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Routing.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Routing.xml" + ] + }, + "Microsoft.AspNetCore.Routing.Abstractions/1.0.0-rc2-final": { + "sha512": "5MIF0y7nIlBIUIxLUuC0S8pWHo5Xq3MbqUvjU5q0WFHSrHIg2K7AaVIS6IO+jV9O+GsxSvyYs2C9pqaHIcaCHA==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Routing.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Routing.Abstractions.nuspec", + "lib/net451/Microsoft.AspNetCore.Routing.Abstractions.dll", + "lib/net451/Microsoft.AspNetCore.Routing.Abstractions.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Routing.Abstractions.xml" + ] + }, + "Microsoft.AspNetCore.Server.IISIntegration/1.0.0-rc2-final": { + "sha512": "rJT7VnwAiMgk5B3kxxFagHpAlRlUC2XewNid6MJeiGQts28yKXIRY+346XjegthzpLa9PP4H7yTy0/72q3mWtA==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Server.IISIntegration.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Server.IISIntegration.nuspec", + "lib/net451/Microsoft.AspNetCore.Server.IISIntegration.dll", + "lib/net451/Microsoft.AspNetCore.Server.IISIntegration.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Server.IISIntegration.xml" + ] + }, + "Microsoft.AspNetCore.Server.Kestrel/1.0.0-rc2-final": { + "sha512": "ojeLfBZ+H7uVImuzqErcNv8hN8Z8+k99jSl2U+cwEMddJXnzqjND20NlwNW/g4/3roLB3F3+6kYTy3wWMYFQCg==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.Server.Kestrel.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.Server.Kestrel.nuspec", + "lib/net451/Microsoft.AspNetCore.Server.Kestrel.dll", + "lib/net451/Microsoft.AspNetCore.Server.Kestrel.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.Server.Kestrel.xml" + ] + }, + "Microsoft.AspNetCore.WebUtilities/1.0.0-rc2-final": { + "sha512": "0VoDSZHObAEIbBeJEg01p1MjC5fllSDImgrFr9XNn18XKGkZSaFLIm1K4kv3kS38aUt5vjwq2qhstDMbKdUgLw==", + "type": "package", + "files": [ + "Microsoft.AspNetCore.WebUtilities.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.AspNetCore.WebUtilities.nuspec", + "lib/net451/Microsoft.AspNetCore.WebUtilities.dll", + "lib/net451/Microsoft.AspNetCore.WebUtilities.xml", + "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.dll", + "lib/netstandard1.3/Microsoft.AspNetCore.WebUtilities.xml" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", + "type": "package", + "files": [ + "Microsoft.CodeAnalysis.Analyzers.1.1.0.nupkg.sha512", + "Microsoft.CodeAnalysis.Analyzers.nuspec", + "ThirdPartyNotices.rtf", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/1.3.0-beta1-20160429-01": { + "sha512": "TSrsz9ZhBpbO3HTK0kNSUQNVTqfSEcgbPXzB/0VrkEfrXLNESJzqmA94ddrf+51w5o9kMMH53/er1A1A+PmZVg==", + "type": "package", + "files": [ + "Microsoft.CodeAnalysis.Common.1.3.0-beta1-20160429-01.nupkg.sha512", + "Microsoft.CodeAnalysis.Common.nuspec", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.dll", + "lib/net45/Microsoft.CodeAnalysis.xml", + "lib/netstandard1.3/Microsoft.CodeAnalysis.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.xml" + ] + }, + "Microsoft.CodeAnalysis.CSharp/1.3.0-beta1-20160429-01": { + "sha512": "q0uOK8fa3CNYNKud8OygnYmOvgcBQxQAnS2irP9LbARMGkCB1qNpjhSeiC+eF402O5Xb5voGOXnrIQbdLUv5TA==", + "type": "package", + "files": [ + "Microsoft.CodeAnalysis.CSharp.1.3.0-beta1-20160429-01.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.nuspec", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml" + ] + }, + "Microsoft.CSharp/4.0.1-rc2-24027": { + "sha512": "P6MB1bNnyy4PizG4ewY0z2FP7R2kI3g/nB5qTF3rh75JXPekaJiDFPd+34uymg/5xtjllwCyM2RtVxaOhnRAPA==", + "type": "package", + "files": [ + "Microsoft.CSharp.4.0.1-rc2-24027.nupkg.sha512", + "Microsoft.CSharp.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "Microsoft.DotNet.InternalAbstractions/1.0.0-rc2-002702": { + "sha512": "81Zp6K3oJY5zyoCtf7eguaZ+EnM3zawCtUKszBCLob1KH6Bu44ET2hokkk/6eMhTI2aQhbGrV9SaSjJ2K8DUDg==", + "type": "package", + "files": [ + "Microsoft.DotNet.InternalAbstractions.1.0.0-rc2-002702.nupkg.sha512", + "Microsoft.DotNet.InternalAbstractions.nuspec", + "lib/net451/Microsoft.DotNet.InternalAbstractions.dll", + "lib/netstandard1.3/Microsoft.DotNet.InternalAbstractions.dll" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/1.0.0-rc2-final": { + "sha512": "Seu7cdYLYDFjYGd9KgzbAa5G6Xkzw6f6mSJjWemal1qNL505ktHMSbve6IPGScipL578rPwPTVqrTWWKIvmvLg==", + "type": "package", + "files": [ + "Microsoft.Extensions.Caching.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Caching.Abstractions.nuspec", + "lib/netcore50/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard1.0/Microsoft.Extensions.Caching.Abstractions.xml" + ] + }, + "Microsoft.Extensions.Caching.Memory/1.0.0-rc2-final": { + "sha512": "G6KkTMUiChu9RaURYmNbkKc/cIvhj38jfVzoVtoSR0Aw2KzRCtJiW80xrLaNEgzl2Eu6BipCCy9DVNa7cFZhLQ==", + "type": "package", + "files": [ + "Microsoft.Extensions.Caching.Memory.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Caching.Memory.nuspec", + "lib/net451/Microsoft.Extensions.Caching.Memory.dll", + "lib/net451/Microsoft.Extensions.Caching.Memory.xml", + "lib/netcore50/Microsoft.Extensions.Caching.Memory.dll", + "lib/netcore50/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard1.3/Microsoft.Extensions.Caching.Memory.xml" + ] + }, + "Microsoft.Extensions.Configuration/1.0.0-rc2-final": { + "sha512": "dHr1CJ3nkWxQAtIRk7pTX/0KCDC14DY580xC7RlMHt3EW9zUak4y31FQQIMgsE9oaeJMnJP2RtimN4FPzPaWdQ==", + "type": "package", + "files": [ + "Microsoft.Extensions.Configuration.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Configuration.nuspec", + "lib/netstandard1.1/Microsoft.Extensions.Configuration.dll", + "lib/netstandard1.1/Microsoft.Extensions.Configuration.xml" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/1.0.0-rc2-final": { + "sha512": "Q871jpweVxec1zvUuK4RoXGRRXCZsp/f+6SDUSi8DQ95KcT8yKe2ZSoq2S2xnwoKFUepg2B6Yr3ToXD2v27zNA==", + "type": "package", + "files": [ + "Microsoft.Extensions.Configuration.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Configuration.Abstractions.nuspec", + "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard1.0/Microsoft.Extensions.Configuration.Abstractions.xml" + ] + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/1.0.0-rc2-final": { + "sha512": "yIT43LuJRSVtSRdO+uuUrsyNZCA/qWg3sqBQs2zW64SUZKeLqncFa5bZz8FlCFelNjoTKEpHEhe3pQNuI3STlw==", + "type": "package", + "files": [ + "Microsoft.Extensions.Configuration.EnvironmentVariables.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Configuration.EnvironmentVariables.nuspec", + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net451/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/netstandard1.3/Microsoft.Extensions.Configuration.EnvironmentVariables.xml" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/1.0.0-rc2-final": { + "sha512": "Ry1KQP2nv459lAiY2EsQ7i35u8XgD0ZMMgrvzGr9QlReXW8XWj5WLE2xuu7To3oFQIvCnDtZtZsr7dJ05KHr1Q==", + "type": "package", + "files": [ + "Microsoft.Extensions.Configuration.FileExtensions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Configuration.FileExtensions.nuspec", + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net451/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard1.3/Microsoft.Extensions.Configuration.FileExtensions.xml" + ] + }, + "Microsoft.Extensions.Configuration.Json/1.0.0-rc2-final": { + "sha512": "1Y/3qSjHpuaLeyja+gSAZUtdj503tbc23699YzE8DxWMZ3urDztdpdWy0CFGGES15obfmsrm+oBxzEwtiHKPTw==", + "type": "package", + "files": [ + "Microsoft.Extensions.Configuration.Json.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Configuration.Json.nuspec", + "lib/net451/Microsoft.Extensions.Configuration.Json.dll", + "lib/net451/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard1.3/Microsoft.Extensions.Configuration.Json.xml" + ] + }, + "Microsoft.Extensions.DependencyInjection/1.0.0-rc2-final": { + "sha512": "TreRt5BDwivHosFbDpfaJ9CArhyZUHWzv9dlqZx2e0+PSbZznXRBg0QWteh+Y5gEPmJy6hANuz4ZeVK52nLKXA==", + "type": "package", + "files": [ + "Microsoft.Extensions.DependencyInjection.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.nuspec", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.dll", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard1.1/Microsoft.Extensions.DependencyInjection.xml" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/1.0.0-rc2-final": { + "sha512": "KRvRif+xioZSjml/O/Y6W/fksieNZ/hp+Bf/4Nau85gQleG8UJl+etaJXj18SWu8bQ3ApD4ikzq6qKXLlO8AMg==", + "type": "package", + "files": [ + "Microsoft.Extensions.DependencyInjection.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.DependencyInjection.Abstractions.nuspec", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml" + ] + }, + "Microsoft.Extensions.DependencyModel/1.0.0-rc2-final": { + "sha512": "IFfLyVWxqGOA+ql+h6gvPjWbDMXClLORxgoeJab7WxpPHTcHut/5vFLu8+29iQklymlKfYefRo8tudtwjxjCRw==", + "type": "package", + "files": [ + "Microsoft.Extensions.DependencyModel.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.DependencyModel.nuspec", + "lib/net451/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard1.5/Microsoft.Extensions.DependencyModel.dll" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/1.0.0-rc2-final": { + "sha512": "pVcRuHzugJ1pn4LWpSJYOGXWdIMDcyj+AFIHFWUZ5CBGGXKfDCOPS0ztS5WshLYYc+9zDdAPmWSvQxVbTGljjg==", + "type": "package", + "files": [ + "Microsoft.Extensions.FileProviders.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.FileProviders.Abstractions.nuspec", + "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Abstractions.xml" + ] + }, + "Microsoft.Extensions.FileProviders.Composite/1.0.0-rc2-final": { + "sha512": "96d4CqD89j9mY3YTWry45PMhXNoxUJ83d1grVQjGvAo62UEOlj4lEg+4dzaLIpjU4ajVfOaEa/wFeV5JM31jWQ==", + "type": "package", + "files": [ + "Microsoft.Extensions.FileProviders.Composite.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.FileProviders.Composite.nuspec", + "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.dll", + "lib/netstandard1.0/Microsoft.Extensions.FileProviders.Composite.xml" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/1.0.0-rc2-final": { + "sha512": "mGinPq86ouElAEY7K9Yww3bIJFD3k+UESFveOKCtXVbn9Z25rJOLoD7T0WRkJxzPZ+0MTipWpMh7jUJdsMV5Nw==", + "type": "package", + "files": [ + "Microsoft.Extensions.FileProviders.Physical.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.FileProviders.Physical.nuspec", + "lib/net451/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net451/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard1.3/Microsoft.Extensions.FileProviders.Physical.xml" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/1.0.0-rc2-final": { + "sha512": "xyrVmdjyFmGROsMkc50oI5KTie8V15ZJ8BdWbN/vpE45y+McRVpakGZDKzS2cLP7IaE67fGpr0jg4VvLQJ8Jhg==", + "type": "package", + "files": [ + "Microsoft.Extensions.FileSystemGlobbing.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.FileSystemGlobbing.nuspec", + "lib/net451/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net451/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard1.3/Microsoft.Extensions.FileSystemGlobbing.xml" + ] + }, + "Microsoft.Extensions.Globalization.CultureInfoCache/1.0.0-rc2-final": { + "sha512": "aqjoyxHn0XynGkVXSPqHuUtWuNPAaIEubuVYdipr72Nj/zKQ0RWGssZsEHunrKxTe8Itdv8+MF+V2SLDdQn7/Q==", + "type": "package", + "files": [ + "Microsoft.Extensions.Globalization.CultureInfoCache.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Globalization.CultureInfoCache.nuspec", + "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.dll", + "lib/netstandard1.1/Microsoft.Extensions.Globalization.CultureInfoCache.xml" + ] + }, + "Microsoft.Extensions.Localization/1.0.0-rc2-final": { + "sha512": "2KuamQ5Wndf/z1+cOmDGo39TNmVu5s0S7+opXUtFMN59oVFxPyTmh0txrr1MMUDd8n+1GSjs50b/gb4pYnbdQA==", + "type": "package", + "files": [ + "Microsoft.Extensions.Localization.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Localization.nuspec", + "lib/net451/Microsoft.Extensions.Localization.dll", + "lib/net451/Microsoft.Extensions.Localization.xml", + "lib/netstandard1.3/Microsoft.Extensions.Localization.dll", + "lib/netstandard1.3/Microsoft.Extensions.Localization.xml" + ] + }, + "Microsoft.Extensions.Localization.Abstractions/1.0.0-rc2-final": { + "sha512": "E/eBmNoRTP99vmf6pW+mTQS0EiAmM62/rN9k32FRB4v5tSwuzGCw9YrMZ4UuoAztQQWcqgeLuS2Ymfw89sj9kA==", + "type": "package", + "files": [ + "Microsoft.Extensions.Localization.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Localization.Abstractions.nuspec", + "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.dll", + "lib/netstandard1.0/Microsoft.Extensions.Localization.Abstractions.xml" + ] + }, + "Microsoft.Extensions.Logging/1.0.0-rc2-final": { + "sha512": "M9lTQcaxlV2RAlyzar4s+AsTtS3KzQy78TfQImdl7s1foCMwjDerF3tYtHa4HupWAfOYUPId0b/fXNVfIZwqxw==", + "type": "package", + "files": [ + "Microsoft.Extensions.Logging.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Logging.nuspec", + "lib/netcore50/Microsoft.Extensions.Logging.dll", + "lib/netcore50/Microsoft.Extensions.Logging.xml", + "lib/netstandard1.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard1.1/Microsoft.Extensions.Logging.xml" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/1.0.0-rc2-final": { + "sha512": "cuBUcNmHGLqG7zT4ZpGY21w0/zQNJzfw6tz3eIEU2PNLBeA0EfV2b9LHfgrIFhn74+xmgoKhwo/0Th3d28Cubw==", + "type": "package", + "files": [ + "Microsoft.Extensions.Logging.Abstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Logging.Abstractions.nuspec", + "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netcore50/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard1.1/Microsoft.Extensions.Logging.Abstractions.xml" + ] + }, + "Microsoft.Extensions.Logging.Console/1.0.0-rc2-final": { + "sha512": "wzTVkE0h7xKPB7PF/XMgTIuvckjzscgDqvpr2QhqMYxXeni7dUqAO8FUy4DQ8MljXikgLbKSUvJS9HgMhFD3ng==", + "type": "package", + "files": [ + "Microsoft.Extensions.Logging.Console.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Logging.Console.nuspec", + "lib/net451/Microsoft.Extensions.Logging.Console.dll", + "lib/net451/Microsoft.Extensions.Logging.Console.xml", + "lib/netstandard1.3/Microsoft.Extensions.Logging.Console.dll", + "lib/netstandard1.3/Microsoft.Extensions.Logging.Console.xml" + ] + }, + "Microsoft.Extensions.Logging.Debug/1.0.0-rc2-final": { + "sha512": "wCfdXWejxZNp3D7zBxbiC7+TKF4SWMMmLEYL12QbBUiNhV0DQzmMxZZuVWNjmAELofn6chec722uw2sh+uMdSw==", + "type": "package", + "files": [ + "Microsoft.Extensions.Logging.Debug.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Logging.Debug.nuspec", + "lib/net451/Microsoft.Extensions.Logging.Debug.dll", + "lib/net451/Microsoft.Extensions.Logging.Debug.xml", + "lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.dll", + "lib/netstandard1.3/Microsoft.Extensions.Logging.Debug.xml" + ] + }, + "Microsoft.Extensions.ObjectPool/1.0.0-rc2-final": { + "sha512": "78jJAea29pPuF7ydHXDNy/sR99OHVZ7U40K9ej6klAyEG12U7IftdF9b3nv/1Q6K8czYzll2in38BAdOeANRbw==", + "type": "package", + "files": [ + "Microsoft.Extensions.ObjectPool.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.ObjectPool.nuspec", + "lib/net451/Microsoft.Extensions.ObjectPool.dll", + "lib/net451/Microsoft.Extensions.ObjectPool.xml", + "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.dll", + "lib/netstandard1.3/Microsoft.Extensions.ObjectPool.xml" + ] + }, + "Microsoft.Extensions.Options/1.0.0-rc2-final": { + "sha512": "Sj7WVNsiMbULRas/DGKsZ3u6GA29AFAWGZwitVFQgIf/ppzM8VfnFyCRkSnwMA0gTD4u09scnQkKyl6Yi8kNuQ==", + "type": "package", + "files": [ + "Microsoft.Extensions.Options.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Options.nuspec", + "lib/netcore50/Microsoft.Extensions.Options.dll", + "lib/netcore50/Microsoft.Extensions.Options.xml", + "lib/netstandard1.0/Microsoft.Extensions.Options.dll", + "lib/netstandard1.0/Microsoft.Extensions.Options.xml" + ] + }, + "Microsoft.Extensions.PlatformAbstractions/1.0.0-rc2-final": { + "sha512": "OjXClhPcccu39GNAs6SH6J2iC2R883Wco7LKvPqnjo1aKJQRp9vFVFVueutJFABncZO7BZINgZCwgLxVQN3yIg==", + "type": "package", + "files": [ + "Microsoft.Extensions.PlatformAbstractions.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.PlatformAbstractions.nuspec", + "lib/net451/Microsoft.Extensions.PlatformAbstractions.dll", + "lib/net451/Microsoft.Extensions.PlatformAbstractions.xml", + "lib/netcore50/Microsoft.Extensions.PlatformAbstractions.dll", + "lib/netcore50/Microsoft.Extensions.PlatformAbstractions.xml", + "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.dll", + "lib/netstandard1.3/Microsoft.Extensions.PlatformAbstractions.xml" + ] + }, + "Microsoft.Extensions.Primitives/1.0.0-rc2-final": { + "sha512": "5lXETW9MI0CIOOCtgeJcrX3jODcFkX04tr+K/MB+cRspPvYD3URbf4MRIwWgI5r7cu+8+efPxEH0tG1g8ldhQA==", + "type": "package", + "files": [ + "Microsoft.Extensions.Primitives.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.Primitives.nuspec", + "lib/netcore50/Microsoft.Extensions.Primitives.dll", + "lib/netcore50/Microsoft.Extensions.Primitives.xml", + "lib/netstandard1.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard1.0/Microsoft.Extensions.Primitives.xml" + ] + }, + "Microsoft.Extensions.WebEncoders/1.0.0-rc2-final": { + "sha512": "OCXr7Y9u/tmKhmNMJqbAlMcUQxtpzJvZ1Jvs8LJoSyCCFVmZlwZ8c6k7ileYpW2jvxGGOQ6N64V184HY2uQPHg==", + "type": "package", + "files": [ + "Microsoft.Extensions.WebEncoders.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Extensions.WebEncoders.nuspec", + "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.dll", + "lib/netstandard1.0/Microsoft.Extensions.WebEncoders.xml" + ] + }, + "Microsoft.Net.Http.Headers/1.0.0-rc2-final": { + "sha512": "80kfOb0U8FKsKxv0fHtJFhcAWeYIvTAz4NCrKi84n5XXzMPNV7DLdy6d0g2f7UCj0iOtNGE5cGvAFiWqqZFeEA==", + "type": "package", + "files": [ + "Microsoft.Net.Http.Headers.1.0.0-rc2-final.nupkg.sha512", + "Microsoft.Net.Http.Headers.nuspec", + "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll", + "lib/netstandard1.1/Microsoft.Net.Http.Headers.xml" + ] + }, + "Newtonsoft.Json/8.0.3": { + "sha512": "KGsYQdS2zLH+H8x2cZaSI7e+YZ4SFIbyy1YJQYl6GYBWjf5o4H1A68nxyq+WTyVSOJQ4GqS/DiPE+UseUizgMg==", + "type": "package", + "files": [ + "Newtonsoft.Json.8.0.3.nupkg.sha512", + "Newtonsoft.Json.nuspec", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.dll", + "lib/portable-net40+sl5+wp80+win8+wpa81/Newtonsoft.Json.xml", + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.dll", + "lib/portable-net45+wp80+win8+wpa81+dnxcore50/Newtonsoft.Json.xml", + "tools/install.ps1" + ] + }, + "runtime.native.System/4.0.0-rc2-24027": { + "sha512": "bC0GLcJTry9N+ra9qb+zYSQHnBpy4ZMVJXRRSuu7aD/cQoZPQtySql110ec9REOKsE6tf2ZoolczpCOmzwKW8g==", + "type": "package", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.native.System.4.0.0-rc2-24027.nupkg.sha512", + "runtime.native.System.nuspec" + ] + }, + "runtime.native.System.Data.SqlClient.sni/4.0.0-rc2-24027": { + "sha512": "pMR+/wuMjt0fblON8ycjd/XCzKd6qHscOhQ7aYpzZI5qBl4ethwCCL/S6iITMtIOv5TvQ3J3GOKwtYz5hBpaTg==", + "type": "package", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.native.System.Data.SqlClient.sni.4.0.0-rc2-24027.nupkg.sha512", + "runtime.native.System.Data.SqlClient.sni.nuspec" + ] + }, + "runtime.native.System.Net.Http/4.0.1-rc2-24027": { + "sha512": "NtYGs9vDkR/XtJAA2batr1MxMM/JqtvCIMzJ3QdErd5HoALZSv5O9YQfBPvdsrGUPDyDgbIa8WB0Q/iFv+o12A==", + "type": "package", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.native.System.Net.Http.4.0.1-rc2-24027.nupkg.sha512", + "runtime.native.System.Net.Http.nuspec" + ] + }, + "runtime.native.System.Security.Cryptography/4.0.0-rc2-24027": { + "sha512": "Xi58pn6uTrwo2hz2mhR7LbqaukuS3eRsVg6Y5BZGDtthJmv/LGh//3jtVASQMK14ByRVZoK3nP8S+l/2gt+R+g==", + "type": "package", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.native.System.Security.Cryptography.4.0.0-rc2-24027.nupkg.sha512", + "runtime.native.System.Security.Cryptography.nuspec" + ] + }, + "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.0.1-rc2-24027": { + "sha512": "e+XMbd6jjySo5yGHc6P/EGAro9+Md19Q6dciNIQmss4wZaMrbIoZgif1uW2Kdv8CH/9uYVM0TluWz5Ic20apxw==", + "type": "package", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.4.0.1-rc2-24027.nupkg.sha512", + "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.nuspec", + "runtimes/win7-x64/native/sni.dll" + ] + }, + "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.0.1-rc2-24027": { + "sha512": "Rk4a5IyEWxQ4Sg5lwbI9a2IamFzXggEg3l9ePRfuCop63TMYtQ70BsDqj7wI6iLehfmBkOKS1AC8yxTp0nsSmg==", + "type": "package", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.4.0.1-rc2-24027.nupkg.sha512", + "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.nuspec", + "runtimes/win7-x86/native/sni.dll" + ] + }, + "System.AppContext/4.1.0-rc2-24027": { + "sha512": "brLKF/+Dhn1ylN+VoN/tcur89LFerCUmqBFug+hbMHTKw3UVIghn+fS9rk0mad8jCr1LjHx2TWQhrg9peDEkmg==", + "type": "package", + "files": [ + "System.AppContext.4.1.0-rc2-24027.nupkg.sha512", + "System.AppContext.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.AppContext.dll", + "lib/net462/System.AppContext.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net462/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.dll", + "ref/netstandard1.3/System.AppContext.xml", + "ref/netstandard1.3/de/System.AppContext.xml", + "ref/netstandard1.3/es/System.AppContext.xml", + "ref/netstandard1.3/fr/System.AppContext.xml", + "ref/netstandard1.3/it/System.AppContext.xml", + "ref/netstandard1.3/ja/System.AppContext.xml", + "ref/netstandard1.3/ko/System.AppContext.xml", + "ref/netstandard1.3/ru/System.AppContext.xml", + "ref/netstandard1.3/zh-hans/System.AppContext.xml", + "ref/netstandard1.3/zh-hant/System.AppContext.xml", + "ref/netstandard1.5/System.AppContext.dll", + "ref/netstandard1.5/System.AppContext.xml", + "ref/netstandard1.5/de/System.AppContext.xml", + "ref/netstandard1.5/es/System.AppContext.xml", + "ref/netstandard1.5/fr/System.AppContext.xml", + "ref/netstandard1.5/it/System.AppContext.xml", + "ref/netstandard1.5/ja/System.AppContext.xml", + "ref/netstandard1.5/ko/System.AppContext.xml", + "ref/netstandard1.5/ru/System.AppContext.xml", + "ref/netstandard1.5/zh-hans/System.AppContext.xml", + "ref/netstandard1.5/zh-hant/System.AppContext.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Buffers/4.0.0-rc2-24027": { + "sha512": "eyzIgf8Mh/SjxN1gsGnH09ICA5U2TGWU5I3Rp1V0ayO9UmTf5XrsZo3+LwKbj+fycoh2yYg0leFa7IG0/+Bs3g==", + "type": "package", + "files": [ + "System.Buffers.4.0.0-rc2-24027.nupkg.sha512", + "System.Buffers.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/.xml", + "lib/netstandard1.1/System.Buffers.dll" + ] + }, + "System.Collections/4.0.11-rc2-24027": { + "sha512": "wi4oT2B06Ev7vDPeJki7HVJ3qPYJIilzf+p81JuNaBD9L2wi9Y2L5BsQ6ToncW+lYZafuMea/hiK1xX1Ge1VWQ==", + "type": "package", + "files": [ + "System.Collections.4.0.11-rc2-24027.nupkg.sha512", + "System.Collections.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.dll", + "ref/netcore50/System.Collections.xml", + "ref/netcore50/de/System.Collections.xml", + "ref/netcore50/es/System.Collections.xml", + "ref/netcore50/fr/System.Collections.xml", + "ref/netcore50/it/System.Collections.xml", + "ref/netcore50/ja/System.Collections.xml", + "ref/netcore50/ko/System.Collections.xml", + "ref/netcore50/ru/System.Collections.xml", + "ref/netcore50/zh-hans/System.Collections.xml", + "ref/netcore50/zh-hant/System.Collections.xml", + "ref/netstandard1.0/System.Collections.dll", + "ref/netstandard1.0/System.Collections.xml", + "ref/netstandard1.0/de/System.Collections.xml", + "ref/netstandard1.0/es/System.Collections.xml", + "ref/netstandard1.0/fr/System.Collections.xml", + "ref/netstandard1.0/it/System.Collections.xml", + "ref/netstandard1.0/ja/System.Collections.xml", + "ref/netstandard1.0/ko/System.Collections.xml", + "ref/netstandard1.0/ru/System.Collections.xml", + "ref/netstandard1.0/zh-hans/System.Collections.xml", + "ref/netstandard1.0/zh-hant/System.Collections.xml", + "ref/netstandard1.3/System.Collections.dll", + "ref/netstandard1.3/System.Collections.xml", + "ref/netstandard1.3/de/System.Collections.xml", + "ref/netstandard1.3/es/System.Collections.xml", + "ref/netstandard1.3/fr/System.Collections.xml", + "ref/netstandard1.3/it/System.Collections.xml", + "ref/netstandard1.3/ja/System.Collections.xml", + "ref/netstandard1.3/ko/System.Collections.xml", + "ref/netstandard1.3/ru/System.Collections.xml", + "ref/netstandard1.3/zh-hans/System.Collections.xml", + "ref/netstandard1.3/zh-hant/System.Collections.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Collections.Concurrent/4.0.12-rc2-24027": { + "sha512": "0XN+QpKMG5xHRZ50hV6Yn1ojqAhZ2CL8q4vT316ipEB3yEb/ROMjC18Html5QreF12ZS6Le1AWtIB1Qgi2FzvA==", + "type": "package", + "files": [ + "System.Collections.Concurrent.4.0.12-rc2-24027.nupkg.sha512", + "System.Collections.Concurrent.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Collections.Concurrent.dll", + "lib/netstandard1.3/System.Collections.Concurrent.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Collections.Concurrent.dll", + "ref/netcore50/System.Collections.Concurrent.xml", + "ref/netcore50/de/System.Collections.Concurrent.xml", + "ref/netcore50/es/System.Collections.Concurrent.xml", + "ref/netcore50/fr/System.Collections.Concurrent.xml", + "ref/netcore50/it/System.Collections.Concurrent.xml", + "ref/netcore50/ja/System.Collections.Concurrent.xml", + "ref/netcore50/ko/System.Collections.Concurrent.xml", + "ref/netcore50/ru/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hans/System.Collections.Concurrent.xml", + "ref/netcore50/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.1/System.Collections.Concurrent.dll", + "ref/netstandard1.1/System.Collections.Concurrent.xml", + "ref/netstandard1.1/de/System.Collections.Concurrent.xml", + "ref/netstandard1.1/es/System.Collections.Concurrent.xml", + "ref/netstandard1.1/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.1/it/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.1/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.1/zh-hant/System.Collections.Concurrent.xml", + "ref/netstandard1.3/System.Collections.Concurrent.dll", + "ref/netstandard1.3/System.Collections.Concurrent.xml", + "ref/netstandard1.3/de/System.Collections.Concurrent.xml", + "ref/netstandard1.3/es/System.Collections.Concurrent.xml", + "ref/netstandard1.3/fr/System.Collections.Concurrent.xml", + "ref/netstandard1.3/it/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ja/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ko/System.Collections.Concurrent.xml", + "ref/netstandard1.3/ru/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hans/System.Collections.Concurrent.xml", + "ref/netstandard1.3/zh-hant/System.Collections.Concurrent.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Collections.Immutable/1.2.0-rc2-24027": { + "sha512": "bn4jDP6DOvUHTlpUVa4ehecoz+V4YL4gdL6yOXdruc/3XHRVL2j/ZIggusM8f90uUSQhg7bgvBuLmQCGG3cZtg==", + "type": "package", + "files": [ + "System.Collections.Immutable.1.2.0-rc2-24027.nupkg.sha512", + "System.Collections.Immutable.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Collections.Immutable.dll", + "lib/netstandard1.0/System.Collections.Immutable.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Collections.Immutable.xml" + ] + }, + "System.ComponentModel/4.0.1-rc2-24027": { + "sha512": "6ne+Yk/6J59NZ19jiKjxwRPS2VIofrps2xkGDxMpyiHzEk4xpIY0kzt0ZABvTpdOYpvOw7bz2Ls2/X0QiuSjQg==", + "type": "package", + "files": [ + "System.ComponentModel.4.0.1-rc2-24027.nupkg.sha512", + "System.ComponentModel.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.ComponentModel.dll", + "lib/netstandard1.3/System.ComponentModel.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.ComponentModel.dll", + "ref/netcore50/System.ComponentModel.xml", + "ref/netcore50/de/System.ComponentModel.xml", + "ref/netcore50/es/System.ComponentModel.xml", + "ref/netcore50/fr/System.ComponentModel.xml", + "ref/netcore50/it/System.ComponentModel.xml", + "ref/netcore50/ja/System.ComponentModel.xml", + "ref/netcore50/ko/System.ComponentModel.xml", + "ref/netcore50/ru/System.ComponentModel.xml", + "ref/netcore50/zh-hans/System.ComponentModel.xml", + "ref/netcore50/zh-hant/System.ComponentModel.xml", + "ref/netstandard1.0/System.ComponentModel.dll", + "ref/netstandard1.0/System.ComponentModel.xml", + "ref/netstandard1.0/de/System.ComponentModel.xml", + "ref/netstandard1.0/es/System.ComponentModel.xml", + "ref/netstandard1.0/fr/System.ComponentModel.xml", + "ref/netstandard1.0/it/System.ComponentModel.xml", + "ref/netstandard1.0/ja/System.ComponentModel.xml", + "ref/netstandard1.0/ko/System.ComponentModel.xml", + "ref/netstandard1.0/ru/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.ComponentModel.Primitives/4.0.1-rc2-24027": { + "sha512": "yTC0+qi9NaO0tt+1proIshyQ32slseRC6f/mrZLJU+pJRDY2k1nMage7AySH1qk9ZHw9KjiXMRjkRwgrQRQoSQ==", + "type": "package", + "files": [ + "System.ComponentModel.Primitives.4.0.1-rc2-24027.nupkg.sha512", + "System.ComponentModel.Primitives.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.Primitives.dll", + "lib/netstandard1.0/System.ComponentModel.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.dll", + "ref/netstandard1.0/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/de/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/es/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/fr/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/it/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ja/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ko/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/ru/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.ComponentModel.TypeConverter/4.0.1-rc2-24027": { + "sha512": "HGB9P4M6eAWPRzFE+F+OCaNnhr2+0trWbfhHS/OoJnrdf1f8Cl6FSYAV2B5C9fxUH326Ew57fcEKloMJY4Bimg==", + "type": "package", + "files": [ + "System.ComponentModel.TypeConverter.4.0.1-rc2-24027.nupkg.sha512", + "System.ComponentModel.TypeConverter.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.ComponentModel.TypeConverter.dll", + "lib/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.dll", + "ref/netstandard1.0/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/de/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/es/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/fr/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/it/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ja/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ko/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/ru/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hans/System.ComponentModel.TypeConverter.xml", + "ref/netstandard1.0/zh-hant/System.ComponentModel.TypeConverter.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Console/4.0.0-rc2-24027": { + "sha512": "ZkOW7ehVR6vnVTfttO0Z1uf3v7mT8cxQZbPHaGDyTt65qh4WzQOXgZYWqDNduyA1xWlvKh28XAhAkK0P39CcAA==", + "type": "package", + "files": [ + "System.Console.4.0.0-rc2-24027.nupkg.sha512", + "System.Console.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Console.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Console.dll", + "ref/netstandard1.3/System.Console.dll", + "ref/netstandard1.3/System.Console.xml", + "ref/netstandard1.3/de/System.Console.xml", + "ref/netstandard1.3/es/System.Console.xml", + "ref/netstandard1.3/fr/System.Console.xml", + "ref/netstandard1.3/it/System.Console.xml", + "ref/netstandard1.3/ja/System.Console.xml", + "ref/netstandard1.3/ko/System.Console.xml", + "ref/netstandard1.3/ru/System.Console.xml", + "ref/netstandard1.3/zh-hans/System.Console.xml", + "ref/netstandard1.3/zh-hant/System.Console.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Data.Common/4.0.1-rc2-24027": { + "sha512": "lRXa2KTxiXF9LYhisFYWqokvtkV662ROEVJbtRG4owk/7PRvyV92gZLaDykYuNxtnscesaVIWDRWkfFfaxXmqA==", + "type": "package", + "files": [ + "System.Data.Common.4.0.1-rc2-24027.nupkg.sha512", + "System.Data.Common.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Data.Common.dll", + "lib/netstandard1.0/System.Data.Common.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Data.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Data.Common.dll", + "ref/netstandard1.0/System.Data.Common.dll", + "ref/netstandard1.0/System.Data.Common.xml", + "ref/netstandard1.0/de/System.Data.Common.xml", + "ref/netstandard1.0/es/System.Data.Common.xml", + "ref/netstandard1.0/fr/System.Data.Common.xml", + "ref/netstandard1.0/it/System.Data.Common.xml", + "ref/netstandard1.0/ja/System.Data.Common.xml", + "ref/netstandard1.0/ko/System.Data.Common.xml", + "ref/netstandard1.0/ru/System.Data.Common.xml", + "ref/netstandard1.0/zh-hans/System.Data.Common.xml", + "ref/netstandard1.0/zh-hant/System.Data.Common.xml", + "ref/portable-net45+win8+wp8+wpa81/System.Data.Common.dll", + "ref/portable-net45+win8+wp8+wpa81/System.Data.Common.xml", + "ref/portable-net45+win8+wp8+wpa81/de/System.Data.Common.xml", + "ref/portable-net45+win8+wp8+wpa81/es/System.Data.Common.xml", + "ref/portable-net45+win8+wp8+wpa81/fr/System.Data.Common.xml", + "ref/portable-net45+win8+wp8+wpa81/it/System.Data.Common.xml", + "ref/portable-net45+win8+wp8+wpa81/ja/System.Data.Common.xml", + "ref/portable-net45+win8+wp8+wpa81/ko/System.Data.Common.xml", + "ref/portable-net45+win8+wp8+wpa81/ru/System.Data.Common.xml", + "ref/portable-net45+win8+wp8+wpa81/zh-hans/System.Data.Common.xml", + "ref/portable-net45+win8+wp8+wpa81/zh-hant/System.Data.Common.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Data.SqlClient/4.1.0-rc2-24027": { + "sha512": "8VbNFTQdss8/9HIGe4v59nQFWtQNUn+AHVYCvH76aOOTWjwBdE+EeES7j2yHJ4p6hrpSDDR2zJNWH02PTLry6w==", + "type": "package", + "files": [ + "System.Data.SqlClient.4.1.0-rc2-24027.nupkg.sha512", + "System.Data.SqlClient.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/netstandard1.1/System.Data.SqlClient.dll", + "ref/netstandard1.1/System.Data.SqlClient.xml", + "ref/netstandard1.1/de/System.Data.SqlClient.xml", + "ref/netstandard1.1/es/System.Data.SqlClient.xml", + "ref/netstandard1.1/fr/System.Data.SqlClient.xml", + "ref/netstandard1.1/it/System.Data.SqlClient.xml", + "ref/netstandard1.1/ja/System.Data.SqlClient.xml", + "ref/netstandard1.1/ko/System.Data.SqlClient.xml", + "ref/netstandard1.1/ru/System.Data.SqlClient.xml", + "ref/netstandard1.1/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.1/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win7/lib/netstandard1.3/System.Data.SqlClient.dll" + ] + }, + "System.Diagnostics.Contracts/4.0.1-rc2-24027": { + "sha512": "UiVz+conwNlcYGvF69rRjROVJeSNOXpkHKMGAfIZx1zvTrZkOM2rcPjZ00aaYA+y9rR0GAGKwzuYo+JDkuyupw==", + "type": "package", + "files": [ + "System.Diagnostics.Contracts.4.0.1-rc2-24027.nupkg.sha512", + "System.Diagnostics.Contracts.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Diagnostics.Contracts.dll", + "lib/netstandard1.0/System.Diagnostics.Contracts.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Contracts.dll", + "ref/netcore50/System.Diagnostics.Contracts.xml", + "ref/netcore50/de/System.Diagnostics.Contracts.xml", + "ref/netcore50/es/System.Diagnostics.Contracts.xml", + "ref/netcore50/fr/System.Diagnostics.Contracts.xml", + "ref/netcore50/it/System.Diagnostics.Contracts.xml", + "ref/netcore50/ja/System.Diagnostics.Contracts.xml", + "ref/netcore50/ko/System.Diagnostics.Contracts.xml", + "ref/netcore50/ru/System.Diagnostics.Contracts.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Contracts.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/System.Diagnostics.Contracts.dll", + "ref/netstandard1.0/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/de/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/es/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/it/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Contracts.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Contracts.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Diagnostics.Contracts.dll" + ] + }, + "System.Diagnostics.Debug/4.0.11-rc2-24027": { + "sha512": "k0ckwL97zqxiSjRpgmkjUoP51LvEzMshynNuNOyUsKLQTHVieTsrg2YiBnou0AsDnDk/maCmuPJvoJR0qIcOuQ==", + "type": "package", + "files": [ + "System.Diagnostics.Debug.4.0.11-rc2-24027.nupkg.sha512", + "System.Diagnostics.Debug.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Debug.dll", + "ref/netcore50/System.Diagnostics.Debug.xml", + "ref/netcore50/de/System.Diagnostics.Debug.xml", + "ref/netcore50/es/System.Diagnostics.Debug.xml", + "ref/netcore50/fr/System.Diagnostics.Debug.xml", + "ref/netcore50/it/System.Diagnostics.Debug.xml", + "ref/netcore50/ja/System.Diagnostics.Debug.xml", + "ref/netcore50/ko/System.Diagnostics.Debug.xml", + "ref/netcore50/ru/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Debug.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/System.Diagnostics.Debug.dll", + "ref/netstandard1.0/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/System.Diagnostics.Debug.dll", + "ref/netstandard1.3/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/de/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/es/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/fr/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/it/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ja/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ko/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/ru/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.Debug.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.Debug.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Diagnostics.DiagnosticSource/4.0.0-rc2-24027": { + "sha512": "NPjXdTV6+9D0ZaHUn5JI0lxusxZAKOuHIVPmMXV+L4Ypm/nFaH+gDMn0o6ZNb9B3l46DfdxyrZYc0E2AfEHQrA==", + "type": "package", + "files": [ + "System.Diagnostics.DiagnosticSource.4.0.0-rc2-24027.nupkg.sha512", + "System.Diagnostics.DiagnosticSource.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.Diagnostics.DiagnosticSource.dll", + "lib/net46/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.1/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard1.3/System.Diagnostics.DiagnosticSource.xml", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.dll", + "lib/portable-net45+win8+wpa81/System.Diagnostics.DiagnosticSource.xml" + ] + }, + "System.Diagnostics.FileVersionInfo/4.0.0-rc2-24027": { + "sha512": "CdQQHji/OYKMwtKRIfSHRKfIIEFisortQ7+n2Qazar4TOSiw68FFIOV5XQc/0VZ/6RVQ0PzbPEPkb9tOCYCF9w==", + "type": "package", + "files": [ + "System.Diagnostics.FileVersionInfo.4.0.0-rc2-24027.nupkg.sha512", + "System.Diagnostics.FileVersionInfo.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.FileVersionInfo.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.FileVersionInfo.dll", + "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", + "ref/netstandard1.3/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/de/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/es/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/fr/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/it/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/ja/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/ko/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/ru/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.FileVersionInfo.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.FileVersionInfo.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll", + "runtimes/win7/lib/netcore50/_._", + "runtimes/win7/lib/netstandard1.3/System.Diagnostics.FileVersionInfo.dll" + ] + }, + "System.Diagnostics.StackTrace/4.0.1-rc2-24027": { + "sha512": "qaPDTZqMcuJgko+V6ZwlZEG7H344T1GkUh6NMKV0L3ISwEeQmA2shVBOyS1tHNyO6RvpL+CuxhlVJdSqGFUT2w==", + "type": "package", + "files": [ + "System.Diagnostics.StackTrace.4.0.1-rc2-24027.nupkg.sha512", + "System.Diagnostics.StackTrace.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Diagnostics.StackTrace.dll", + "lib/netstandard1.3/System.Diagnostics.StackTrace.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Diagnostics.StackTrace.dll", + "ref/netstandard1.3/System.Diagnostics.StackTrace.dll", + "ref/netstandard1.3/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/de/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/es/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/fr/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/it/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ja/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ko/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/ru/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/zh-hans/System.Diagnostics.StackTrace.xml", + "ref/netstandard1.3/zh-hant/System.Diagnostics.StackTrace.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Diagnostics.StackTrace.dll" + ] + }, + "System.Diagnostics.Tools/4.0.1-rc2-24027": { + "sha512": "Afv5y9mVcMGmcN1YB4RIQdK5glUyL5cOIigi2DMuetSKJykMXxVH8KldkjYFwFKHcx8T1gN6/47knzZU3DtrrA==", + "type": "package", + "files": [ + "System.Diagnostics.Tools.4.0.1-rc2-24027.nupkg.sha512", + "System.Diagnostics.Tools.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Diagnostics.Tools.dll", + "ref/netcore50/System.Diagnostics.Tools.xml", + "ref/netcore50/de/System.Diagnostics.Tools.xml", + "ref/netcore50/es/System.Diagnostics.Tools.xml", + "ref/netcore50/fr/System.Diagnostics.Tools.xml", + "ref/netcore50/it/System.Diagnostics.Tools.xml", + "ref/netcore50/ja/System.Diagnostics.Tools.xml", + "ref/netcore50/ko/System.Diagnostics.Tools.xml", + "ref/netcore50/ru/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hans/System.Diagnostics.Tools.xml", + "ref/netcore50/zh-hant/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/System.Diagnostics.Tools.dll", + "ref/netstandard1.0/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/de/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/es/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/fr/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/it/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ja/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ko/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/ru/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hans/System.Diagnostics.Tools.xml", + "ref/netstandard1.0/zh-hant/System.Diagnostics.Tools.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Dynamic.Runtime/4.0.11-rc2-24027": { + "sha512": "ZbyJQ3UQSGiB5aotbYN3otZ7vrwimkG6dAN4YYAwH3YvP9X1zF5GHeHuSqX1uDq0hGX+vngi8s1oUKgWHAYYrQ==", + "type": "package", + "files": [ + "System.Dynamic.Runtime.4.0.11-rc2-24027.nupkg.sha512", + "System.Dynamic.Runtime.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Dynamic.Runtime.dll", + "lib/netstandard1.3/System.Dynamic.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Dynamic.Runtime.dll", + "ref/netcore50/System.Dynamic.Runtime.xml", + "ref/netcore50/de/System.Dynamic.Runtime.xml", + "ref/netcore50/es/System.Dynamic.Runtime.xml", + "ref/netcore50/fr/System.Dynamic.Runtime.xml", + "ref/netcore50/it/System.Dynamic.Runtime.xml", + "ref/netcore50/ja/System.Dynamic.Runtime.xml", + "ref/netcore50/ko/System.Dynamic.Runtime.xml", + "ref/netcore50/ru/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hans/System.Dynamic.Runtime.xml", + "ref/netcore50/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/System.Dynamic.Runtime.dll", + "ref/netstandard1.0/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/System.Dynamic.Runtime.dll", + "ref/netstandard1.3/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/de/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/es/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/fr/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/it/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ja/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ko/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/ru/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Dynamic.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Dynamic.Runtime.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Dynamic.Runtime.dll" + ] + }, + "System.Globalization/4.0.11-rc2-24027": { + "sha512": "RDterYo6tAE2YslHrhvAdrAkTdhGkml7tg5JGX/XwgN2GGkB3NkiqigBSaUEV4S2ftCzCFDIhCxqQy57lAsEIA==", + "type": "package", + "files": [ + "System.Globalization.4.0.11-rc2-24027.nupkg.sha512", + "System.Globalization.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Globalization.dll", + "ref/netcore50/System.Globalization.xml", + "ref/netcore50/de/System.Globalization.xml", + "ref/netcore50/es/System.Globalization.xml", + "ref/netcore50/fr/System.Globalization.xml", + "ref/netcore50/it/System.Globalization.xml", + "ref/netcore50/ja/System.Globalization.xml", + "ref/netcore50/ko/System.Globalization.xml", + "ref/netcore50/ru/System.Globalization.xml", + "ref/netcore50/zh-hans/System.Globalization.xml", + "ref/netcore50/zh-hant/System.Globalization.xml", + "ref/netstandard1.0/System.Globalization.dll", + "ref/netstandard1.0/System.Globalization.xml", + "ref/netstandard1.0/de/System.Globalization.xml", + "ref/netstandard1.0/es/System.Globalization.xml", + "ref/netstandard1.0/fr/System.Globalization.xml", + "ref/netstandard1.0/it/System.Globalization.xml", + "ref/netstandard1.0/ja/System.Globalization.xml", + "ref/netstandard1.0/ko/System.Globalization.xml", + "ref/netstandard1.0/ru/System.Globalization.xml", + "ref/netstandard1.0/zh-hans/System.Globalization.xml", + "ref/netstandard1.0/zh-hant/System.Globalization.xml", + "ref/netstandard1.3/System.Globalization.dll", + "ref/netstandard1.3/System.Globalization.xml", + "ref/netstandard1.3/de/System.Globalization.xml", + "ref/netstandard1.3/es/System.Globalization.xml", + "ref/netstandard1.3/fr/System.Globalization.xml", + "ref/netstandard1.3/it/System.Globalization.xml", + "ref/netstandard1.3/ja/System.Globalization.xml", + "ref/netstandard1.3/ko/System.Globalization.xml", + "ref/netstandard1.3/ru/System.Globalization.xml", + "ref/netstandard1.3/zh-hans/System.Globalization.xml", + "ref/netstandard1.3/zh-hant/System.Globalization.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.IO/4.1.0-rc2-24027": { + "sha512": "VQRYN33mwALJ1UWfxxMqXzKCYUDNMUeU6j8YCxVcLCBx3Oa/l7i15NQv/OAebfOVSmBa3LmBTRP4rQqChrCbFg==", + "type": "package", + "files": [ + "System.IO.4.1.0-rc2-24027.nupkg.sha512", + "System.IO.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.IO.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.IO.dll", + "ref/netcore50/System.IO.dll", + "ref/netcore50/System.IO.xml", + "ref/netcore50/de/System.IO.xml", + "ref/netcore50/es/System.IO.xml", + "ref/netcore50/fr/System.IO.xml", + "ref/netcore50/it/System.IO.xml", + "ref/netcore50/ja/System.IO.xml", + "ref/netcore50/ko/System.IO.xml", + "ref/netcore50/ru/System.IO.xml", + "ref/netcore50/zh-hans/System.IO.xml", + "ref/netcore50/zh-hant/System.IO.xml", + "ref/netstandard1.0/System.IO.dll", + "ref/netstandard1.0/System.IO.xml", + "ref/netstandard1.0/de/System.IO.xml", + "ref/netstandard1.0/es/System.IO.xml", + "ref/netstandard1.0/fr/System.IO.xml", + "ref/netstandard1.0/it/System.IO.xml", + "ref/netstandard1.0/ja/System.IO.xml", + "ref/netstandard1.0/ko/System.IO.xml", + "ref/netstandard1.0/ru/System.IO.xml", + "ref/netstandard1.0/zh-hans/System.IO.xml", + "ref/netstandard1.0/zh-hant/System.IO.xml", + "ref/netstandard1.3/System.IO.dll", + "ref/netstandard1.3/System.IO.xml", + "ref/netstandard1.3/de/System.IO.xml", + "ref/netstandard1.3/es/System.IO.xml", + "ref/netstandard1.3/fr/System.IO.xml", + "ref/netstandard1.3/it/System.IO.xml", + "ref/netstandard1.3/ja/System.IO.xml", + "ref/netstandard1.3/ko/System.IO.xml", + "ref/netstandard1.3/ru/System.IO.xml", + "ref/netstandard1.3/zh-hans/System.IO.xml", + "ref/netstandard1.3/zh-hant/System.IO.xml", + "ref/netstandard1.5/System.IO.dll", + "ref/netstandard1.5/System.IO.xml", + "ref/netstandard1.5/de/System.IO.xml", + "ref/netstandard1.5/es/System.IO.xml", + "ref/netstandard1.5/fr/System.IO.xml", + "ref/netstandard1.5/it/System.IO.xml", + "ref/netstandard1.5/ja/System.IO.xml", + "ref/netstandard1.5/ko/System.IO.xml", + "ref/netstandard1.5/ru/System.IO.xml", + "ref/netstandard1.5/zh-hans/System.IO.xml", + "ref/netstandard1.5/zh-hant/System.IO.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.IO.FileSystem/4.0.1-rc2-24027": { + "sha512": "8iXOvjXDIQJIM881n5423Cy2A8Ajrdr9l9mXUvvsXt6wQNXAi/LBVsFRLPe7hpRUKP23niqinSBoHfMGcuxByQ==", + "type": "package", + "files": [ + "System.IO.FileSystem.4.0.1-rc2-24027.nupkg.sha512", + "System.IO.FileSystem.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.dll", + "ref/netstandard1.3/System.IO.FileSystem.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.IO.FileSystem.Primitives/4.0.1-rc2-24027": { + "sha512": "SIxgLl6TXmfavhGnp3LF8X/D2zrg0ALhbfk40ntybaW9dO5nJAw7m1kllvlGFBdjefJ5Y8O1AUbbCJggC+p2yw==", + "type": "package", + "files": [ + "System.IO.FileSystem.Primitives.4.0.1-rc2-24027.nupkg.sha512", + "System.IO.FileSystem.Primitives.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.IO.FileSystem.Primitives.dll", + "lib/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.dll", + "ref/netstandard1.3/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.Primitives.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Linq/4.1.0-rc2-24027": { + "sha512": "uf9wbc/YWrM4xa6g0T8n1XpY/zRcTHSPw+sCwkdrL2aJbYyLFKs1Yeg8M0zjMX4SwmiNeDiZR2gkAHAPsIfKCg==", + "type": "package", + "files": [ + "System.Linq.4.1.0-rc2-24027.nupkg.sha512", + "System.Linq.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Linq.dll", + "lib/netcore50/System.Linq.dll", + "lib/netstandard1.5/System.Linq.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Linq.dll", + "ref/netcore50/System.Linq.dll", + "ref/netcore50/System.Linq.xml", + "ref/netcore50/de/System.Linq.xml", + "ref/netcore50/es/System.Linq.xml", + "ref/netcore50/fr/System.Linq.xml", + "ref/netcore50/it/System.Linq.xml", + "ref/netcore50/ja/System.Linq.xml", + "ref/netcore50/ko/System.Linq.xml", + "ref/netcore50/ru/System.Linq.xml", + "ref/netcore50/zh-hans/System.Linq.xml", + "ref/netcore50/zh-hant/System.Linq.xml", + "ref/netstandard1.0/System.Linq.dll", + "ref/netstandard1.0/System.Linq.xml", + "ref/netstandard1.0/de/System.Linq.xml", + "ref/netstandard1.0/es/System.Linq.xml", + "ref/netstandard1.0/fr/System.Linq.xml", + "ref/netstandard1.0/it/System.Linq.xml", + "ref/netstandard1.0/ja/System.Linq.xml", + "ref/netstandard1.0/ko/System.Linq.xml", + "ref/netstandard1.0/ru/System.Linq.xml", + "ref/netstandard1.0/zh-hans/System.Linq.xml", + "ref/netstandard1.0/zh-hant/System.Linq.xml", + "ref/netstandard1.5/System.Linq.dll", + "ref/netstandard1.5/System.Linq.xml", + "ref/netstandard1.5/de/System.Linq.xml", + "ref/netstandard1.5/es/System.Linq.xml", + "ref/netstandard1.5/fr/System.Linq.xml", + "ref/netstandard1.5/it/System.Linq.xml", + "ref/netstandard1.5/ja/System.Linq.xml", + "ref/netstandard1.5/ko/System.Linq.xml", + "ref/netstandard1.5/ru/System.Linq.xml", + "ref/netstandard1.5/zh-hans/System.Linq.xml", + "ref/netstandard1.5/zh-hant/System.Linq.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Linq.Expressions/4.0.11-rc2-24027": { + "sha512": "CfLNPBWzWdqfRGkdIXNWQ+2zSyaegOL4MAQSry0k6t8CQnPwJLywZLIZAV+cU47gi/7C2eM2I63r2eBZNJDovw==", + "type": "package", + "files": [ + "System.Linq.Expressions.4.0.11-rc2-24027.nupkg.sha512", + "System.Linq.Expressions.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Linq.Expressions.dll", + "lib/netstandard1.3/System.Linq.Expressions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Linq.Expressions.dll", + "ref/netcore50/System.Linq.Expressions.xml", + "ref/netcore50/de/System.Linq.Expressions.xml", + "ref/netcore50/es/System.Linq.Expressions.xml", + "ref/netcore50/fr/System.Linq.Expressions.xml", + "ref/netcore50/it/System.Linq.Expressions.xml", + "ref/netcore50/ja/System.Linq.Expressions.xml", + "ref/netcore50/ko/System.Linq.Expressions.xml", + "ref/netcore50/ru/System.Linq.Expressions.xml", + "ref/netcore50/zh-hans/System.Linq.Expressions.xml", + "ref/netcore50/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.0/System.Linq.Expressions.dll", + "ref/netstandard1.0/System.Linq.Expressions.xml", + "ref/netstandard1.0/de/System.Linq.Expressions.xml", + "ref/netstandard1.0/es/System.Linq.Expressions.xml", + "ref/netstandard1.0/fr/System.Linq.Expressions.xml", + "ref/netstandard1.0/it/System.Linq.Expressions.xml", + "ref/netstandard1.0/ja/System.Linq.Expressions.xml", + "ref/netstandard1.0/ko/System.Linq.Expressions.xml", + "ref/netstandard1.0/ru/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.0/zh-hant/System.Linq.Expressions.xml", + "ref/netstandard1.3/System.Linq.Expressions.dll", + "ref/netstandard1.3/System.Linq.Expressions.xml", + "ref/netstandard1.3/de/System.Linq.Expressions.xml", + "ref/netstandard1.3/es/System.Linq.Expressions.xml", + "ref/netstandard1.3/fr/System.Linq.Expressions.xml", + "ref/netstandard1.3/it/System.Linq.Expressions.xml", + "ref/netstandard1.3/ja/System.Linq.Expressions.xml", + "ref/netstandard1.3/ko/System.Linq.Expressions.xml", + "ref/netstandard1.3/ru/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hans/System.Linq.Expressions.xml", + "ref/netstandard1.3/zh-hant/System.Linq.Expressions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Linq.Expressions.dll" + ] + }, + "System.Numerics.Vectors/4.1.1-rc2-24027": { + "sha512": "9G+2IoDcQBas3kdySw4rz7XzI/dbUqPkC0yiOR9YAWZpOH52icM6YxcgTKiI3Weh3w1il/xMrplrTYuE6hqAaA==", + "type": "package", + "files": [ + "System.Numerics.Vectors.4.1.1-rc2-24027.nupkg.sha512", + "System.Numerics.Vectors.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/net46/_._", + "lib/netstandard1.3/System.Numerics.Vectors.dll", + "lib/netstandard1.3/System.Numerics.Vectors.xml", + "lib/portable-net45+win8/System.Numerics.Vectors.dll", + "lib/portable-net45+win8/System.Numerics.Vectors.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/net46/_._", + "ref/netstandard1.1/System.Numerics.Vectors.dll", + "ref/portable-net45+win8/System.Numerics.Vectors.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Reflection/4.1.0-rc2-24027": { + "sha512": "RMJrRP3I71J5PLfsX2reWDPltwJs/pJ+CbIqa2ccDVop2WlBq6CuV7FOo7l77nuYFKODI6kpATLXZKiq8V8aEQ==", + "type": "package", + "files": [ + "System.Reflection.4.1.0-rc2-24027.nupkg.sha512", + "System.Reflection.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Reflection.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Reflection.dll", + "ref/netcore50/System.Reflection.dll", + "ref/netcore50/System.Reflection.xml", + "ref/netcore50/de/System.Reflection.xml", + "ref/netcore50/es/System.Reflection.xml", + "ref/netcore50/fr/System.Reflection.xml", + "ref/netcore50/it/System.Reflection.xml", + "ref/netcore50/ja/System.Reflection.xml", + "ref/netcore50/ko/System.Reflection.xml", + "ref/netcore50/ru/System.Reflection.xml", + "ref/netcore50/zh-hans/System.Reflection.xml", + "ref/netcore50/zh-hant/System.Reflection.xml", + "ref/netstandard1.0/System.Reflection.dll", + "ref/netstandard1.0/System.Reflection.xml", + "ref/netstandard1.0/de/System.Reflection.xml", + "ref/netstandard1.0/es/System.Reflection.xml", + "ref/netstandard1.0/fr/System.Reflection.xml", + "ref/netstandard1.0/it/System.Reflection.xml", + "ref/netstandard1.0/ja/System.Reflection.xml", + "ref/netstandard1.0/ko/System.Reflection.xml", + "ref/netstandard1.0/ru/System.Reflection.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.xml", + "ref/netstandard1.3/System.Reflection.dll", + "ref/netstandard1.3/System.Reflection.xml", + "ref/netstandard1.3/de/System.Reflection.xml", + "ref/netstandard1.3/es/System.Reflection.xml", + "ref/netstandard1.3/fr/System.Reflection.xml", + "ref/netstandard1.3/it/System.Reflection.xml", + "ref/netstandard1.3/ja/System.Reflection.xml", + "ref/netstandard1.3/ko/System.Reflection.xml", + "ref/netstandard1.3/ru/System.Reflection.xml", + "ref/netstandard1.3/zh-hans/System.Reflection.xml", + "ref/netstandard1.3/zh-hant/System.Reflection.xml", + "ref/netstandard1.5/System.Reflection.dll", + "ref/netstandard1.5/System.Reflection.xml", + "ref/netstandard1.5/de/System.Reflection.xml", + "ref/netstandard1.5/es/System.Reflection.xml", + "ref/netstandard1.5/fr/System.Reflection.xml", + "ref/netstandard1.5/it/System.Reflection.xml", + "ref/netstandard1.5/ja/System.Reflection.xml", + "ref/netstandard1.5/ko/System.Reflection.xml", + "ref/netstandard1.5/ru/System.Reflection.xml", + "ref/netstandard1.5/zh-hans/System.Reflection.xml", + "ref/netstandard1.5/zh-hant/System.Reflection.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Reflection.Extensions/4.0.1-rc2-24027": { + "sha512": "5N1tt+n0OHyaZ3Wb73FIfNsRrkFDW1I2fuAzojudgcZ0XcAHqLE0Wb9/JQ2eG6Lp89l2qntx4HvXcIDjVwvYuw==", + "type": "package", + "files": [ + "System.Reflection.Extensions.4.0.1-rc2-24027.nupkg.sha512", + "System.Reflection.Extensions.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Extensions.dll", + "ref/netcore50/System.Reflection.Extensions.xml", + "ref/netcore50/de/System.Reflection.Extensions.xml", + "ref/netcore50/es/System.Reflection.Extensions.xml", + "ref/netcore50/fr/System.Reflection.Extensions.xml", + "ref/netcore50/it/System.Reflection.Extensions.xml", + "ref/netcore50/ja/System.Reflection.Extensions.xml", + "ref/netcore50/ko/System.Reflection.Extensions.xml", + "ref/netcore50/ru/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hans/System.Reflection.Extensions.xml", + "ref/netcore50/zh-hant/System.Reflection.Extensions.xml", + "ref/netstandard1.0/System.Reflection.Extensions.dll", + "ref/netstandard1.0/System.Reflection.Extensions.xml", + "ref/netstandard1.0/de/System.Reflection.Extensions.xml", + "ref/netstandard1.0/es/System.Reflection.Extensions.xml", + "ref/netstandard1.0/fr/System.Reflection.Extensions.xml", + "ref/netstandard1.0/it/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ja/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ko/System.Reflection.Extensions.xml", + "ref/netstandard1.0/ru/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Reflection.Metadata/1.3.0-rc2-24027": { + "sha512": "ADZVzbL6KHwUzqn+BD9cf82ev/ADG1w4Uy7V8G//kx89aImQbbq2pCOpyl8IBC4Qqrq0hUWjgTOrxFo8PNa/pA==", + "type": "package", + "files": [ + "System.Reflection.Metadata.1.3.0-rc2-24027.nupkg.sha512", + "System.Reflection.Metadata.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml" + ] + }, + "System.Reflection.Primitives/4.0.1-rc2-24027": { + "sha512": "/FgLaA5DnqSVZVm5+eqhSjezjBCRo7+W5LzUsa3nQul6hHbMGkB2uuN8Tt6UfpLzKZ5QimefeDKkLYmChBnskQ==", + "type": "package", + "files": [ + "System.Reflection.Primitives.4.0.1-rc2-24027.nupkg.sha512", + "System.Reflection.Primitives.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Reflection.Primitives.dll", + "ref/netcore50/System.Reflection.Primitives.xml", + "ref/netcore50/de/System.Reflection.Primitives.xml", + "ref/netcore50/es/System.Reflection.Primitives.xml", + "ref/netcore50/fr/System.Reflection.Primitives.xml", + "ref/netcore50/it/System.Reflection.Primitives.xml", + "ref/netcore50/ja/System.Reflection.Primitives.xml", + "ref/netcore50/ko/System.Reflection.Primitives.xml", + "ref/netcore50/ru/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hans/System.Reflection.Primitives.xml", + "ref/netcore50/zh-hant/System.Reflection.Primitives.xml", + "ref/netstandard1.0/System.Reflection.Primitives.dll", + "ref/netstandard1.0/System.Reflection.Primitives.xml", + "ref/netstandard1.0/de/System.Reflection.Primitives.xml", + "ref/netstandard1.0/es/System.Reflection.Primitives.xml", + "ref/netstandard1.0/fr/System.Reflection.Primitives.xml", + "ref/netstandard1.0/it/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ja/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ko/System.Reflection.Primitives.xml", + "ref/netstandard1.0/ru/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Reflection.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Reflection.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Resources.ResourceManager/4.0.1-rc2-24027": { + "sha512": "WFDuYprqRWAVcQzArAqgabw9bbGPBaogBG17sGtZ5Iyb7ddOcIs89QYdcxdatPkSYOFNWydwSY2fyOjhIKMIcA==", + "type": "package", + "files": [ + "System.Resources.ResourceManager.4.0.1-rc2-24027.nupkg.sha512", + "System.Resources.ResourceManager.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Resources.ResourceManager.dll", + "ref/netcore50/System.Resources.ResourceManager.xml", + "ref/netcore50/de/System.Resources.ResourceManager.xml", + "ref/netcore50/es/System.Resources.ResourceManager.xml", + "ref/netcore50/fr/System.Resources.ResourceManager.xml", + "ref/netcore50/it/System.Resources.ResourceManager.xml", + "ref/netcore50/ja/System.Resources.ResourceManager.xml", + "ref/netcore50/ko/System.Resources.ResourceManager.xml", + "ref/netcore50/ru/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hans/System.Resources.ResourceManager.xml", + "ref/netcore50/zh-hant/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/System.Resources.ResourceManager.dll", + "ref/netstandard1.0/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/de/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/es/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/fr/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/it/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ja/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ko/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/ru/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hans/System.Resources.ResourceManager.xml", + "ref/netstandard1.0/zh-hant/System.Resources.ResourceManager.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Runtime/4.1.0-rc2-24027": { + "sha512": "sDyyCeXycMSiNP4z1wyeyXlZSb26/OXIAwqnDsOAjw9PL3r8OgDRJgt4SH6Qid5z6E5IEGTKwjBjrHJGoa8bag==", + "type": "package", + "files": [ + "System.Runtime.4.1.0-rc2-24027.nupkg.sha512", + "System.Runtime.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.dll", + "lib/portable-net45+win8+wp80+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.dll", + "ref/netcore50/System.Runtime.dll", + "ref/netcore50/System.Runtime.xml", + "ref/netcore50/de/System.Runtime.xml", + "ref/netcore50/es/System.Runtime.xml", + "ref/netcore50/fr/System.Runtime.xml", + "ref/netcore50/it/System.Runtime.xml", + "ref/netcore50/ja/System.Runtime.xml", + "ref/netcore50/ko/System.Runtime.xml", + "ref/netcore50/ru/System.Runtime.xml", + "ref/netcore50/zh-hans/System.Runtime.xml", + "ref/netcore50/zh-hant/System.Runtime.xml", + "ref/netstandard1.0/System.Runtime.dll", + "ref/netstandard1.0/System.Runtime.xml", + "ref/netstandard1.0/de/System.Runtime.xml", + "ref/netstandard1.0/es/System.Runtime.xml", + "ref/netstandard1.0/fr/System.Runtime.xml", + "ref/netstandard1.0/it/System.Runtime.xml", + "ref/netstandard1.0/ja/System.Runtime.xml", + "ref/netstandard1.0/ko/System.Runtime.xml", + "ref/netstandard1.0/ru/System.Runtime.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.xml", + "ref/netstandard1.2/System.Runtime.dll", + "ref/netstandard1.2/System.Runtime.xml", + "ref/netstandard1.2/de/System.Runtime.xml", + "ref/netstandard1.2/es/System.Runtime.xml", + "ref/netstandard1.2/fr/System.Runtime.xml", + "ref/netstandard1.2/it/System.Runtime.xml", + "ref/netstandard1.2/ja/System.Runtime.xml", + "ref/netstandard1.2/ko/System.Runtime.xml", + "ref/netstandard1.2/ru/System.Runtime.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.xml", + "ref/netstandard1.3/System.Runtime.dll", + "ref/netstandard1.3/System.Runtime.xml", + "ref/netstandard1.3/de/System.Runtime.xml", + "ref/netstandard1.3/es/System.Runtime.xml", + "ref/netstandard1.3/fr/System.Runtime.xml", + "ref/netstandard1.3/it/System.Runtime.xml", + "ref/netstandard1.3/ja/System.Runtime.xml", + "ref/netstandard1.3/ko/System.Runtime.xml", + "ref/netstandard1.3/ru/System.Runtime.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.xml", + "ref/netstandard1.5/System.Runtime.dll", + "ref/netstandard1.5/System.Runtime.xml", + "ref/netstandard1.5/de/System.Runtime.xml", + "ref/netstandard1.5/es/System.Runtime.xml", + "ref/netstandard1.5/fr/System.Runtime.xml", + "ref/netstandard1.5/it/System.Runtime.xml", + "ref/netstandard1.5/ja/System.Runtime.xml", + "ref/netstandard1.5/ko/System.Runtime.xml", + "ref/netstandard1.5/ru/System.Runtime.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.xml", + "ref/portable-net45+win8+wp80+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Runtime.Extensions/4.1.0-rc2-24027": { + "sha512": "rHmAgtQY8XlVd4tB/5ta8IzxAL9gpUlkTYQgUXDjdHux2MFmDSJv4vgm/atmwbKZcd0TnzjD2SYpnkWSqDWgFg==", + "type": "package", + "files": [ + "System.Runtime.Extensions.4.1.0-rc2-24027.nupkg.sha512", + "System.Runtime.Extensions.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.dll", + "ref/netcore50/System.Runtime.Extensions.xml", + "ref/netcore50/de/System.Runtime.Extensions.xml", + "ref/netcore50/es/System.Runtime.Extensions.xml", + "ref/netcore50/fr/System.Runtime.Extensions.xml", + "ref/netcore50/it/System.Runtime.Extensions.xml", + "ref/netcore50/ja/System.Runtime.Extensions.xml", + "ref/netcore50/ko/System.Runtime.Extensions.xml", + "ref/netcore50/ru/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hans/System.Runtime.Extensions.xml", + "ref/netcore50/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.0/System.Runtime.Extensions.dll", + "ref/netstandard1.0/System.Runtime.Extensions.xml", + "ref/netstandard1.0/de/System.Runtime.Extensions.xml", + "ref/netstandard1.0/es/System.Runtime.Extensions.xml", + "ref/netstandard1.0/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.0/it/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.0/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.3/System.Runtime.Extensions.dll", + "ref/netstandard1.3/System.Runtime.Extensions.xml", + "ref/netstandard1.3/de/System.Runtime.Extensions.xml", + "ref/netstandard1.3/es/System.Runtime.Extensions.xml", + "ref/netstandard1.3/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.3/it/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.3/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Extensions.xml", + "ref/netstandard1.5/System.Runtime.Extensions.dll", + "ref/netstandard1.5/System.Runtime.Extensions.xml", + "ref/netstandard1.5/de/System.Runtime.Extensions.xml", + "ref/netstandard1.5/es/System.Runtime.Extensions.xml", + "ref/netstandard1.5/fr/System.Runtime.Extensions.xml", + "ref/netstandard1.5/it/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ja/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ko/System.Runtime.Extensions.xml", + "ref/netstandard1.5/ru/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.Extensions.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Runtime.Handles/4.0.1-rc2-24027": { + "sha512": "zAfnDT+YDOnVK2ZSoE+70LU94207gz0AO1B+ELtfsZB6a35yVFBo9XTE/nK9QwsZxnknPIqoQ1CJz434TC5PFA==", + "type": "package", + "files": [ + "System.Runtime.Handles.4.0.1-rc2-24027.nupkg.sha512", + "System.Runtime.Handles.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/_._", + "ref/netstandard1.3/System.Runtime.Handles.dll", + "ref/netstandard1.3/System.Runtime.Handles.xml", + "ref/netstandard1.3/de/System.Runtime.Handles.xml", + "ref/netstandard1.3/es/System.Runtime.Handles.xml", + "ref/netstandard1.3/fr/System.Runtime.Handles.xml", + "ref/netstandard1.3/it/System.Runtime.Handles.xml", + "ref/netstandard1.3/ja/System.Runtime.Handles.xml", + "ref/netstandard1.3/ko/System.Runtime.Handles.xml", + "ref/netstandard1.3/ru/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Handles.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Handles.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Runtime.InteropServices/4.1.0-rc2-24027": { + "sha512": "HMTGM3YyFBqDSP4STwC2YC51PInAQNMRj4V3rodwhaeAl+DnRKYqRFnd3eO2l99JqrcBIgg48SFGU9zglQC38w==", + "type": "package", + "files": [ + "System.Runtime.InteropServices.4.1.0-rc2-24027.nupkg.sha512", + "System.Runtime.InteropServices.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net462/System.Runtime.InteropServices.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net462/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.dll", + "ref/netcore50/System.Runtime.InteropServices.xml", + "ref/netcore50/de/System.Runtime.InteropServices.xml", + "ref/netcore50/es/System.Runtime.InteropServices.xml", + "ref/netcore50/fr/System.Runtime.InteropServices.xml", + "ref/netcore50/it/System.Runtime.InteropServices.xml", + "ref/netcore50/ja/System.Runtime.InteropServices.xml", + "ref/netcore50/ko/System.Runtime.InteropServices.xml", + "ref/netcore50/ru/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hans/System.Runtime.InteropServices.xml", + "ref/netcore50/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/System.Runtime.InteropServices.dll", + "ref/netstandard1.1/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/System.Runtime.InteropServices.dll", + "ref/netstandard1.2/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.2/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/System.Runtime.InteropServices.dll", + "ref/netstandard1.3/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/System.Runtime.InteropServices.dll", + "ref/netstandard1.5/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/de/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/es/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/fr/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/it/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ja/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ko/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/ru/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hans/System.Runtime.InteropServices.xml", + "ref/netstandard1.5/zh-hant/System.Runtime.InteropServices.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Runtime.Numerics/4.0.1-rc2-24027": { + "sha512": "ZcDlNWYNdyPJruJdoFiQjdD9aj17MUnK9vlShMaqIYtZmn5NuRY5Iyn0yojyA9SgJPaAoQkbvb/rJ7Nafly8sg==", + "type": "package", + "files": [ + "System.Runtime.Numerics.4.0.1-rc2-24027.nupkg.sha512", + "System.Runtime.Numerics.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Runtime.Numerics.dll", + "lib/netstandard1.3/System.Runtime.Numerics.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Runtime.Numerics.dll", + "ref/netcore50/System.Runtime.Numerics.xml", + "ref/netcore50/de/System.Runtime.Numerics.xml", + "ref/netcore50/es/System.Runtime.Numerics.xml", + "ref/netcore50/fr/System.Runtime.Numerics.xml", + "ref/netcore50/it/System.Runtime.Numerics.xml", + "ref/netcore50/ja/System.Runtime.Numerics.xml", + "ref/netcore50/ko/System.Runtime.Numerics.xml", + "ref/netcore50/ru/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hans/System.Runtime.Numerics.xml", + "ref/netcore50/zh-hant/System.Runtime.Numerics.xml", + "ref/netstandard1.1/System.Runtime.Numerics.dll", + "ref/netstandard1.1/System.Runtime.Numerics.xml", + "ref/netstandard1.1/de/System.Runtime.Numerics.xml", + "ref/netstandard1.1/es/System.Runtime.Numerics.xml", + "ref/netstandard1.1/fr/System.Runtime.Numerics.xml", + "ref/netstandard1.1/it/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ja/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ko/System.Runtime.Numerics.xml", + "ref/netstandard1.1/ru/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hans/System.Runtime.Numerics.xml", + "ref/netstandard1.1/zh-hant/System.Runtime.Numerics.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Runtime.Serialization.Primitives/4.1.1-rc2-24027": { + "sha512": "CatEVkKtMZlBrsdboi2RNediIXkYaiKtseORboHASI96mYtlPvivmHr/nw+pKx7s7enaFvs5Ovfbc8uXs5Qt7Q==", + "type": "package", + "files": [ + "System.Runtime.Serialization.Primitives.4.1.1-rc2-24027.nupkg.sha512", + "System.Runtime.Serialization.Primitives.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/net46/System.Runtime.Serialization.Primitives.dll", + "lib/netcore50/System.Runtime.Serialization.Primitives.dll", + "lib/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/net46/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.dll", + "ref/netcore50/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/de/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/es/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/it/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netcore50/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.0/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.0/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.dll", + "ref/netstandard1.3/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/de/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/es/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/fr/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/it/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ja/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ko/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/ru/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hans/System.Runtime.Serialization.Primitives.xml", + "ref/netstandard1.3/zh-hant/System.Runtime.Serialization.Primitives.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Runtime.Serialization.Primitives.dll" + ] + }, + "System.Security.Cryptography.Algorithms/4.1.0-rc2-24027": { + "sha512": "oh/g+cyjJ7b1GpLmSHSPAv2o3juedBppGeumF25ELzsyINFCeOGpVOdUr15GLfTpNYHyYML0PCefIW6PrFH2XQ==", + "type": "package", + "files": [ + "System.Security.Cryptography.Algorithms.4.1.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.Algorithms.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Algorithms.dll", + "lib/net461/System.Security.Cryptography.Algorithms.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Algorithms.dll", + "ref/net461/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.3/System.Security.Cryptography.Algorithms.dll", + "ref/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.Algorithms.dll", + "runtimes/win7/lib/netstandard1.4/System.Security.Cryptography.Algorithms.dll" + ] + }, + "System.Security.Cryptography.Encoding/4.0.0-rc2-24027": { + "sha512": "71AE+Bd68o0t6R0OEwHNRxcpcCI2kYfY0EOP+mAzIohObJKLoaDW6t8CunWOnr7hzvHI4W2UdNgmZzX2HSSuOA==", + "type": "package", + "files": [ + "System.Security.Cryptography.Encoding.4.0.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.Encoding.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Encoding.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "ref/netstandard1.3/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.Encoding.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll", + "runtimes/win7/lib/netstandard1.3/System.Security.Cryptography.Encoding.dll" + ] + }, + "System.Security.Cryptography.Primitives/4.0.0-rc2-24027": { + "sha512": "0uZrfk+oxQTpQ/4qTLCTTPXMvjkf0a7YUsYP2GkIeTirphSTZ090LISz4WLXf5AbuO/hYEI7k0MSxp0uqFB0tQ==", + "type": "package", + "files": [ + "System.Security.Cryptography.Primitives.4.0.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.Primitives.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Primitives.dll", + "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Primitives.dll", + "ref/netstandard1.3/System.Security.Cryptography.Primitives.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Security.Cryptography.X509Certificates/4.1.0-rc2-24027": { + "sha512": "nVprbjLjneBgQj9hDlOQqydaZLj/vnBtctLB4Tr5hf9xNP32twD0EDyN75F3/58WB90bMRgWijyQuI6llRs5mQ==", + "type": "package", + "files": [ + "System.Security.Cryptography.X509Certificates.4.1.0-rc2-24027.nupkg.sha512", + "System.Security.Cryptography.X509Certificates.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.X509Certificates.dll", + "lib/net461/System.Security.Cryptography.X509Certificates.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.X509Certificates.dll", + "ref/net461/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.3/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.3/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "ref/netstandard1.4/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/de/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/es/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/fr/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/it/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ja/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ko/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/ru/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hans/System.Security.Cryptography.X509Certificates.xml", + "ref/netstandard1.4/zh-hant/System.Security.Cryptography.X509Certificates.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.4/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win7/lib/netcore50/System.Security.Cryptography.X509Certificates.dll", + "runtimes/win7/lib/netstandard1.4/System.Security.Cryptography.X509Certificates.dll" + ] + }, + "System.Text.Encoding/4.0.11-rc2-24027": { + "sha512": "WyhCB3a669kXgMXEBx+T0G+bulfT0xzhYqZvuIGm22qIFlS85z11df279viqqjkwv2PDQvLjE2YKhRqkvdEd3g==", + "type": "package", + "files": [ + "System.Text.Encoding.4.0.11-rc2-24027.nupkg.sha512", + "System.Text.Encoding.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.dll", + "ref/netcore50/System.Text.Encoding.xml", + "ref/netcore50/de/System.Text.Encoding.xml", + "ref/netcore50/es/System.Text.Encoding.xml", + "ref/netcore50/fr/System.Text.Encoding.xml", + "ref/netcore50/it/System.Text.Encoding.xml", + "ref/netcore50/ja/System.Text.Encoding.xml", + "ref/netcore50/ko/System.Text.Encoding.xml", + "ref/netcore50/ru/System.Text.Encoding.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.0/System.Text.Encoding.dll", + "ref/netstandard1.0/System.Text.Encoding.xml", + "ref/netstandard1.0/de/System.Text.Encoding.xml", + "ref/netstandard1.0/es/System.Text.Encoding.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.xml", + "ref/netstandard1.0/it/System.Text.Encoding.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.xml", + "ref/netstandard1.3/System.Text.Encoding.dll", + "ref/netstandard1.3/System.Text.Encoding.xml", + "ref/netstandard1.3/de/System.Text.Encoding.xml", + "ref/netstandard1.3/es/System.Text.Encoding.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.xml", + "ref/netstandard1.3/it/System.Text.Encoding.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Text.Encoding.CodePages/4.0.1-rc2-24027": { + "sha512": "hoE1NcYMD2fwCotbt/I+B/6p0gyxp82MiKTZ5OKK2O7nMJ8sjF7YtzyVicvxD7e3sBDyCZWdcbMEW09M/C+IAQ==", + "type": "package", + "files": [ + "System.Text.Encoding.CodePages.4.0.1-rc2-24027.nupkg.sha512", + "System.Text.Encoding.CodePages.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll", + "ref/netstandard1.3/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll" + ] + }, + "System.Text.Encoding.Extensions/4.0.11-rc2-24027": { + "sha512": "wj8if+6Wg+2Li3/T/+1+0qkuI7IZfeymtDhTiDThXDwc8+U9ZlZ2QcGHv9v9AEuh1ljWzp6dysuwehWSqAyhpg==", + "type": "package", + "files": [ + "System.Text.Encoding.Extensions.4.0.11-rc2-24027.nupkg.sha512", + "System.Text.Encoding.Extensions.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Text.Encoding.Extensions.dll", + "ref/netcore50/System.Text.Encoding.Extensions.xml", + "ref/netcore50/de/System.Text.Encoding.Extensions.xml", + "ref/netcore50/es/System.Text.Encoding.Extensions.xml", + "ref/netcore50/fr/System.Text.Encoding.Extensions.xml", + "ref/netcore50/it/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ja/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ko/System.Text.Encoding.Extensions.xml", + "ref/netcore50/ru/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netcore50/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.0/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.0/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/System.Text.Encoding.Extensions.dll", + "ref/netstandard1.3/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/de/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/es/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/it/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.Extensions.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.Extensions.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Text.Encodings.Web/4.0.0-rc2-24027": { + "sha512": "r8and4JvIHRMq1Zc1H+hRKhRearrYKogJ18hQRZRsq9dcRRuxIwsv3FB73N7tMflYA2eJDmcWeqlBlYzGhOSdQ==", + "type": "package", + "files": [ + "System.Text.Encodings.Web.4.0.0-rc2-24027.nupkg.sha512", + "System.Text.Encodings.Web.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Text.Encodings.Web.dll", + "lib/netstandard1.0/System.Text.Encodings.Web.xml" + ] + }, + "System.Threading/4.0.11-rc2-24027": { + "sha512": "JdVfUj82+pkIGfpUeb28HdwxoUMR7lTL5LT2iX9gyKtIo4yv2VirGPFVvohdlN9t9My+dIlYb9W4z1YlZV/RIA==", + "type": "package", + "files": [ + "System.Threading.4.0.11-rc2-24027.nupkg.sha512", + "System.Threading.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.dll", + "lib/netstandard1.3/System.Threading.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.dll", + "ref/netcore50/System.Threading.xml", + "ref/netcore50/de/System.Threading.xml", + "ref/netcore50/es/System.Threading.xml", + "ref/netcore50/fr/System.Threading.xml", + "ref/netcore50/it/System.Threading.xml", + "ref/netcore50/ja/System.Threading.xml", + "ref/netcore50/ko/System.Threading.xml", + "ref/netcore50/ru/System.Threading.xml", + "ref/netcore50/zh-hans/System.Threading.xml", + "ref/netcore50/zh-hant/System.Threading.xml", + "ref/netstandard1.0/System.Threading.dll", + "ref/netstandard1.0/System.Threading.xml", + "ref/netstandard1.0/de/System.Threading.xml", + "ref/netstandard1.0/es/System.Threading.xml", + "ref/netstandard1.0/fr/System.Threading.xml", + "ref/netstandard1.0/it/System.Threading.xml", + "ref/netstandard1.0/ja/System.Threading.xml", + "ref/netstandard1.0/ko/System.Threading.xml", + "ref/netstandard1.0/ru/System.Threading.xml", + "ref/netstandard1.0/zh-hans/System.Threading.xml", + "ref/netstandard1.0/zh-hant/System.Threading.xml", + "ref/netstandard1.3/System.Threading.dll", + "ref/netstandard1.3/System.Threading.xml", + "ref/netstandard1.3/de/System.Threading.xml", + "ref/netstandard1.3/es/System.Threading.xml", + "ref/netstandard1.3/fr/System.Threading.xml", + "ref/netstandard1.3/it/System.Threading.xml", + "ref/netstandard1.3/ja/System.Threading.xml", + "ref/netstandard1.3/ko/System.Threading.xml", + "ref/netstandard1.3/ru/System.Threading.xml", + "ref/netstandard1.3/zh-hans/System.Threading.xml", + "ref/netstandard1.3/zh-hant/System.Threading.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/aot/lib/netcore50/System.Threading.dll" + ] + }, + "System.Threading.Tasks/4.0.11-rc2-24027": { + "sha512": "BULvVgPxKNzMgAZpaRHREYhbGFTDbwG84mR61gGcajhLo6nn7XS9E1Lzixiv3gANtT7HROH7h3LeMPMRsEvEPQ==", + "type": "package", + "files": [ + "System.Threading.Tasks.4.0.11-rc2-24027.nupkg.sha512", + "System.Threading.Tasks.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.dll", + "ref/netcore50/System.Threading.Tasks.xml", + "ref/netcore50/de/System.Threading.Tasks.xml", + "ref/netcore50/es/System.Threading.Tasks.xml", + "ref/netcore50/fr/System.Threading.Tasks.xml", + "ref/netcore50/it/System.Threading.Tasks.xml", + "ref/netcore50/ja/System.Threading.Tasks.xml", + "ref/netcore50/ko/System.Threading.Tasks.xml", + "ref/netcore50/ru/System.Threading.Tasks.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.0/System.Threading.Tasks.dll", + "ref/netstandard1.0/System.Threading.Tasks.xml", + "ref/netstandard1.0/de/System.Threading.Tasks.xml", + "ref/netstandard1.0/es/System.Threading.Tasks.xml", + "ref/netstandard1.0/fr/System.Threading.Tasks.xml", + "ref/netstandard1.0/it/System.Threading.Tasks.xml", + "ref/netstandard1.0/ja/System.Threading.Tasks.xml", + "ref/netstandard1.0/ko/System.Threading.Tasks.xml", + "ref/netstandard1.0/ru/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.0/zh-hant/System.Threading.Tasks.xml", + "ref/netstandard1.3/System.Threading.Tasks.dll", + "ref/netstandard1.3/System.Threading.Tasks.xml", + "ref/netstandard1.3/de/System.Threading.Tasks.xml", + "ref/netstandard1.3/es/System.Threading.Tasks.xml", + "ref/netstandard1.3/fr/System.Threading.Tasks.xml", + "ref/netstandard1.3/it/System.Threading.Tasks.xml", + "ref/netstandard1.3/ja/System.Threading.Tasks.xml", + "ref/netstandard1.3/ko/System.Threading.Tasks.xml", + "ref/netstandard1.3/ru/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Tasks.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Tasks.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Threading.Tasks.Extensions/4.0.0-rc2-24027": { + "sha512": "dfj0Fl7/0KeP1UwQvo7xu7LdRAHfJ/Pdvo2YL+sDHddCLaiu+1yNyijYBocaCgQ4H0t8nEg8he/dWsPpaTdfNg==", + "type": "package", + "files": [ + "System.Threading.Tasks.Extensions.4.0.0-rc2-24027.nupkg.sha512", + "System.Threading.Tasks.Extensions.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml" + ] + }, + "System.Threading.Tasks.Parallel/4.0.1-rc2-24027": { + "sha512": "SNOmVf2OqhpwIEznDWxBO7ZZOnN4Iy9xSVrnT4lsU/A93Zc3zJ/7m9oT7RkkQFUncNIq39xqcuYlJ4u1KjTFJg==", + "type": "package", + "files": [ + "System.Threading.Tasks.Parallel.4.0.1-rc2-24027.nupkg.sha512", + "System.Threading.Tasks.Parallel.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Threading.Tasks.Parallel.dll", + "lib/netstandard1.3/System.Threading.Tasks.Parallel.dll", + "lib/portable-net45+win8+wpa81/_._", + "lib/win8/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Threading.Tasks.Parallel.dll", + "ref/netcore50/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/de/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/es/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/fr/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/it/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ja/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ko/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/ru/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netcore50/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.dll", + "ref/netstandard1.1/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/de/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/es/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/fr/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/it/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ja/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ko/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/ru/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hans/System.Threading.Tasks.Parallel.xml", + "ref/netstandard1.1/zh-hant/System.Threading.Tasks.Parallel.xml", + "ref/portable-net45+win8+wpa81/_._", + "ref/win8/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Threading.Thread/4.0.0-rc2-24027": { + "sha512": "pb71GbyEOz4LIVFjssvJ+xXRXA7dye0TuRfW/H9ocfyHensQCWZIeo89Z4rEqbK+3/mE3avAsCpBYenwop0hQA==", + "type": "package", + "files": [ + "System.Threading.Thread.4.0.0-rc2-24027.nupkg.sha512", + "System.Threading.Thread.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Threading.Thread.dll", + "lib/netcore50/_._", + "lib/netstandard1.3/System.Threading.Thread.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.dll", + "ref/netstandard1.3/System.Threading.Thread.xml", + "ref/netstandard1.3/de/System.Threading.Thread.xml", + "ref/netstandard1.3/es/System.Threading.Thread.xml", + "ref/netstandard1.3/fr/System.Threading.Thread.xml", + "ref/netstandard1.3/it/System.Threading.Thread.xml", + "ref/netstandard1.3/ja/System.Threading.Thread.xml", + "ref/netstandard1.3/ko/System.Threading.Thread.xml", + "ref/netstandard1.3/ru/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hans/System.Threading.Thread.xml", + "ref/netstandard1.3/zh-hant/System.Threading.Thread.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Xml.ReaderWriter/4.0.11-rc2-24027": { + "sha512": "PET0DO5ec5Cp6bAK40aWkv/gq4+/3KslTnkpw8UcYfoNkZafIsmd11UzWY+FnjJIpVxHDG3u4SlQAinKlABxFw==", + "type": "package", + "files": [ + "System.Xml.ReaderWriter.4.0.11-rc2-24027.nupkg.sha512", + "System.Xml.ReaderWriter.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.ReaderWriter.dll", + "lib/netstandard1.3/System.Xml.ReaderWriter.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.ReaderWriter.dll", + "ref/netcore50/System.Xml.ReaderWriter.xml", + "ref/netcore50/de/System.Xml.ReaderWriter.xml", + "ref/netcore50/es/System.Xml.ReaderWriter.xml", + "ref/netcore50/fr/System.Xml.ReaderWriter.xml", + "ref/netcore50/it/System.Xml.ReaderWriter.xml", + "ref/netcore50/ja/System.Xml.ReaderWriter.xml", + "ref/netcore50/ko/System.Xml.ReaderWriter.xml", + "ref/netcore50/ru/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netcore50/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/System.Xml.ReaderWriter.dll", + "ref/netstandard1.0/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.0/zh-hant/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/System.Xml.ReaderWriter.dll", + "ref/netstandard1.3/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/de/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/es/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/fr/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/it/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ja/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ko/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/ru/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hans/System.Xml.ReaderWriter.xml", + "ref/netstandard1.3/zh-hant/System.Xml.ReaderWriter.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Xml.XDocument/4.0.11-rc2-24027": { + "sha512": "e2rpl8sRIEw2YiizX6CzL/g7BU9OeIRXdsuVAL3DWDFBsYrLac+Wcdn1HM1bHhrZ8Gbw+KmFQBMtnXHzv+xGsA==", + "type": "package", + "files": [ + "System.Xml.XDocument.4.0.11-rc2-24027.nupkg.sha512", + "System.Xml.XDocument.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/System.Xml.XDocument.dll", + "lib/netstandard1.3/System.Xml.XDocument.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/System.Xml.XDocument.dll", + "ref/netcore50/System.Xml.XDocument.xml", + "ref/netcore50/de/System.Xml.XDocument.xml", + "ref/netcore50/es/System.Xml.XDocument.xml", + "ref/netcore50/fr/System.Xml.XDocument.xml", + "ref/netcore50/it/System.Xml.XDocument.xml", + "ref/netcore50/ja/System.Xml.XDocument.xml", + "ref/netcore50/ko/System.Xml.XDocument.xml", + "ref/netcore50/ru/System.Xml.XDocument.xml", + "ref/netcore50/zh-hans/System.Xml.XDocument.xml", + "ref/netcore50/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.0/System.Xml.XDocument.dll", + "ref/netstandard1.0/System.Xml.XDocument.xml", + "ref/netstandard1.0/de/System.Xml.XDocument.xml", + "ref/netstandard1.0/es/System.Xml.XDocument.xml", + "ref/netstandard1.0/fr/System.Xml.XDocument.xml", + "ref/netstandard1.0/it/System.Xml.XDocument.xml", + "ref/netstandard1.0/ja/System.Xml.XDocument.xml", + "ref/netstandard1.0/ko/System.Xml.XDocument.xml", + "ref/netstandard1.0/ru/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.0/zh-hant/System.Xml.XDocument.xml", + "ref/netstandard1.3/System.Xml.XDocument.dll", + "ref/netstandard1.3/System.Xml.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XDocument.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Xml.XmlDocument/4.0.1-rc2-24027": { + "sha512": "9Dll6QjHF9ECoBG+bPgfiEC0B8URbG+PRuI/QLfemn/OQYG+PBfh+hK/Svfxx8d8AqhXA7pnUzOXRYNlRQ5zAQ==", + "type": "package", + "files": [ + "System.Xml.XmlDocument.4.0.1-rc2-24027.nupkg.sha512", + "System.Xml.XmlDocument.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XmlDocument.dll", + "lib/netstandard1.3/System.Xml.XmlDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.dll", + "ref/netstandard1.3/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/de/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/es/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/it/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XmlDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XmlDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Xml.XPath/4.0.1-rc2-24027": { + "sha512": "HlYEV5eowxhA9GQHC0sIAKo7Hhpa2soYkBezc1/7qK1bt0bNnXDdNQXqaSDklxpAJz3xvpkOgdeid44Z/nrGxA==", + "type": "package", + "files": [ + "System.Xml.XPath.4.0.1-rc2-24027.nupkg.sha512", + "System.Xml.XPath.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.dll", + "lib/netstandard1.3/System.Xml.XPath.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.dll", + "ref/netstandard1.3/System.Xml.XPath.xml", + "ref/netstandard1.3/de/System.Xml.XPath.xml", + "ref/netstandard1.3/es/System.Xml.XPath.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.xml", + "ref/netstandard1.3/it/System.Xml.XPath.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + }, + "System.Xml.XPath.XDocument/4.0.1-rc2-24027": { + "sha512": "IxOLcwl5A0Lm1s2FIUh5klV+Fi0tUE/5OltvIkZdV7phcWVfgBlCRlgxweaXVrCTI+9TZ8TihVutVaA+PC95lg==", + "type": "package", + "files": [ + "System.Xml.XPath.XDocument.4.0.1-rc2-24027.nupkg.sha512", + "System.Xml.XPath.XDocument.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Xml.XPath.XDocument.dll", + "lib/netstandard1.3/System.Xml.XPath.XDocument.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Xml.XPath.XDocument.dll", + "ref/netstandard1.3/System.Xml.XPath.XDocument.dll", + "ref/netstandard1.3/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/de/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/es/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/fr/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/it/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/ja/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/ko/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/ru/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/zh-hans/System.Xml.XPath.XDocument.xml", + "ref/netstandard1.3/zh-hant/System.Xml.XPath.XDocument.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._" + ] + } + }, + "projectFileDependencyGroups": { + "": [ + "Belgrade.Sql.Client >= 0.1.0", + "Microsoft.AspNetCore.Mvc >= 1.0.0-rc2-final", + "Microsoft.AspNetCore.Server.IISIntegration >= 1.0.0-rc2-final", + "Microsoft.AspNetCore.Server.Kestrel >= 1.0.0-rc2-final", + "Microsoft.Extensions.Configuration.EnvironmentVariables >= 1.0.0-rc2-final", + "Microsoft.Extensions.Configuration.FileExtensions >= 1.0.0-rc2-final", + "Microsoft.Extensions.Configuration.Json >= 1.0.0-rc2-final", + "Microsoft.Extensions.Logging >= 1.0.0-rc2-final", + "Microsoft.Extensions.Logging.Console >= 1.0.0-rc2-final", + "Microsoft.Extensions.Logging.Debug >= 1.0.0-rc2-final", + "System.Data.SqlClient >= 4.1.0-rc2-24027", + "System.IO >= 4.1.0-rc2-24027" + ], + ".NETFramework,Version=v4.6": [] + }, + "tools": { + ".NETCoreApp,Version=v1.0": { + "Microsoft.AspNetCore.Server.IISIntegration.Tools/1.0.0-preview1-final": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.ProjectModel": "1.0.0-rc2-002702", + "Microsoft.Extensions.CommandLineUtils": "1.0.0-rc2-final", + "Microsoft.NETCore.App": "1.0.0-rc2-3002702", + "System.Diagnostics.Process": "4.1.0-rc2-24027" + }, + "compile": { + "lib/netcoreapp1.0/dotnet-publish-iis.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/dotnet-publish-iis.dll": {} + } + } + } + }, + "projectFileToolGroups": { + ".NETCoreApp,Version=v1.0": [ + "Microsoft.AspNetCore.Server.IISIntegration.Tools >= 1.0.0-preview1-final" + ] + } +} \ No newline at end of file diff --git a/samples/features/json/dotnet-todo-rest-api/setup/TodoDb.bacpac b/samples/features/json/dotnet-todo-rest-api/setup/TodoDb.bacpac new file mode 100644 index 0000000000000000000000000000000000000000..f39e75f466ef5741b53481eeb1ec62dbf56f4478 GIT binary patch literal 4586 zcmbVQ3p`Y5AD$8^kqBiMr-_ivoVhX@6K3R=OlHzW(p(Ov=E9jXM9Xd}N%tsSY$@H_ zE-Fh~y6B>mYNJ}Iv?VE}8)=Jt@0mfAw(t9xGe75j|CjfDp6C6azrzpG>o=4@AQ%!d z50(3;zAF47sULx0WkVngApA&BsHBLTG*=;qwhbdV<>H24|GbzMp}ONgG`TVGquq&= z*>;xItLXPE0({@^=4Ymz3)?<<=(GjNdU-b2iXO#TerRYhVLtf9czgK`dDde8bF>!8 zRnI4ADSg~TV$|IQ6Lvo+-6=Q{tTz|(Df26h+S{1YJ}ZU&PjhzEVyA}&lJtwm4CfE` zEX#G2@+zBe6e+E%HlII|^kQ&Dz5Qz|voraL6ZM?U;&#ox6H#uS>QHcHTU`qB;b61t z+SnJB&1oY7pl}=ixDf8Doqt*`8?xx+wZ7Kk3CI6*V$0_kJs2>#$@WpRVbE#%t8_Mt zSsHl$=jmb8x9cmn`BLYn|5odwTx+<{V$EsPJG7*}aD!lFU(rs%6__ZYPADR@9yHNQs`#oMgCOj9P8T)cid@ub7kCFzq_x;_30n5 zzQ)!)<@n3O85M`h?lomv+G1Wl5&M?zIMRB3ZCLgmzUe#em7M#NR;`2;yQo7B>m}GD zWyZ11=H}cIOB416<>8ivwR+UPGx(-4hPFdaWK-+T@HDL9RKtX&RhE;Moi=gKo4q%v z5LR2q@32_czS$sl^!b|fkk;I=t2;iOEUBMZM@&I5{*2jc==p$+cvO))^d1L zepuc<`&GNS4n&t)A$iO)7h_MNU+w|O)W2~MVz2X~*d_d8#ip_M46PqKC4>ac8Y^az{^sAk zrDPAu@beN_+l}SKAEZC5F+U!kck?2ls%D{UTe`{ zHIe;V+Aci(Q}m?1c)1LV@!2-QW=FropXAKCB?`#}uN&zXpGL1gkeS!7Xb{6KjWAE? zl@U33->?IVp1n04WxB3t{k*@1s*goGTsLWcW@S_`eP0H;->2o*3DqtYKc|ZpTvMkp zo?Z1WRM^@4?(t4`&w1-TS6d;cBbu%Ee8N z3{6gK7V*rml9KHLP1PN4{t+u1n{5wRPIry{|E{j9f3kZl4<5Qa_tT)q#SKlHi)~X< z6Z|%gS-G*M@bJ7R$7kNW9&utC`_b!pFNiH3>8DH{hR1}S5HuE~&UxDR3aj^E< z-0Mkwel2Qk_N&;~o^|_ZSjs*2KUVx6#p@#J>Hc3qc{&NM!Jv5YM3P_x6G=sw=zArM zu_E831RAz5!MtYvq01p-hjX9as5*ba#<{?L(J6iUvwf`h{wGtn&sP3%`EldCagp0j z9$P&lINdVY*XV*XWu_#$?bx>LO4aX2*EOt-$x^<|9C55s;=4F&r;S(Tg1FJtXwB*L zWU;l)xx{6oYA4lar7ai`w*1}J(38Kcv2u8|rY_j$+)UQU@aKnE1EyXvvpdCJbHumr zCvSuKc1v0bpLdxBO0>%P66Y+~p|B5uU=DT}&Q&QfM2STT6Jrr|#P@cZ%pYq~0uL$< z%(5sT4Km#NyZ=w|1|(DcmXUYtGw$upSw4ScoW9R|{XThHYD%vaUS>oXD@GrzIQYajn9e~r%A&oyT*YTo}4{$Q4K!*Me4 z${MN39qaLDhm2!OH!Jh`5og72{oW7%p*B>$`GlWv)bRdkL(&drG)J{>UubZt1$fx^B@i66 ztYadwRIDNiRZGYgY$_^rZ}4bPX~x`=s}Dh0PEv z`BbqOTCt=g)nVDiJ)lM(miZC&?f;NddXc*(s6X4I~P zYhlR!=|i^bB<|xUAIq&T#pGH+>f%XOm6ltX+YJIs zr8|E}H?E-Wygsv`aaYT%yZ3jVxuPt5zV6A?KcE6rZ1rB^Yd-mCU5!n1efHL9`@RqD zlC~dtF0Ea5Jk`Uo+MQKi;25#;hIvkM+kh>$p1zBM@{XQgq4#n(_pZsX%MbM?r=1P^ z`{?THsuVpO!hrxZ0s)s){e~Q~NFXQtG6E1rqKI5gCgI=z2Gq;rr`Y50-XI=9)iRaR zlSm=KLD!Qte5M!LV2lGFdH&K@=i2 zNfnDI!Az72RfsTfi$;@UMUpw9XoO6KVI~=@=5q{U&zKOdeNQ5WlkJJ~PK1OaG#bG? ziDaDo@9KdF1xP)Kp$IHSXcQ)mL8ZWS3LPOrS4 zfgwUM4j_c-3Nu|PG$EDZ!C-mNm?Q?wWWY3c7nte+1MCGDZrI`FtCVs;rKGrOKSCG= zCg4NT)=%6TH|Vehyh=3^49Alb+$9k~oE&HZ$b$rAH3sTn!;?bOK|KcIYUG#(MLd;= z217;iF%VxPmdhkTNTN_R2T^*8VOkU;$}NgQkuqQrO#~3@mZ)d$PTgpu(`Yo9MCmf` zoa^Z!&=wue7bWO_R(MyIj(B(yHn}HT~!De|#ln5{hPJ$ZH zC{tou>#qj8?D?onAwm-Y&D~t6IF7xHcXC z=*9sZUv9D!3@s&WU3CHS$7E_uCh5e1El_DtiMDmXu@K0T5DtyO0MUDy=t!l_8>&js z0xDEtBDqi$%>k#f_X*q!93^da`yxM^8-qyZs5OeN<#Y}}lTjIXs&)NiPUP_1y}1;3 zF6=|$QN1Z#m_lRv^5{G|%wjNom=qrD!}aDd7~XE~?hJ;n8_kF2J)Xkw_4WZ)bl4lP z+ZkI2NY||{H#-=A2cQ#pr+la+7MtA5I4-oV#|U_U_37(M_}0q>ZTHdbt7}JJy7g@9 zyLk|b!J7(@u6vW;-TCWoxw~_oKB2eX`O5%3+sp0&j({gIelEV-T pgyC(MuKDWj_;nA^-ErdpLbr~9AEXb~Mj#k~-$c;Ug`47c{{c3FX9)lR literal 0 HcmV?d00001 diff --git a/samples/features/json/dotnet-todo-rest-api/setup/setup.sql b/samples/features/json/dotnet-todo-rest-api/setup/setup.sql new file mode 100644 index 00000000..b434c1eb --- /dev/null +++ b/samples/features/json/dotnet-todo-rest-api/setup/setup.sql @@ -0,0 +1,19 @@ +DROP TABLE IF EXISTS Todo + +GO + +CREATE TABLE Todo ( + Id int IDENTITY PRIMARY KEY, + Title nvarchar(30) NOT NULL, + Description nvarchar(4000), + Completed bit, + TargetDate datetime2 +) + +GO + +INSERT INTO Todo (Title, Description, Completed, TargetDate) +VALUES +('Install SQL Server 2016','Install RTM version of SQL Server 2016', 0, '2016-06-01'), +('Get new samples','Go to github and download new samples', 0, '2016-06-02'), +('Try new samples','Install new Management Studio to try samples', 0, '2016-06-02') \ No newline at end of file diff --git a/samples/features/json/dotnet-todo-rest-api/web.config b/samples/features/json/dotnet-todo-rest-api/web.config new file mode 100644 index 00000000..dc0514fc --- /dev/null +++ b/samples/features/json/dotnet-todo-rest-api/web.config @@ -0,0 +1,14 @@ + + + + + + + + + + + + From 4305cb94441cdd6babdcb7c5d9b97ae28115621d Mon Sep 17 00:00:00 2001 From: Jovan Popovic Date: Tue, 14 Jun 2016 23:22:27 +0200 Subject: [PATCH 02/12] Added README.md file Added README.md file with description of project. --- .../json/dotnet-todo-rest-api/README.md | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 samples/features/json/dotnet-todo-rest-api/README.md diff --git a/samples/features/json/dotnet-todo-rest-api/README.md b/samples/features/json/dotnet-todo-rest-api/README.md new file mode 100644 index 00000000..00c5d552 --- /dev/null +++ b/samples/features/json/dotnet-todo-rest-api/README.md @@ -0,0 +1,20 @@ +# .Net Todo REST API +This sample application shows how to create simple REST API service that performs CRUD operations on a simple Todo table. +ASP.NET Core Web API is used to implement REST Service in the example. +Service uses built-in JSON functionalities that are available in SQL Server 2016 and Azure SQL Database. + +## Documentation +More details about this sample are available in CodeProject article: +http://www.codeproject.com/Articles/1106622/Building-Web-API-REST-services-on-Azure-SQL-Databa + +## How to use and run the sample? +1. Download the sample or clone repository, +2. Create database that contains Todo table using the Transact-SQL script placed in /setup/setup.sql or using bacpac file stored in /setup/TodoDb.bacpac, +3. Change connection string in Startup.cs class, +4. Build and run sample app. + +## License +These samples and templates are all licensed under the MIT license. See the license.txt file in the root. + +## Questions +Email questions to: sqlserversamples@microsoft.com. From 4caffb56f0350d30a0bcdc7968bc73f791fb5480 Mon Sep 17 00:00:00 2001 From: Jovan Popovic Date: Sat, 18 Jun 2016 15:57:41 +0200 Subject: [PATCH 03/12] Moved todo-rest project Files in TodoRest API project are moved to new location. --- .../.vs/config/applicationhost.config | 994 ------------------ .../json/dotnet-todo-rest-api/README.md | 20 - .../dotnet-todo-rest-api/TodoApp.xproj.user | 7 - .../dotnet-todo-rest-api/setup/TodoDb.bacpac | Bin 4586 -> 0 bytes .../json/dotnet-todo-rest-api/setup/setup.sql | 19 - .../json/todo-app/dotnet-rest-api/.gitignore | 1 + .../Controllers/TodoController.cs | 0 .../dotnet-rest-api}/Program.cs | 0 .../dotnet-rest-api}/Project_Readme.html | 45 +- .../Properties/launchSettings.json | 0 .../json/todo-app/dotnet-rest-api/README.md | 78 ++ .../dotnet-rest-api}/Startup.cs | 0 .../dotnet-rest-api}/TodoApp.xproj | 0 .../dotnet-rest-api}/app.config | 0 .../dotnet-rest-api}/appsettings.json | 0 .../dotnet-rest-api}/project.json | 0 .../dotnet-rest-api}/project.lock.json | 0 .../dotnet-rest-api}/web.config | 0 18 files changed, 93 insertions(+), 1071 deletions(-) delete mode 100644 samples/features/json/dotnet-todo-rest-api/.vs/config/applicationhost.config delete mode 100644 samples/features/json/dotnet-todo-rest-api/README.md delete mode 100644 samples/features/json/dotnet-todo-rest-api/TodoApp.xproj.user delete mode 100644 samples/features/json/dotnet-todo-rest-api/setup/TodoDb.bacpac delete mode 100644 samples/features/json/dotnet-todo-rest-api/setup/setup.sql create mode 100644 samples/features/json/todo-app/dotnet-rest-api/.gitignore rename samples/features/json/{dotnet-todo-rest-api => todo-app/dotnet-rest-api}/Controllers/TodoController.cs (100%) rename samples/features/json/{dotnet-todo-rest-api => todo-app/dotnet-rest-api}/Program.cs (100%) rename samples/features/json/{dotnet-todo-rest-api => todo-app/dotnet-rest-api}/Project_Readme.html (56%) rename samples/features/json/{dotnet-todo-rest-api => todo-app/dotnet-rest-api}/Properties/launchSettings.json (100%) create mode 100644 samples/features/json/todo-app/dotnet-rest-api/README.md rename samples/features/json/{dotnet-todo-rest-api => todo-app/dotnet-rest-api}/Startup.cs (100%) rename samples/features/json/{dotnet-todo-rest-api => todo-app/dotnet-rest-api}/TodoApp.xproj (100%) rename samples/features/json/{dotnet-todo-rest-api => todo-app/dotnet-rest-api}/app.config (100%) rename samples/features/json/{dotnet-todo-rest-api => todo-app/dotnet-rest-api}/appsettings.json (100%) rename samples/features/json/{dotnet-todo-rest-api => todo-app/dotnet-rest-api}/project.json (100%) rename samples/features/json/{dotnet-todo-rest-api => todo-app/dotnet-rest-api}/project.lock.json (100%) rename samples/features/json/{dotnet-todo-rest-api => todo-app/dotnet-rest-api}/web.config (100%) diff --git a/samples/features/json/dotnet-todo-rest-api/.vs/config/applicationhost.config b/samples/features/json/dotnet-todo-rest-api/.vs/config/applicationhost.config deleted file mode 100644 index c3bb2d68..00000000 --- a/samples/features/json/dotnet-todo-rest-api/.vs/config/applicationhost.config +++ /dev/null @@ -1,994 +0,0 @@ - - - - - - -
-
-
-
-
-
-
-
- - -
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- -
-
- -
-
-
-
-
-
- -
-
-
-
-
- -
-
-
- -
-
- -
-
- -
-
-
- - -
-
-
-
-
-
- -
-
-
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/samples/features/json/dotnet-todo-rest-api/README.md b/samples/features/json/dotnet-todo-rest-api/README.md deleted file mode 100644 index 00c5d552..00000000 --- a/samples/features/json/dotnet-todo-rest-api/README.md +++ /dev/null @@ -1,20 +0,0 @@ -# .Net Todo REST API -This sample application shows how to create simple REST API service that performs CRUD operations on a simple Todo table. -ASP.NET Core Web API is used to implement REST Service in the example. -Service uses built-in JSON functionalities that are available in SQL Server 2016 and Azure SQL Database. - -## Documentation -More details about this sample are available in CodeProject article: -http://www.codeproject.com/Articles/1106622/Building-Web-API-REST-services-on-Azure-SQL-Databa - -## How to use and run the sample? -1. Download the sample or clone repository, -2. Create database that contains Todo table using the Transact-SQL script placed in /setup/setup.sql or using bacpac file stored in /setup/TodoDb.bacpac, -3. Change connection string in Startup.cs class, -4. Build and run sample app. - -## License -These samples and templates are all licensed under the MIT license. See the license.txt file in the root. - -## Questions -Email questions to: sqlserversamples@microsoft.com. diff --git a/samples/features/json/dotnet-todo-rest-api/TodoApp.xproj.user b/samples/features/json/dotnet-todo-rest-api/TodoApp.xproj.user deleted file mode 100644 index 4a17fd06..00000000 --- a/samples/features/json/dotnet-todo-rest-api/TodoApp.xproj.user +++ /dev/null @@ -1,7 +0,0 @@ - - - - IIS Express - true - - \ No newline at end of file diff --git a/samples/features/json/dotnet-todo-rest-api/setup/TodoDb.bacpac b/samples/features/json/dotnet-todo-rest-api/setup/TodoDb.bacpac deleted file mode 100644 index f39e75f466ef5741b53481eeb1ec62dbf56f4478..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 4586 zcmbVQ3p`Y5AD$8^kqBiMr-_ivoVhX@6K3R=OlHzW(p(Ov=E9jXM9Xd}N%tsSY$@H_ zE-Fh~y6B>mYNJ}Iv?VE}8)=Jt@0mfAw(t9xGe75j|CjfDp6C6azrzpG>o=4@AQ%!d z50(3;zAF47sULx0WkVngApA&BsHBLTG*=;qwhbdV<>H24|GbzMp}ONgG`TVGquq&= z*>;xItLXPE0({@^=4Ymz3)?<<=(GjNdU-b2iXO#TerRYhVLtf9czgK`dDde8bF>!8 zRnI4ADSg~TV$|IQ6Lvo+-6=Q{tTz|(Df26h+S{1YJ}ZU&PjhzEVyA}&lJtwm4CfE` zEX#G2@+zBe6e+E%HlII|^kQ&Dz5Qz|voraL6ZM?U;&#ox6H#uS>QHcHTU`qB;b61t z+SnJB&1oY7pl}=ixDf8Doqt*`8?xx+wZ7Kk3CI6*V$0_kJs2>#$@WpRVbE#%t8_Mt zSsHl$=jmb8x9cmn`BLYn|5odwTx+<{V$EsPJG7*}aD!lFU(rs%6__ZYPADR@9yHNQs`#oMgCOj9P8T)cid@ub7kCFzq_x;_30n5 zzQ)!)<@n3O85M`h?lomv+G1Wl5&M?zIMRB3ZCLgmzUe#em7M#NR;`2;yQo7B>m}GD zWyZ11=H}cIOB416<>8ivwR+UPGx(-4hPFdaWK-+T@HDL9RKtX&RhE;Moi=gKo4q%v z5LR2q@32_czS$sl^!b|fkk;I=t2;iOEUBMZM@&I5{*2jc==p$+cvO))^d1L zepuc<`&GNS4n&t)A$iO)7h_MNU+w|O)W2~MVz2X~*d_d8#ip_M46PqKC4>ac8Y^az{^sAk zrDPAu@beN_+l}SKAEZC5F+U!kck?2ls%D{UTe`{ zHIe;V+Aci(Q}m?1c)1LV@!2-QW=FropXAKCB?`#}uN&zXpGL1gkeS!7Xb{6KjWAE? zl@U33->?IVp1n04WxB3t{k*@1s*goGTsLWcW@S_`eP0H;->2o*3DqtYKc|ZpTvMkp zo?Z1WRM^@4?(t4`&w1-TS6d;cBbu%Ee8N z3{6gK7V*rml9KHLP1PN4{t+u1n{5wRPIry{|E{j9f3kZl4<5Qa_tT)q#SKlHi)~X< z6Z|%gS-G*M@bJ7R$7kNW9&utC`_b!pFNiH3>8DH{hR1}S5HuE~&UxDR3aj^E< z-0Mkwel2Qk_N&;~o^|_ZSjs*2KUVx6#p@#J>Hc3qc{&NM!Jv5YM3P_x6G=sw=zArM zu_E831RAz5!MtYvq01p-hjX9as5*ba#<{?L(J6iUvwf`h{wGtn&sP3%`EldCagp0j z9$P&lINdVY*XV*XWu_#$?bx>LO4aX2*EOt-$x^<|9C55s;=4F&r;S(Tg1FJtXwB*L zWU;l)xx{6oYA4lar7ai`w*1}J(38Kcv2u8|rY_j$+)UQU@aKnE1EyXvvpdCJbHumr zCvSuKc1v0bpLdxBO0>%P66Y+~p|B5uU=DT}&Q&QfM2STT6Jrr|#P@cZ%pYq~0uL$< z%(5sT4Km#NyZ=w|1|(DcmXUYtGw$upSw4ScoW9R|{XThHYD%vaUS>oXD@GrzIQYajn9e~r%A&oyT*YTo}4{$Q4K!*Me4 z${MN39qaLDhm2!OH!Jh`5og72{oW7%p*B>$`GlWv)bRdkL(&drG)J{>UubZt1$fx^B@i66 ztYadwRIDNiRZGYgY$_^rZ}4bPX~x`=s}Dh0PEv z`BbqOTCt=g)nVDiJ)lM(miZC&?f;NddXc*(s6X4I~P zYhlR!=|i^bB<|xUAIq&T#pGH+>f%XOm6ltX+YJIs zr8|E}H?E-Wygsv`aaYT%yZ3jVxuPt5zV6A?KcE6rZ1rB^Yd-mCU5!n1efHL9`@RqD zlC~dtF0Ea5Jk`Uo+MQKi;25#;hIvkM+kh>$p1zBM@{XQgq4#n(_pZsX%MbM?r=1P^ z`{?THsuVpO!hrxZ0s)s){e~Q~NFXQtG6E1rqKI5gCgI=z2Gq;rr`Y50-XI=9)iRaR zlSm=KLD!Qte5M!LV2lGFdH&K@=i2 zNfnDI!Az72RfsTfi$;@UMUpw9XoO6KVI~=@=5q{U&zKOdeNQ5WlkJJ~PK1OaG#bG? ziDaDo@9KdF1xP)Kp$IHSXcQ)mL8ZWS3LPOrS4 zfgwUM4j_c-3Nu|PG$EDZ!C-mNm?Q?wWWY3c7nte+1MCGDZrI`FtCVs;rKGrOKSCG= zCg4NT)=%6TH|Vehyh=3^49Alb+$9k~oE&HZ$b$rAH3sTn!;?bOK|KcIYUG#(MLd;= z217;iF%VxPmdhkTNTN_R2T^*8VOkU;$}NgQkuqQrO#~3@mZ)d$PTgpu(`Yo9MCmf` zoa^Z!&=wue7bWO_R(MyIj(B(yHn}HT~!De|#ln5{hPJ$ZH zC{tou>#qj8?D?onAwm-Y&D~t6IF7xHcXC z=*9sZUv9D!3@s&WU3CHS$7E_uCh5e1El_DtiMDmXu@K0T5DtyO0MUDy=t!l_8>&js z0xDEtBDqi$%>k#f_X*q!93^da`yxM^8-qyZs5OeN<#Y}}lTjIXs&)NiPUP_1y}1;3 zF6=|$QN1Z#m_lRv^5{G|%wjNom=qrD!}aDd7~XE~?hJ;n8_kF2J)Xkw_4WZ)bl4lP z+ZkI2NY||{H#-=A2cQ#pr+la+7MtA5I4-oV#|U_U_37(M_}0q>ZTHdbt7}JJy7g@9 zyLk|b!J7(@u6vW;-TCWoxw~_oKB2eX`O5%3+sp0&j({gIelEV-T pgyC(MuKDWj_;nA^-ErdpLbr~9AEXb~Mj#k~-$c;Ug`47c{{c3FX9)lR diff --git a/samples/features/json/dotnet-todo-rest-api/setup/setup.sql b/samples/features/json/dotnet-todo-rest-api/setup/setup.sql deleted file mode 100644 index b434c1eb..00000000 --- a/samples/features/json/dotnet-todo-rest-api/setup/setup.sql +++ /dev/null @@ -1,19 +0,0 @@ -DROP TABLE IF EXISTS Todo - -GO - -CREATE TABLE Todo ( - Id int IDENTITY PRIMARY KEY, - Title nvarchar(30) NOT NULL, - Description nvarchar(4000), - Completed bit, - TargetDate datetime2 -) - -GO - -INSERT INTO Todo (Title, Description, Completed, TargetDate) -VALUES -('Install SQL Server 2016','Install RTM version of SQL Server 2016', 0, '2016-06-01'), -('Get new samples','Go to github and download new samples', 0, '2016-06-02'), -('Try new samples','Install new Management Studio to try samples', 0, '2016-06-02') \ No newline at end of file diff --git a/samples/features/json/todo-app/dotnet-rest-api/.gitignore b/samples/features/json/todo-app/dotnet-rest-api/.gitignore new file mode 100644 index 00000000..df51f995 --- /dev/null +++ b/samples/features/json/todo-app/dotnet-rest-api/.gitignore @@ -0,0 +1 @@ +setup/setup.sql \ No newline at end of file diff --git a/samples/features/json/dotnet-todo-rest-api/Controllers/TodoController.cs b/samples/features/json/todo-app/dotnet-rest-api/Controllers/TodoController.cs similarity index 100% rename from samples/features/json/dotnet-todo-rest-api/Controllers/TodoController.cs rename to samples/features/json/todo-app/dotnet-rest-api/Controllers/TodoController.cs diff --git a/samples/features/json/dotnet-todo-rest-api/Program.cs b/samples/features/json/todo-app/dotnet-rest-api/Program.cs similarity index 100% rename from samples/features/json/dotnet-todo-rest-api/Program.cs rename to samples/features/json/todo-app/dotnet-rest-api/Program.cs diff --git a/samples/features/json/dotnet-todo-rest-api/Project_Readme.html b/samples/features/json/todo-app/dotnet-rest-api/Project_Readme.html similarity index 56% rename from samples/features/json/dotnet-todo-rest-api/Project_Readme.html rename to samples/features/json/todo-app/dotnet-rest-api/Project_Readme.html index bddf864a..4f6fa6eb 100644 --- a/samples/features/json/dotnet-todo-rest-api/Project_Readme.html +++ b/samples/features/json/todo-app/dotnet-rest-api/Project_Readme.html @@ -128,58 +128,41 @@

This application consists of:

    -
  • Sample pages using ASP.NET Core MVC
  • -
  • Gulp and Bower for managing client-side libraries
  • -
  • Theming using Bootstrap
  • +
  • Simple database with one Todo table.
  • +
  • Simple Controller that implements CRUD operations on Todo table.
-

Run & Deploy

diff --git a/samples/features/json/dotnet-todo-rest-api/Properties/launchSettings.json b/samples/features/json/todo-app/dotnet-rest-api/Properties/launchSettings.json similarity index 100% rename from samples/features/json/dotnet-todo-rest-api/Properties/launchSettings.json rename to samples/features/json/todo-app/dotnet-rest-api/Properties/launchSettings.json diff --git a/samples/features/json/todo-app/dotnet-rest-api/README.md b/samples/features/json/todo-app/dotnet-rest-api/README.md new file mode 100644 index 00000000..baa935e0 --- /dev/null +++ b/samples/features/json/todo-app/dotnet-rest-api/README.md @@ -0,0 +1,78 @@ +# ASP.NET Core REST Web API that uses SQL/JSON functionalites + +This project contains an example implementation of ASP.NET Core REST API with CRUD operations on a simple Todo table. You can learn how to build REST API on the existing database schema using new JSON functionalities that are available in SQL Server 2016 (or higher) and Azure SQL Database. + +### Contents + +[About this sample](#about-this-sample)
+[Before you begin](#before-you-begin)
+[Run this sample](#run-this-sample)
+[Sample details](#sample-details)
+[Disclaimers](#disclaimers)
+[Related links](#related-links)
+ + + +## About this sample + +- **Applies to:** SQL Server 2016 (or higher), Azure SQL Database +- **Key features:** JSON Functions in SQL Server 2016/Azure SQL Database - FOR JSON and OPENJSON +- **Programming Language:** C# +- **Authors:** Jovan Popovic + + + +## Before you begin + +To run this sample, you need the following prerequisites. + +**Software prerequisites:** + +1. SQL Server 2016 (or higher) or an Azure SQL Database +2. Visual Studio 2015 (or higher) with the ASP.NET Core RC2 (or higher) + +**Azure prerequisites:** + +1. Permission to create an Azure SQL Database + + + +## Run this sample + +1. From SQL Server Management Studio or Sql Server Data Tools connect to your SQL Server 2016 or Azure SQL database and execute setup.sql script that will create and populate Todo table in the database. + +2. From Visual Studio, open the **TodoApp.xproj** file from the root directory, + +3. Locate Startup.cs file in the project, change connection string in ConfigureServices method to reference your database, and build solution using Ctrl+Shift+B, right-click on project + Build, or Build/Build Solution from menu. + +4. Run sample app using F5 or Ctrl+F5, +4.1. Open /api/Todo Url to get all Todo items as a JSON array, +4.2. Open /api/Todo/1 Url to get details about a single Todo item with id 1, +4.3. Send POST, PUT, PATCH, or DELETE Http requests to update content of Todo table. + + + +## Sample details + +This sample application shows how to create simple REST API service that performs CRUD operations on a simple Todo table. +ASP.NET Core Web API is used to implement REST Service in the example. +Service uses built-in JSON functionalities that are available in SQL Server 2016 and Azure SQL Database. + + + +## Disclaimers +The code included in this sample is not intended demonstrate some general guidances and arhitectural patterns for web development. It contains minimal code required to create REST API, and it does not use some patterns such as Repository. Sample uses built-in ASP.NET Core Dependency Injection mechanism; however, this is not prerequisite. +You can easily modify this code to fit the architecture of your application. + + + +## Related Links + +For more information, see this article: +http://www.codeproject.com/Articles/1106622/Building-Web-API-REST-services-on-Azure-SQL-Databa + +## License +These samples and templates are all licensed under the MIT license. See the license.txt file in the root. + +## Questions +Email questions to: sqlserversamples@microsoft.com. \ No newline at end of file diff --git a/samples/features/json/dotnet-todo-rest-api/Startup.cs b/samples/features/json/todo-app/dotnet-rest-api/Startup.cs similarity index 100% rename from samples/features/json/dotnet-todo-rest-api/Startup.cs rename to samples/features/json/todo-app/dotnet-rest-api/Startup.cs diff --git a/samples/features/json/dotnet-todo-rest-api/TodoApp.xproj b/samples/features/json/todo-app/dotnet-rest-api/TodoApp.xproj similarity index 100% rename from samples/features/json/dotnet-todo-rest-api/TodoApp.xproj rename to samples/features/json/todo-app/dotnet-rest-api/TodoApp.xproj diff --git a/samples/features/json/dotnet-todo-rest-api/app.config b/samples/features/json/todo-app/dotnet-rest-api/app.config similarity index 100% rename from samples/features/json/dotnet-todo-rest-api/app.config rename to samples/features/json/todo-app/dotnet-rest-api/app.config diff --git a/samples/features/json/dotnet-todo-rest-api/appsettings.json b/samples/features/json/todo-app/dotnet-rest-api/appsettings.json similarity index 100% rename from samples/features/json/dotnet-todo-rest-api/appsettings.json rename to samples/features/json/todo-app/dotnet-rest-api/appsettings.json diff --git a/samples/features/json/dotnet-todo-rest-api/project.json b/samples/features/json/todo-app/dotnet-rest-api/project.json similarity index 100% rename from samples/features/json/dotnet-todo-rest-api/project.json rename to samples/features/json/todo-app/dotnet-rest-api/project.json diff --git a/samples/features/json/dotnet-todo-rest-api/project.lock.json b/samples/features/json/todo-app/dotnet-rest-api/project.lock.json similarity index 100% rename from samples/features/json/dotnet-todo-rest-api/project.lock.json rename to samples/features/json/todo-app/dotnet-rest-api/project.lock.json diff --git a/samples/features/json/dotnet-todo-rest-api/web.config b/samples/features/json/todo-app/dotnet-rest-api/web.config similarity index 100% rename from samples/features/json/dotnet-todo-rest-api/web.config rename to samples/features/json/todo-app/dotnet-rest-api/web.config From 3aa76a3a21a19fe5e14b0683ac164e3c08bb38bc Mon Sep 17 00:00:00 2001 From: Jovan Popovic Date: Sat, 18 Jun 2016 16:24:22 +0200 Subject: [PATCH 04/12] Updated Project_Readme file Added better description. --- .../dotnet-rest-api/Project_Readme.html | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/samples/features/json/todo-app/dotnet-rest-api/Project_Readme.html b/samples/features/json/todo-app/dotnet-rest-api/Project_Readme.html index 4f6fa6eb..18deb892 100644 --- a/samples/features/json/todo-app/dotnet-rest-api/Project_Readme.html +++ b/samples/features/json/todo-app/dotnet-rest-api/Project_Readme.html @@ -123,6 +123,7 @@ position: absolute; bottom: 10px; } + @@ -133,7 +134,7 @@ In this example you can see how to easily create REST API with CRUD operations using ASP.NET Core Framework and built-in JSON functionalities in SQL Server 2016 and Azure SQL Database. -

This project is created using ASP.NET Core.

+

You can find detailed explanation in Code Project article.

@@ -145,14 +146,7 @@
-

Do you want to learn more?

- -
-
-

Run & Deploy

+

Run

  • Create new database on SQL Server 2016 or Azure SQL.
  • Execute setup.sql script to create Todo table and populate it with sample data
  • @@ -160,6 +154,13 @@
  • Run project and call REST api on /api/Todo URL.
+
+

Try REST Service

+
    +
  • Open /api/Todo or /api/Todo/1 URLs to try GET methods.
  • +
  • Use some tool that send POST, PUT, PATCH, or DELETE requests to web server (e.g. Chrome Poster) to try other methods.
  • +
+