diff --git a/.gitignore b/.gitignore index 8c74eeb..2b4a963 100644 --- a/.gitignore +++ b/.gitignore @@ -5,3 +5,4 @@ /bin/Debug/netcoreapp1.0 /obj/Debug/netcoreapp1.0 /.vs +/.vscode \ No newline at end of file diff --git a/Controllers/BusStopController.cs b/Controllers/BusStopController.cs new file mode 100755 index 0000000..ac17de7 --- /dev/null +++ b/Controllers/BusStopController.cs @@ -0,0 +1,169 @@ +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.Rendering; +using Microsoft.EntityFrameworkCore; +using Maps.Entities; + +namespace maps_core.Controllers +{ + public class BusStopController : Controller + { + private readonly PostgresDbContext _context; + + public BusStopController(PostgresDbContext context) + { + _context = context; + } + + // GET: BusStop + public async Task Index() + { + var postgresDbContext = _context.BusStop.Include(b => b.Region).Include(b => b.Road).Include(b => b.Settlement).Include(b => b.StateCommon).Include(b => b.SurfaceType); + return View(await postgresDbContext.ToListAsync()); + } + + // GET: BusStop/Details/5 + public async Task Details(int? id) + { + if (id == null) + { + return NotFound(); + } + + var busStop = await _context.BusStop.SingleOrDefaultAsync(m => m.BusStopId == id); + if (busStop == null) + { + return NotFound(); + } + + return View(busStop); + } + + // GET: BusStop/Create + public IActionResult Create() + { + ViewData["RegionId"] = new SelectList(_context.Region, "RegionId", "RegionId"); + ViewData["RoadId"] = new SelectList(_context.Road, "RoadId", "Name"); + ViewData["SettlementId"] = new SelectList(_context.Settlement, "SettlementId", "Name"); + ViewData["StateCommonId"] = new SelectList(_context.StateCommon, "StateCommonId", "Value"); + ViewData["SurfaceTypeId"] = new SelectList(_context.SurfaceType, "SurfaceTypeId", "Name"); + return View(); + } + + // POST: BusStop/Create + // To protect from overposting attacks, please enable the specific properties you want to bind to, for + // more details see http://go.microsoft.com/fwlink/?LinkId=317598. + [HttpPost] + [ValidateAntiForgeryToken] + public async Task Create([Bind("BusStopId,AreaLandAvailability,AreaStopAvailability,BalanceCost,BusStationCardId,CrossSectionNumber,DateActual,LocationLeft,LocationRight,PocketAvailability,Position,RegionId,RepairCertificate,RoadId,SettlementId,StateCommonId,SurfaceTypeId,ToiletAvailability,YearBuild,YearRepair")] BusStop busStop) + { + if (ModelState.IsValid) + { + _context.Add(busStop); + await _context.SaveChangesAsync(); + return RedirectToAction("Index"); + } + ViewData["RegionId"] = new SelectList(_context.Region, "RegionId", "RegionId", busStop.RegionId); + ViewData["RoadId"] = new SelectList(_context.Road, "RoadId", "RoadId", busStop.RoadId); + ViewData["SettlementId"] = new SelectList(_context.Settlement, "SettlementId", "Name", busStop.SettlementId); + ViewData["StateCommonId"] = new SelectList(_context.StateCommon, "StateCommonId", "StateCommonId", busStop.StateCommonId); + ViewData["SurfaceTypeId"] = new SelectList(_context.SurfaceType, "SurfaceTypeId", "SurfaceTypeId", busStop.SurfaceTypeId); + return View(busStop); + } + + // GET: BusStop/Edit/5 + public async Task Edit(int? id) + { + if (id == null) + { + return NotFound(); + } + + var busStop = await _context.BusStop.SingleOrDefaultAsync(m => m.BusStopId == id); + if (busStop == null) + { + return NotFound(); + } + ViewData["RegionId"] = new SelectList(_context.Region, "RegionId", "RegionId", busStop.RegionId); + ViewData["RoadId"] = new SelectList(_context.Road, "RoadId", "RoadId", busStop.RoadId); + ViewData["SettlementId"] = new SelectList(_context.Settlement, "SettlementId", "Name", busStop.SettlementId); + ViewData["StateCommonId"] = new SelectList(_context.StateCommon, "StateCommonId", "StateCommonId", busStop.StateCommonId); + ViewData["SurfaceTypeId"] = new SelectList(_context.SurfaceType, "SurfaceTypeId", "SurfaceTypeId", busStop.SurfaceTypeId); + return View(busStop); + } + + // POST: BusStop/Edit/5 + // To protect from overposting attacks, please enable the specific properties you want to bind to, for + // more details see http://go.microsoft.com/fwlink/?LinkId=317598. + [HttpPost] + [ValidateAntiForgeryToken] + public async Task Edit(int id, [Bind("BusStopId,AreaLandAvailability,AreaStopAvailability,BalanceCost,BusStationCardId,CrossSectionNumber,DateActual,LocationLeft,LocationRight,PocketAvailability,Position,RegionId,RepairCertificate,RoadId,SettlementId,StateCommonId,SurfaceTypeId,ToiletAvailability,YearBuild,YearRepair")] BusStop busStop) + { + if (id != busStop.BusStopId) + { + return NotFound(); + } + + if (ModelState.IsValid) + { + try + { + _context.Update(busStop); + await _context.SaveChangesAsync(); + } + catch (DbUpdateConcurrencyException) + { + if (!BusStopExists(busStop.BusStopId)) + { + return NotFound(); + } + else + { + throw; + } + } + return RedirectToAction("Index"); + } + ViewData["RegionId"] = new SelectList(_context.Region, "RegionId", "RegionId", busStop.RegionId); + ViewData["RoadId"] = new SelectList(_context.Road, "RoadId", "RoadId", busStop.RoadId); + ViewData["SettlementId"] = new SelectList(_context.Settlement, "SettlementId", "Name", busStop.SettlementId); + ViewData["StateCommonId"] = new SelectList(_context.StateCommon, "StateCommonId", "StateCommonId", busStop.StateCommonId); + ViewData["SurfaceTypeId"] = new SelectList(_context.SurfaceType, "SurfaceTypeId", "SurfaceTypeId", busStop.SurfaceTypeId); + return View(busStop); + } + + // GET: BusStop/Delete/5 + public async Task Delete(int? id) + { + if (id == null) + { + return NotFound(); + } + + var busStop = await _context.BusStop.SingleOrDefaultAsync(m => m.BusStopId == id); + if (busStop == null) + { + return NotFound(); + } + + return View(busStop); + } + + // POST: BusStop/Delete/5 + [HttpPost, ActionName("Delete")] + [ValidateAntiForgeryToken] + public async Task DeleteConfirmed(int id) + { + var busStop = await _context.BusStop.SingleOrDefaultAsync(m => m.BusStopId == id); + _context.BusStop.Remove(busStop); + await _context.SaveChangesAsync(); + return RedirectToAction("Index"); + } + + private bool BusStopExists(int id) + { + return _context.BusStop.Any(e => e.BusStopId == id); + } + } +} diff --git a/Startup.cs b/Startup.cs index 8840452..c1d7c92 100644 --- a/Startup.cs +++ b/Startup.cs @@ -7,7 +7,9 @@ using Microsoft.AspNetCore.Hosting; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Logging; - +using Microsoft.EntityFrameworkCore; +using Maps.Models; +using Maps.Entities; namespace Maps { public class Startup @@ -37,26 +39,24 @@ namespace Maps services.AddApplicationInsightsTelemetry(Configuration); services.AddMvc(); + + var connectionString = Configuration["DbContextSettings:ConnectionString"]; + services.AddDbContext(opts => opts.UseNpgsql(connectionString)); + } // 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.UseApplicationInsightsRequestTelemetry(); - if (env.IsDevelopment()) - { app.UseDeveloperExceptionPage(); app.UseBrowserLink(); - } - else - { - app.UseExceptionHandler("/Home/Error"); - } + + loggerFactory.AddConsole(Configuration.GetSection("Logging")); + loggerFactory.AddDebug(); + app.UseApplicationInsightsRequestTelemetry(); app.UseApplicationInsightsExceptionTelemetry(); app.UseStaticFiles(); diff --git a/Views/BusStop/Create.cshtml b/Views/BusStop/Create.cshtml new file mode 100755 index 0000000..51e3e35 --- /dev/null +++ b/Views/BusStop/Create.cshtml @@ -0,0 +1,148 @@ +@model Maps.Entities.BusStop + + + +
+
+

BusStop

+
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+
+ +
+ + +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+
+ +
+
+
+
+ + diff --git a/Views/BusStop/Delete.cshtml b/Views/BusStop/Delete.cshtml new file mode 100755 index 0000000..3bf71a3 --- /dev/null +++ b/Views/BusStop/Delete.cshtml @@ -0,0 +1,102 @@ +@model Maps.Entities.BusStop + + + +

Are you sure you want to delete this?

+
+

BusStop

+
+
+
+ @Html.DisplayNameFor(model => model.AreaLandAvailability) +
+
+ @Html.DisplayFor(model => model.AreaLandAvailability) +
+
+ @Html.DisplayNameFor(model => model.AreaStopAvailability) +
+
+ @Html.DisplayFor(model => model.AreaStopAvailability) +
+
+ @Html.DisplayNameFor(model => model.BalanceCost) +
+
+ @Html.DisplayFor(model => model.BalanceCost) +
+
+ @Html.DisplayNameFor(model => model.BusStationCardId) +
+
+ @Html.DisplayFor(model => model.BusStationCardId) +
+
+ @Html.DisplayNameFor(model => model.CrossSectionNumber) +
+
+ @Html.DisplayFor(model => model.CrossSectionNumber) +
+
+ @Html.DisplayNameFor(model => model.DateActual) +
+
+ @Html.DisplayFor(model => model.DateActual) +
+
+ @Html.DisplayNameFor(model => model.LocationLeft) +
+
+ @Html.DisplayFor(model => model.LocationLeft) +
+
+ @Html.DisplayNameFor(model => model.LocationRight) +
+
+ @Html.DisplayFor(model => model.LocationRight) +
+
+ @Html.DisplayNameFor(model => model.PocketAvailability) +
+
+ @Html.DisplayFor(model => model.PocketAvailability) +
+
+ @Html.DisplayNameFor(model => model.Position) +
+
+ @Html.DisplayFor(model => model.Position) +
+
+ @Html.DisplayNameFor(model => model.RepairCertificate) +
+
+ @Html.DisplayFor(model => model.RepairCertificate) +
+
+ @Html.DisplayNameFor(model => model.ToiletAvailability) +
+
+ @Html.DisplayFor(model => model.ToiletAvailability) +
+
+ @Html.DisplayNameFor(model => model.YearBuild) +
+
+ @Html.DisplayFor(model => model.YearBuild) +
+
+ @Html.DisplayNameFor(model => model.YearRepair) +
+
+ @Html.DisplayFor(model => model.YearRepair) +
+
+ +
+
+ | + Back to List +
+
+
diff --git a/Views/BusStop/Details.cshtml b/Views/BusStop/Details.cshtml new file mode 100755 index 0000000..ffb6d1f --- /dev/null +++ b/Views/BusStop/Details.cshtml @@ -0,0 +1,97 @@ +@model Maps.Entities.BusStop + + +
+

BusStop

+
+
+
+ @Html.DisplayNameFor(model => model.AreaLandAvailability) +
+
+ @Html.DisplayFor(model => model.AreaLandAvailability) +
+
+ @Html.DisplayNameFor(model => model.AreaStopAvailability) +
+
+ @Html.DisplayFor(model => model.AreaStopAvailability) +
+
+ @Html.DisplayNameFor(model => model.BalanceCost) +
+
+ @Html.DisplayFor(model => model.BalanceCost) +
+
+ @Html.DisplayNameFor(model => model.BusStationCardId) +
+
+ @Html.DisplayFor(model => model.BusStationCardId) +
+
+ @Html.DisplayNameFor(model => model.CrossSectionNumber) +
+
+ @Html.DisplayFor(model => model.CrossSectionNumber) +
+
+ @Html.DisplayNameFor(model => model.DateActual) +
+
+ @Html.DisplayFor(model => model.DateActual) +
+
+ @Html.DisplayNameFor(model => model.LocationLeft) +
+
+ @Html.DisplayFor(model => model.LocationLeft) +
+
+ @Html.DisplayNameFor(model => model.LocationRight) +
+
+ @Html.DisplayFor(model => model.LocationRight) +
+
+ @Html.DisplayNameFor(model => model.PocketAvailability) +
+
+ @Html.DisplayFor(model => model.PocketAvailability) +
+
+ @Html.DisplayNameFor(model => model.Position) +
+
+ @Html.DisplayFor(model => model.Position) +
+
+ @Html.DisplayNameFor(model => model.RepairCertificate) +
+
+ @Html.DisplayFor(model => model.RepairCertificate) +
+
+ @Html.DisplayNameFor(model => model.ToiletAvailability) +
+
+ @Html.DisplayFor(model => model.ToiletAvailability) +
+
+ @Html.DisplayNameFor(model => model.YearBuild) +
+
+ @Html.DisplayFor(model => model.YearBuild) +
+
+ @Html.DisplayNameFor(model => model.YearRepair) +
+
+ @Html.DisplayFor(model => model.YearRepair) +
+
+
+ \ No newline at end of file diff --git a/Views/BusStop/Edit.cshtml b/Views/BusStop/Edit.cshtml new file mode 100755 index 0000000..540a8a6 --- /dev/null +++ b/Views/BusStop/Edit.cshtml @@ -0,0 +1,153 @@ +@model Maps.Entities.BusStop + + +
+
+

BusStop

+
+
+ +
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+ +
+ + +
+
+
+
+ +
+
+
+
+ + diff --git a/Views/BusStop/Index.cshtml b/Views/BusStop/Index.cshtml new file mode 100755 index 0000000..1667375 --- /dev/null +++ b/Views/BusStop/Index.cshtml @@ -0,0 +1,109 @@ +@model IEnumerable + + +

+ Create New +

+ + + + + + + + + + + + + + + + + + + + + +@foreach (var item in Model) { + + + + + + + + + + + + + + + + + +} + +
+ @Html.DisplayNameFor(model => model.AreaLandAvailability) + + @Html.DisplayNameFor(model => model.AreaStopAvailability) + + @Html.DisplayNameFor(model => model.BalanceCost) + + @Html.DisplayNameFor(model => model.BusStationCardId) + + @Html.DisplayNameFor(model => model.CrossSectionNumber) + + @Html.DisplayNameFor(model => model.DateActual) + + @Html.DisplayNameFor(model => model.LocationLeft) + + @Html.DisplayNameFor(model => model.LocationRight) + + @Html.DisplayNameFor(model => model.PocketAvailability) + + @Html.DisplayNameFor(model => model.Position) + + @Html.DisplayNameFor(model => model.RepairCertificate) + + @Html.DisplayNameFor(model => model.ToiletAvailability) + + @Html.DisplayNameFor(model => model.YearBuild) + + @Html.DisplayNameFor(model => model.YearRepair) +
+ @Html.DisplayFor(modelItem => item.AreaLandAvailability) + + @Html.DisplayFor(modelItem => item.AreaStopAvailability) + + @Html.DisplayFor(modelItem => item.BalanceCost) + + @Html.DisplayFor(modelItem => item.BusStationCardId) + + @Html.DisplayFor(modelItem => item.CrossSectionNumber) + + @Html.DisplayFor(modelItem => item.DateActual) + + @Html.DisplayFor(modelItem => item.LocationLeft) + + @Html.DisplayFor(modelItem => item.LocationRight) + + @Html.DisplayFor(modelItem => item.PocketAvailability) + + @Html.DisplayFor(modelItem => item.Position) + + @Html.DisplayFor(modelItem => item.RepairCertificate) + + @Html.DisplayFor(modelItem => item.ToiletAvailability) + + @Html.DisplayFor(modelItem => item.YearBuild) + + @Html.DisplayFor(modelItem => item.YearRepair) + + Edit | + Details | + Delete +
+ diff --git a/appsettings.json b/appsettings.json index d6672fd..2d84f2f 100644 --- a/appsettings.json +++ b/appsettings.json @@ -1,13 +1,16 @@ { - "ApplicationInsights": { - "InstrumentationKey": "" - }, - "Logging": { - "IncludeScopes": false, - "LogLevel": { - "Default": "Debug", - "System": "Information", - "Microsoft": "Information" + "ApplicationInsights": { + "InstrumentationKey": "" + }, + "Logging": { + "IncludeScopes": false, + "LogLevel": { + "Default": "Debug", + "System": "Information", + "Microsoft": "Information" + } + }, + "DbContextSettings": { + "ConnectionString": "User ID=coremap;Password=5F9g4V9m;Host=195.248.225.149;Port=5432;Database=coremap;Pooling=true;" } - } -} +} \ No newline at end of file diff --git a/project.json b/project.json index eaab934..d64ed83 100644 --- a/project.json +++ b/project.json @@ -1,7 +1,7 @@ { "dependencies": { "Microsoft.NETCore.App": { - "version": "1.0.1", + "version": "1.1.0", "type": "platform" }, "Microsoft.ApplicationInsights.AspNetCore": "1.0.0", @@ -23,6 +23,14 @@ "Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0", "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0", "Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final", + "Microsoft.VisualStudio.Web.CodeGeneration.Tools": { + "version": "1.0.0-preview2-final", + "type": "build" + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": { + "version": "1.0.0-preview2-final", + "type": "build" + }, "Npgsql.EntityFrameworkCore.PostgreSQL": "1.0.2", "Npgsql.EntityFrameworkCore.PostgreSQL.Design": "1.0.2" }, @@ -34,40 +42,47 @@ "imports": "portable-net45+win8+dnxcore50" }, "Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview2-final", - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final" + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final", + "Microsoft.VisualStudio.Web.CodeGeneration.Tools": { + "version": "1.0.0-preview2-final", + "imports": [ + "portable-net45+win8" + ] + } }, - "frameworks": { - "netcoreapp1.0": { - "imports": [ - "dotnet5.6", - "portable-net45+win8" - ] - } - }, + "frameworks": { + "netcoreapp1.0": { + "imports": [ + "dotnet5.6", + "portable-net45+win8" + ] + } + }, - "buildOptions": { - "emitEntryPoint": true, - "preserveCompilationContext": true - }, + "buildOptions": { + "emitEntryPoint": true, + "preserveCompilationContext": true, + "debugType": "portable" + }, - "runtimeOptions": { - "configProperties": { - "System.GC.Server": true - } - }, + "runtimeOptions": { + "configProperties": { + "System.GC.Server": true + } + }, - "publishOptions": { - "include": [ - "wwwroot", - "**/*.cshtml", - "appsettings.json", - "web.config" - ] - }, + "publishOptions": { + "include": [ + "wwwroot", + "**/*.cshtml", + "appsettings.json", + "web.config" + ] + }, - "scripts": { - "prepublish": [ "bower install", "dotnet bundle" ], - "postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ] - } -} + "scripts": { + "prepublish": ["bower install", "dotnet bundle"], + "postpublish": ["dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%"] + } +} \ No newline at end of file diff --git a/project.lock.json b/project.lock.json old mode 100644 new mode 100755 index f966199..d3bc408 --- a/project.lock.json +++ b/project.lock.json @@ -3,7 +3,7 @@ "version": 2, "targets": { ".NETCoreApp,Version=v1.0": { - "Libuv/1.9.0": { + "Libuv/1.9.1": { "type": "package", "dependencies": { "Microsoft.NETCore.Platforms": "1.0.1" @@ -860,6 +860,19 @@ "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {} } }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/1.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp": "[1.3.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[1.3.0]" + }, + "compile": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} + } + }, "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { "type": "package", "dependencies": { @@ -872,6 +885,36 @@ "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll": {} } }, + "Microsoft.CodeAnalysis.Workspaces.Common/1.3.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[1.3.0]", + "Microsoft.Composition": "1.0.27" + }, + "compile": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {} + } + }, + "Microsoft.Composition/1.0.27": { + "type": "package", + "compile": { + "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll": {}, + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll": {}, + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll": {}, + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll": {}, + "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll": {} + }, + "runtime": { + "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll": {}, + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll": {}, + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll": {}, + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll": {}, + "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll": {} + } + }, "Microsoft.CSharp/4.0.1": { "type": "package", "dependencies": { @@ -1053,6 +1096,20 @@ "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll": {} } }, + "Microsoft.EntityFrameworkCore.SqlServer/1.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "1.0.0", + "System.Data.SqlClient": "4.1.0", + "System.Threading.Thread": "4.0.0" + }, + "compile": { + "lib/netstandard1.3/Microsoft.EntityFrameworkCore.SqlServer.dll": {} + }, + "runtime": { + "lib/netstandard1.3/Microsoft.EntityFrameworkCore.SqlServer.dll": {} + } + }, "Microsoft.EntityFrameworkCore.Tools/1.0.0-preview2-final": { "type": "package", "dependencies": { @@ -1558,10 +1615,10 @@ "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {} } }, - "Microsoft.NETCore.App/1.0.1": { + "Microsoft.NETCore.App/1.1.0": { "type": "package", "dependencies": { - "Libuv": "1.9.0", + "Libuv": "1.9.1", "Microsoft.CSharp": "4.0.1", "Microsoft.CodeAnalysis.CSharp": "1.3.0", "Microsoft.CodeAnalysis.VisualBasic": "1.3.0", @@ -1703,6 +1760,113 @@ "lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {} } }, + "Microsoft.VisualStudio.Web.CodeGeneration/1.0.0-preview2-final": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.CommandLineUtils": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "1.0.0-preview2-final", + "System.Linq.Expressions": "4.1.0" + }, + "compile": { + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/1.0.0-preview2-final": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121", + "Microsoft.Extensions.CommandLineUtils": "1.0.0", + "Microsoft.Extensions.DependencyInjection": "1.0.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "1.0.0-preview2-final", + "Newtonsoft.Json": "9.0.1", + "System.Console": "4.0.0", + "System.Diagnostics.Process": "4.1.0", + "System.Runtime.Serialization.Primitives": "4.1.1" + }, + "compile": { + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/1.0.0-preview2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Hosting": "1.0.0", + "Microsoft.AspNetCore.Server.Kestrel": "1.0.0", + "Microsoft.EntityFrameworkCore": "1.0.0", + "Microsoft.EntityFrameworkCore.SqlServer": "1.0.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Core": "1.0.0-preview2-final", + "System.AppContext": "4.1.0" + }, + "compile": { + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/1.0.0-preview2-final": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor": "1.0.0", + "Microsoft.CodeAnalysis.CSharp": "1.3.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "1.0.0-preview2-final" + }, + "compile": { + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Tools/1.0.0-preview2-final": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.App": "1.0.0", + "Microsoft.VisualStudio.Web.CodeGeneration": "1.0.0-preview2-final" + }, + "compile": { + "lib/netcoreapp1.0/dotnet-aspnet-codegenerator.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/dotnet-aspnet-codegenerator.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/1.0.0-preview2-final": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.CSharp.Workspaces": "1.3.0", + "Microsoft.DotNet.ProjectModel": "1.0.0-rc3-003121", + "Microsoft.Extensions.PlatformAbstractions": "1.0.0", + "System.AppContext": "4.1.0", + "System.Security.Cryptography.Algorithms": "4.2.0", + "System.Threading.Tasks.Parallel": "4.0.1" + }, + "compile": { + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/1.0.0-preview2-final": { + "type": "package", + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration": "1.0.0-preview2-final" + }, + "compile": { + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} + }, + "runtime": { + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} + } + }, "Microsoft.Win32.Primitives/4.0.1": { "type": "package", "dependencies": { @@ -2135,6 +2299,13 @@ "lib/netstandard1.0/_._": {} } }, + "runtime.native.System.Data.SqlClient.sni/4.0.0": { + "type": "package", + "dependencies": { + "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni": "4.0.1", + "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni": "4.0.1" + } + }, "runtime.native.System.IO.Compression/4.1.0": { "type": "package", "dependencies": { @@ -2187,6 +2358,24 @@ "lib/netstandard1.0/_._": {} } }, + "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.0.1": { + "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": { + "type": "package", + "runtimeTargets": { + "runtimes/win7-x86/native/sni.dll": { + "assetType": "native", + "rid": "win7-x86" + } + } + }, "System.AppContext/4.1.0": { "type": "package", "dependencies": { @@ -2410,6 +2599,61 @@ "lib/netstandard1.2/System.Data.Common.dll": {} } }, + "System.Data.SqlClient/4.1.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "Microsoft.Win32.Primitives": "4.0.1", + "System.Collections": "4.0.11", + "System.Collections.Concurrent": "4.0.12", + "System.Data.Common": "4.1.0", + "System.Diagnostics.Debug": "4.0.11", + "System.Diagnostics.DiagnosticSource": "4.0.0", + "System.Globalization": "4.0.11", + "System.IO": "4.1.0", + "System.IO.Pipes": "4.0.0", + "System.Linq": "4.1.0", + "System.Net.NameResolution": "4.0.0", + "System.Net.Primitives": "4.0.11", + "System.Net.Security": "4.0.0", + "System.Net.Sockets": "4.1.0", + "System.Reflection": "4.1.0", + "System.Reflection.TypeExtensions": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0", + "System.Security.Cryptography.X509Certificates": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Security.Principal.Windows": "4.0.0", + "System.Text.Encoding": "4.0.11", + "System.Text.Encoding.CodePages": "4.0.1", + "System.Text.Encoding.Extensions": "4.0.11", + "System.Text.RegularExpressions": "4.1.0", + "System.Threading": "4.0.11", + "System.Threading.Tasks": "4.0.11", + "System.Threading.Thread": "4.0.0", + "System.Threading.ThreadPool": "4.0.10", + "System.Threading.Timer": "4.0.1", + "System.Xml.ReaderWriter": "4.0.11", + "runtime.native.System.Data.SqlClient.sni": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/System.Data.SqlClient.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "System.Diagnostics.Contracts/4.0.1": { "type": "package", "dependencies": { @@ -2830,6 +3074,42 @@ } } }, + "System.IO.Pipes/4.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.0.1", + "System.Diagnostics.Debug": "4.0.11", + "System.IO": "4.1.0", + "System.IO.FileSystem.Primitives": "4.0.1", + "System.Net.Primitives": "4.0.11", + "System.Net.Sockets": "4.1.0", + "System.Reflection": "4.1.0", + "System.Resources.ResourceManager": "4.0.1", + "System.Runtime": "4.1.0", + "System.Runtime.Extensions": "4.1.0", + "System.Runtime.Handles": "4.0.1", + "System.Runtime.InteropServices": "4.1.0", + "System.Security.Principal": "4.0.1", + "System.Text.Encoding": "4.0.11", + "System.Threading": "4.0.11", + "System.Threading.Overlapped": "4.0.1", + "System.Threading.Tasks": "4.0.11", + "runtime.native.System": "4.0.0" + }, + "compile": { + "ref/netstandard1.3/_._": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "System.IO.UnmanagedMemoryStream/4.0.1": { "type": "package", "dependencies": { @@ -4154,12 +4434,12 @@ } }, "libraries": { - "Libuv/1.9.0": { - "sha512": "9Q7AaqtQhS8JDSIvRBt6ODSLWDBI4c8YxNxyCQemWebBFUtBbc6M5Vi5Gz1ZyIUlTW3rZK9bIr5gnVyv0z7a2Q==", + "Libuv/1.9.1": { + "sha512": "zW5+bcQ+GozqxLMm0jHSAjkROnBpkdeT3XEara90TPHHnIAaOdgBZaqO6JTL3S2MXc5Cw/5XJBQFzUq7TAKw1Q==", "type": "package", - "path": "Libuv/1.9.0", + "path": "Libuv/1.9.1", "files": [ - "Libuv.1.9.0.nupkg.sha512", + "Libuv.1.9.1.nupkg.sha512", "Libuv.nuspec", "License.txt", "runtimes/debian-x64/native/libuv.so", @@ -4721,7 +5001,7 @@ ] }, "Microsoft.CodeAnalysis.Analyzers/1.1.0": { - "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", + "sha512": "mZ7X7SKbWVNomc9F3DVK8E1tqVIo/0NmzPmNo3gGVqCzxyWfouMFX8CdQeyQOPrH8Ak5Q776isYybNJCLBGE+w==", "type": "package", "path": "Microsoft.CodeAnalysis.Analyzers/1.1.0", "files": [ @@ -4737,7 +5017,7 @@ ] }, "Microsoft.CodeAnalysis.Common/1.3.0": { - "sha512": "V09G35cs0CT1C4Dr1IEOh8IGfnWALEVAOO5JXsqagxXwmYR012TlorQ+vx2eXxfZRKs3gAS/r92gN9kRBLba5A==", + "sha512": "Wy6JsH6wIUYDdBD7XZ4F55sF7WYQD3CmpT1fxgQiK5jWWCzawM6K3CzLgPxrTeK+7xeWnsC053sEAi6oopGO6g==", "type": "package", "path": "Microsoft.CodeAnalysis.Common/1.3.0", "files": [ @@ -4753,7 +5033,7 @@ ] }, "Microsoft.CodeAnalysis.CSharp/1.3.0": { - "sha512": "BgWDIAbSFsHuGeLSn/rljLi51nXqkSo4DZ0qEIrHyPVasrhxEVq7aV8KKZ3HEfSFB+GIhBmOogE+mlOLYg19eg==", + "sha512": "Qq/4Q+m24G8foejmTGjWSpwlVSQZwTFKohYGK7TBSWW0owlNNkqSi55z2MBMmMxdLK3ALSSmjLkHu+5x8KQ0Ug==", "type": "package", "path": "Microsoft.CodeAnalysis.CSharp/1.3.0", "files": [ @@ -4768,8 +5048,24 @@ "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml" ] }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/1.3.0": { + "sha512": "wYqbzi7CEhj669g/QmBGKQdzqMDViz/7MeNAQwlbRZf8zhSQ8oYGDUXO0QaPfbpyarhVB1QOBnVdGr3c/mtibQ==", + "type": "package", + "path": "Microsoft.CodeAnalysis.CSharp.Workspaces/1.3.0", + "files": [ + "Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.0.nupkg.sha512", + "Microsoft.CodeAnalysis.CSharp.Workspaces.nuspec", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net45/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.Workspaces.xml" + ] + }, "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { - "sha512": "Sf3k8PkTkWqBmXnnblJbvb7ewO6mJzX6WO2t7m04BmOY5qBq6yhhyXnn/BMM+QCec3Arw3X35Zd8f9eBql0qgg==", + "sha512": "LHl3sV+dP+pOnk3jpWywCCzf7tQ4+wVLhqi85ojeCRh3hn+w2RMQwWoC/URbUs9+4vmn2753rAxI9BZHbLvraw==", "type": "package", "path": "Microsoft.CodeAnalysis.VisualBasic/1.3.0", "files": [ @@ -4784,8 +5080,46 @@ "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml" ] }, + "Microsoft.CodeAnalysis.Workspaces.Common/1.3.0": { + "sha512": "dfH9HlSgfjGMkHaaKRkO28ycwtruLpZfqHTb+LPqhQlsqaHUNG5x7ezzEMENKMepeqZq6KCFSGtFR5JgLXXoqA==", + "type": "package", + "path": "Microsoft.CodeAnalysis.Workspaces.Common/1.3.0", + "files": [ + "Microsoft.CodeAnalysis.Workspaces.Common.1.3.0.nupkg.sha512", + "Microsoft.CodeAnalysis.Workspaces.Common.nuspec", + "ThirdPartyNotices.rtf", + "lib/net45/Microsoft.CodeAnalysis.Workspaces.Desktop.dll", + "lib/net45/Microsoft.CodeAnalysis.Workspaces.Desktop.xml", + "lib/net45/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net45/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/portable-net45+win8/Microsoft.CodeAnalysis.Workspaces.xml" + ] + }, + "Microsoft.Composition/1.0.27": { + "sha512": "pwu80Ohe7SBzZ6i69LVdzowp6V+LaVRzd5F7A6QlD42vQkX0oT7KXKWWPlM/S00w1gnMQMRnEdbtOV12z6rXdQ==", + "type": "package", + "path": "Microsoft.Composition/1.0.27", + "files": [ + "License-Stable.rtf", + "Microsoft.Composition.1.0.27.nupkg.sha512", + "Microsoft.Composition.nuspec", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.XML", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.XML", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.XML", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.XML", + "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll" + ] + }, "Microsoft.CSharp/4.0.1": { - "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", + "sha512": "H3Jsvm5NWBcysbFXBO5NySDucHbmd4uP7LoL9+GnO7NLMO1lb2ycM01apsbLwbMB1qZtSFT2NGHzSLVD0xXPTQ==", "type": "package", "path": "Microsoft.CSharp/4.0.1", "files": [ @@ -4952,6 +5286,19 @@ "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.xml" ] }, + "Microsoft.EntityFrameworkCore.SqlServer/1.0.0": { + "sha512": "zLPrmmZ2b4jM3Hezf4dP2oIVREeXlXfcyNDX4mBZ6xcW+QauxyDpzrB86mnEF1quBdkpbZhv7T+ZbS9XS6Hqdg==", + "type": "package", + "path": "Microsoft.EntityFrameworkCore.SqlServer/1.0.0", + "files": [ + "Microsoft.EntityFrameworkCore.SqlServer.1.0.0.nupkg.sha512", + "Microsoft.EntityFrameworkCore.SqlServer.nuspec", + "lib/net451/Microsoft.EntityFrameworkCore.SqlServer.dll", + "lib/net451/Microsoft.EntityFrameworkCore.SqlServer.xml", + "lib/netstandard1.3/Microsoft.EntityFrameworkCore.SqlServer.dll", + "lib/netstandard1.3/Microsoft.EntityFrameworkCore.SqlServer.xml" + ] + }, "Microsoft.EntityFrameworkCore.Tools/1.0.0-preview2-final": { "sha512": "x+OkqEMERFJY9cAFBZsNPEmZEApAakay2yhE3CD+nyc+HtJDFbyX+spcnOxUjZ2w+YqAdzT6L3DzjlCbRLv9vQ==", "type": "package", @@ -5340,12 +5687,12 @@ "lib/netstandard1.1/Microsoft.Net.Http.Headers.xml" ] }, - "Microsoft.NETCore.App/1.0.1": { - "sha512": "M3iH7u95LntTkJtI/DqN/96MRlb8Wa0SjnXldxHA4FjlvEqghOhwK087bDZAZaTN9C4YHckvaYH3ka9eYWZZZw==", + "Microsoft.NETCore.App/1.1.0": { + "sha512": "efaKcn0itjhJMbVcwZMMvnlvl3rNTSoGy79ONV2tAxj0oMqWGH3YH5+PY2I2yEePPxZU68a5BRCCmdf99zokbg==", "type": "package", - "path": "Microsoft.NETCore.App/1.0.1", + "path": "Microsoft.NETCore.App/1.1.0", "files": [ - "Microsoft.NETCore.App.1.0.1.nupkg.sha512", + "Microsoft.NETCore.App.1.1.0.nupkg.sha512", "Microsoft.NETCore.App.nuspec", "ThirdPartyNotices.txt", "dotnet_library_license.txt", @@ -5353,7 +5700,7 @@ ] }, "Microsoft.NETCore.DotNetHost/1.0.1": { - "sha512": "uaMgykq6AckP3hZW4dsD6zjocxyXPz0tcTl8OX7mlSUWsyFXdtf45sjdwI0JIHxt3gnI6GihAlOAwYK8HE4niQ==", + "sha512": "ZZQIzyvG4ipNcWcgRulx5oHwykAw9SnPFQw8I/TGYZtjcQLIRoWcjL6caQThoROp+zseg+meOFwm5zuJ3pS2xg==", "type": "package", "path": "Microsoft.NETCore.DotNetHost/1.0.1", "files": [ @@ -5365,7 +5712,7 @@ ] }, "Microsoft.NETCore.DotNetHostPolicy/1.0.1": { - "sha512": "d8AQ+ZVj2iK9sbgl3IEsshCSaumhM1PNTPHxldZAQLOoI1BKF8QZ1zPCNqwBGisPiWOE3f/1SHDbQi1BTRBxuA==", + "sha512": "CTWrcF95uyC5udainq1lW2R2Wg58DEvF6+uWiQFODw5nkRnitRs2TpuVMnHA60akB0qDGdqR4EgjEpaKJ9OTOA==", "type": "package", "path": "Microsoft.NETCore.DotNetHostPolicy/1.0.1", "files": [ @@ -5377,7 +5724,7 @@ ] }, "Microsoft.NETCore.DotNetHostResolver/1.0.1": { - "sha512": "GEXgpAHB9E0OhfcmNJ664Xcd2bJkz2qkGIAFmCgEI5ANlQy4qEEmBVfUqA+Z9HB85ZwWxZc1eIJ6fxdxcjrctg==", + "sha512": "3We3ly0LqCkfw9yFDAJrXnG+uihWMQxWlUPRHDFKmkm+7j+z5Q1Sdwc0vWl+l7rGFXQvUe2IImUQ5JUekFtyhQ==", "type": "package", "path": "Microsoft.NETCore.DotNetHostResolver/1.0.1", "files": [ @@ -5389,7 +5736,7 @@ ] }, "Microsoft.NETCore.Jit/1.0.4": { - "sha512": "IcHTGj+vTFcOu7/flwNg+CWIfTsxqHWgj08MKOtYwS5k0EuLvx6PrYsn7vHCV0SUTk1zbQ1l0EJj1UdxTMyx4w==", + "sha512": "s336ryZlopR+pQ4VfKlILX1LxiQzpCPnmiGot0p5aFPeCjwmKtHC88MI8jXdvdGPySON9i1bPUKJP8jiiPIAjA==", "type": "package", "path": "Microsoft.NETCore.Jit/1.0.4", "files": [ @@ -5401,7 +5748,7 @@ ] }, "Microsoft.NETCore.Platforms/1.0.1": { - "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==", + "sha512": "4pLZmTDYPL6NZ24vRdF1zg3dx/wFNeTyj7Pneyrcj1/W8Gkcgj7CGpCCBfn1JHP/WuCDdk233oUFyWQwF2NovQ==", "type": "package", "path": "Microsoft.NETCore.Platforms/1.0.1", "files": [ @@ -5414,7 +5761,7 @@ ] }, "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": { - "sha512": "r4/aP7VYcJ+W/rJVFU+jAdjF4KrsHRDYQJ+p8weUP5n65yLzWXlQTVY6OsR560aV5EF7jc65dqsNXIryUCrEkQ==", + "sha512": "NTd+F7MQJi5wFh6Hq3uVH0L3om+pVcfF+bpw0hSd+Ka92QSZ4IfDJw/IWqTQ9jUtLyWYR4XR+52HD5HW+a+zoQ==", "type": "package", "path": "Microsoft.NETCore.Runtime.CoreCLR/1.0.4", "files": [ @@ -5426,7 +5773,7 @@ ] }, "Microsoft.NETCore.Targets/1.0.1": { - "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", + "sha512": "w5ZpDo1AOK0oGD3SQ+7lFgQZ4AcUf2bYUDn+LWXXMquUnKqqo/bOrRtsXSFxIAL5ME4vnQwVOo3Iu9A8ohlQvw==", "type": "package", "path": "Microsoft.NETCore.Targets/1.0.1", "files": [ @@ -5439,7 +5786,7 @@ ] }, "Microsoft.NETCore.Windows.ApiSets/1.0.1": { - "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", + "sha512": "qx33A8SlpxRtTnfv5h1R/aI/qLjBcZEix46IN9phdOcOdt63F/PjzPjmoYd/V1KmmpF4vaM9cCR4UM/lgUg5VQ==", "type": "package", "path": "Microsoft.NETCore.Windows.ApiSets/1.0.1", "files": [ @@ -5451,7 +5798,7 @@ ] }, "Microsoft.VisualBasic/10.0.1": { - "sha512": "HpNyOf/4Tp2lh4FyywB55VITk0SqVxEjDzsVDDyF1yafDN6Bq18xcHowzCPINyYHUTgGcEtmpYiRsFdSo0KKdQ==", + "sha512": "d7fOdtAxPvTfNmS08uYYZJwDy8D2OhQKkBD+irNarIC88YNlVIE0Tm5zLtw7stvuZGEzjDEGkSzwYbmkYoWwig==", "type": "package", "path": "Microsoft.VisualBasic/10.0.1", "files": [ @@ -5506,8 +5853,137 @@ "lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.xml" ] }, + "Microsoft.VisualStudio.Web.CodeGeneration/1.0.0-preview2-final": { + "sha512": "WmQR9kFKvbN0sdLhm1nJ3cXHC7ftkkYhBHkWFG2pxBA2g4aITu6//rBbZaruTrUouafjg+V+YTHdx334jVbu1g==", + "type": "package", + "path": "Microsoft.VisualStudio.Web.CodeGeneration/1.0.0-preview2-final", + "files": [ + "Microsoft.VisualStudio.Web.CodeGeneration.1.0.0-preview2-final.nupkg.sha512", + "Microsoft.VisualStudio.Web.CodeGeneration.nuspec", + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.dll", + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.xml", + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.dll", + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.xml" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/1.0.0-preview2-final": { + "sha512": "zECd6a+ZKVIIyZ/Nm7uP0NpZ0pOBs1jfQx+qiZYplNOJJC3R23/PGfdMvvX4B2beNxY6OAw0VkvRqxozQYId2g==", + "type": "package", + "path": "Microsoft.VisualStudio.Web.CodeGeneration.Core/1.0.0-preview2-final", + "files": [ + "Microsoft.VisualStudio.Web.CodeGeneration.Core.1.0.0-preview2-final.nupkg.sha512", + "Microsoft.VisualStudio.Web.CodeGeneration.Core.nuspec", + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll", + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml", + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll", + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/1.0.0-preview2-final": { + "sha512": "UDq8EM9syllYFfJXgMYcdRVaq1iVGgG7HfrPOV9KQGzF13XFygVvAqmJGCCoWeDoxSBuhox3Vh0XK9NcWo6hZw==", + "type": "package", + "path": "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/1.0.0-preview2-final", + "files": [ + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.1.0.0-preview2-final.nupkg.sha512", + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.nuspec", + "Templates/DbContext/NewLocalDbContext.cshtml", + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll", + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml", + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll", + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/1.0.0-preview2-final": { + "sha512": "FjChh/YE6gm1pKXKsCbxWlmHO8CKTXn7CUUOSeNrF1+Iz/qST+CzbsZvBv/FaEk4162I3T5VMVTgCa2haitMZw==", + "type": "package", + "path": "Microsoft.VisualStudio.Web.CodeGeneration.Templating/1.0.0-preview2-final", + "files": [ + "Microsoft.VisualStudio.Web.CodeGeneration.Templating.1.0.0-preview2-final.nupkg.sha512", + "Microsoft.VisualStudio.Web.CodeGeneration.Templating.nuspec", + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll", + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml", + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll", + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Tools/1.0.0-preview2-final": { + "sha512": "Qm9HVBgHV4jdRjCw8MCg+8cvkY/x8XShmhsTMYdfF9+83LLaxwBnPwntnDKWybeIa9dJTZ1K+ffQtt3zKfgzSQ==", + "type": "package", + "path": "Microsoft.VisualStudio.Web.CodeGeneration.Tools/1.0.0-preview2-final", + "files": [ + "Microsoft.VisualStudio.Web.CodeGeneration.Tools.1.0.0-preview2-final.nupkg.sha512", + "Microsoft.VisualStudio.Web.CodeGeneration.Tools.nuspec", + "lib/net451/dotnet-aspnet-codegenerator.exe", + "lib/net451/dotnet-aspnet-codegenerator.xml", + "lib/netcoreapp1.0/dotnet-aspnet-codegenerator.dll", + "lib/netcoreapp1.0/dotnet-aspnet-codegenerator.runtimeconfig.json", + "lib/netcoreapp1.0/dotnet-aspnet-codegenerator.xml", + "runtimes/win7-x64/lib/net451/dotnet-aspnet-codegenerator.exe", + "runtimes/win7-x86/lib/net451/dotnet-aspnet-codegenerator.exe" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/1.0.0-preview2-final": { + "sha512": "FuenOwZaiidkU/PylN8DK9bTZTYlqudkDOcPUCdPGjn5kcwnPagwMT4pcZbep3b7iT0FaDDCXZyDMjnjLFHi+g==", + "type": "package", + "path": "Microsoft.VisualStudio.Web.CodeGeneration.Utils/1.0.0-preview2-final", + "files": [ + "Microsoft.VisualStudio.Web.CodeGeneration.Utils.1.0.0-preview2-final.nupkg.sha512", + "Microsoft.VisualStudio.Web.CodeGeneration.Utils.nuspec", + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll", + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml", + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll", + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml" + ] + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/1.0.0-preview2-final": { + "sha512": "7Npb0ypZ0Ba1oCv7T5GWF+gJTmJz7b8VzvsysRQxhJFz0LgFx3hHu81cKj9/WYf9JBObkt8trwAwec3qrOytGQ==", + "type": "package", + "path": "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/1.0.0-preview2-final", + "files": [ + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc.1.0.0-preview2-final.nupkg.sha512", + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc.nuspec", + "THIRDPARTYNOTICE ASP.NET_Preview.rtf", + "Templates/ControllerGenerator/ApiControllerWIthActions.cshtml", + "Templates/ControllerGenerator/ApiControllerWithContext.cshtml", + "Templates/ControllerGenerator/ApiEmptyController.cshtml", + "Templates/ControllerGenerator/ControllerWithActions.cshtml", + "Templates/ControllerGenerator/EmptyController.cshtml", + "Templates/ControllerGenerator/MvcControllerWithContext.cshtml", + "Templates/MvcLayout/Error.cshtml", + "Templates/MvcLayout/_Layout.cshtml", + "Templates/Startup/ReadMe.cshtml", + "Templates/Startup/Startup.cshtml", + "Templates/StaticFiles/Content/Site.css", + "Templates/StaticFiles/Content/bootstrap.css", + "Templates/StaticFiles/Content/bootstrap.min.css", + "Templates/StaticFiles/Scripts/_references.js", + "Templates/StaticFiles/Scripts/bootstrap.js", + "Templates/StaticFiles/Scripts/bootstrap.min.js", + "Templates/StaticFiles/Scripts/jquery-1.10.2.intellisense.js", + "Templates/StaticFiles/Scripts/jquery-1.10.2.js", + "Templates/StaticFiles/Scripts/jquery-1.10.2.min.js", + "Templates/StaticFiles/Scripts/jquery-1.10.2.min.map", + "Templates/StaticFiles/Scripts/jquery.validate-vsdoc.js", + "Templates/StaticFiles/Scripts/jquery.validate.js", + "Templates/StaticFiles/Scripts/jquery.validate.min.js", + "Templates/StaticFiles/Scripts/jquery.validate.unobtrusive.js", + "Templates/StaticFiles/Scripts/jquery.validate.unobtrusive.min.js", + "Templates/StaticFiles/Scripts/modernizr-2.6.2.js", + "Templates/StaticFiles/Scripts/respond.js", + "Templates/StaticFiles/Scripts/respond.min.js", + "Templates/ViewGenerator/Create.cshtml", + "Templates/ViewGenerator/Delete.cshtml", + "Templates/ViewGenerator/Details.cshtml", + "Templates/ViewGenerator/Edit.cshtml", + "Templates/ViewGenerator/List.cshtml", + "lib/net451/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll", + "lib/net451/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml", + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll", + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml" + ] + }, "Microsoft.Win32.Primitives/4.0.1": { - "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", + "sha512": "bVKlfQ+hYNw/b17n74zGSs6AKBHHsqNWAfZbpq+M2y5rnK0YICD1j+j4qYYYmaS00lY65ZGtcpMspHzDpP0Ryg==", "type": "package", "path": "Microsoft.Win32.Primitives/4.0.1", "files": [ @@ -5543,7 +6019,7 @@ ] }, "Microsoft.Win32.Registry/4.0.0": { - "sha512": "q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==", + "sha512": "TDI6KVc0bMVejExiNeVt1STStqbTU3+4KDvhoAikMmHdKcuImG4oP73ql5dLUWLaI+Es8YMNnZyhBVs7coSZ/Q==", "type": "package", "path": "Microsoft.Win32.Registry/4.0.0", "files": [ @@ -5571,7 +6047,7 @@ ] }, "NETStandard.Library/1.6.0": { - "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==", + "sha512": "amUCAUi8xpemiV7x2cpelz2HtUpl7IB76+bitV2jAMSMZk9K95ncsd84xB2o38bmRZ4wug4MSBBJC2CQa5FXow==", "type": "package", "path": "NETStandard.Library/1.6.0", "files": [ @@ -5846,7 +6322,7 @@ ] }, "runtime.native.System/4.0.0": { - "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==", + "sha512": "elTXdRYI5NF8d07EGMy9gwXmbIPjh8F8M6/YXikNVnvfPC/cQXgzyWo85VMZf+MJSE6rbkF6ep0FY7JSU1aDfw==", "type": "package", "path": "runtime.native.System/4.0.0", "files": [ @@ -5857,8 +6333,19 @@ "runtime.native.System.nuspec" ] }, + "runtime.native.System.Data.SqlClient.sni/4.0.0": { + "sha512": "DcMVtYwugo1LOc9MVchInxlLNoFe/+21MsEQU9yIZX561chzxDlFDWowWF+Kc262PyD3eLkDab1JyJrs73Qtkg==", + "type": "package", + "path": "runtime.native.System.Data.SqlClient.sni/4.0.0", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.native.System.Data.SqlClient.sni.4.0.0.nupkg.sha512", + "runtime.native.System.Data.SqlClient.sni.nuspec" + ] + }, "runtime.native.System.IO.Compression/4.1.0": { - "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==", + "sha512": "oji/xoYJui/Mb0Ml/Beg2ub2mixnbZdwuV+Kf4QGqLtBnxidfJmg+rjeNvfF70EDJLejcHFK7kBoz30dx+7slw==", "type": "package", "path": "runtime.native.System.IO.Compression/4.1.0", "files": [ @@ -5870,7 +6357,7 @@ ] }, "runtime.native.System.Net.Http/4.0.1": { - "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==", + "sha512": "4UqAQwd+PzUh7VhpgVRyvZkUyCMSlsyzUdLe0ziLvF3H4dSzLm/4EGmWLrShvE6dEydWhFoSc9MpX4WIcdSh3g==", "type": "package", "path": "runtime.native.System.Net.Http/4.0.1", "files": [ @@ -5882,7 +6369,7 @@ ] }, "runtime.native.System.Net.Security/4.0.1": { - "sha512": "Az6Ff6rZFb8nYGAaejFR6jr8ktt9f3e1Q/yKdw0pwHNTLaO/1eCAC9vzBoR9YAb0QeZD6fZXl1A9tRB5stpzXA==", + "sha512": "8YS1dnYbcRTZx4RHwoBwuW8tww8mk7kM3nT4lGJD9M89E+geSyXuZlFOjT5mKTSuC/I2ehG/xkWA9zWNencDew==", "type": "package", "path": "runtime.native.System.Net.Security/4.0.1", "files": [ @@ -5894,7 +6381,7 @@ ] }, "runtime.native.System.Security.Cryptography/4.0.0": { - "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", + "sha512": "+FQS/TIkzHXkRjcYJRTjNgeraMmY/G2V0ll7IynCJDqr4B6ZVD6ilgGODh8o7NigI6N/Ac3GO8HyaFmnhUnT4A==", "type": "package", "path": "runtime.native.System.Security.Cryptography/4.0.0", "files": [ @@ -5905,8 +6392,32 @@ "runtime.native.System.Security.Cryptography.nuspec" ] }, + "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.0.1": { + "sha512": "My20HZqJbDS4rWmdOcJ3TPf9iX6M/sTF2nBSUHBvfWp1iNip3eMS+K65oQgsLRxX6h21ic3YED06c2ye2sL7FQ==", + "type": "package", + "path": "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.0.1", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.4.0.1.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": { + "sha512": "ykiYCf/0hIc0xm+g6bVX8nw9St5Ool+r4US+B+56Lv/GFnDG5G9BK4n7WkrwEpuWV3XjMn38oHgHOnNMzBVNKA==", + "type": "package", + "path": "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.0.1", + "files": [ + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.4.0.1.nupkg.sha512", + "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.nuspec", + "runtimes/win7-x86/native/sni.dll" + ] + }, "System.AppContext/4.1.0": { - "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", + "sha512": "Mw+ZvwDDxFNZasou4+lbUxmNLSY15LHVuU3D4e9fKvVzCm7v5YHVvFJs9uXEXuKu9NrY24v5tQYGYsfFvXufHw==", "type": "package", "path": "System.AppContext/4.1.0", "files": [ @@ -5959,7 +6470,7 @@ ] }, "System.Buffers/4.0.0": { - "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==", + "sha512": "gDRyGoBWkeg0plXeA6pkT6LamIEhfeY4FLCchE2qycjU8vptl7fktcbQvZwSyiRMknzRz+y/bC5FtgN0NZx5aA==", "type": "package", "path": "System.Buffers/4.0.0", "files": [ @@ -5972,7 +6483,7 @@ ] }, "System.Collections/4.0.11": { - "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", + "sha512": "UN4/kvaYw0gizXQqhzpO/1tQrDQLO5RHTuXYHbrHi+0HYSXj5CgOQjefYveieptr/Qpkp4t3DkT9GA4EW9QIkw==", "type": "package", "path": "System.Collections/4.0.11", "files": [ @@ -6038,7 +6549,7 @@ ] }, "System.Collections.Concurrent/4.0.12": { - "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", + "sha512": "ebzF7Rut3oEdrShy3bBS8V10D/iyQX705etD5D2tIXKqDlUcdH0wbZ01LEizFwCF8FFbd7eEJmjZnCcuWxM1Tg==", "type": "package", "path": "System.Collections.Concurrent/4.0.12", "files": [ @@ -6104,7 +6615,7 @@ ] }, "System.Collections.Immutable/1.2.0": { - "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==", + "sha512": "M75E96k3tF4Ow72WL7aUGnC3zsQj5H9V68WlnyCHSBb5f3Bl+f/ihrfUKbAJJKXhBHhaYIuutaMqboiU4MVcfg==", "type": "package", "path": "System.Collections.Immutable/1.2.0", "files": [ @@ -6193,7 +6704,7 @@ ] }, "System.ComponentModel/4.0.1": { - "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", + "sha512": "cRIuXvk7SIXLZLBzqoMGN/qlYlx3xTQCgbMtfbSIq7sTZp1bYt2ZHP++9bA/b+6p40GFItqKHxGkW/xJkeAB6A==", "type": "package", "path": "System.ComponentModel/4.0.1", "files": [ @@ -6250,7 +6761,7 @@ ] }, "System.ComponentModel.Annotations/4.1.0": { - "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==", + "sha512": "pkgN+OLuo65Xnvz+TNiVXrc+X49JqoeU8M18EfUolRhqsaO1a6r5AG/UqGa00m75nFhsQPjZqkl1vhYF4IG2LA==", "type": "package", "path": "System.ComponentModel.Annotations/4.1.0", "files": [ @@ -6415,7 +6926,7 @@ ] }, "System.Console/4.0.0": { - "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", + "sha512": "mrL8nA6xBe/f3EysjD+TBGgubZVt/tvYwwIW8mcZW2xtxO1YPU++7nhgTtZLzRAMQc0rWSRpP4YHMuFMTB0rNQ==", "type": "package", "path": "System.Console/4.0.0", "files": [ @@ -6499,6 +7010,59 @@ "ref/xamarinwatchos10/_._" ] }, + "System.Data.SqlClient/4.1.0": { + "sha512": "yqMZgzzKHdG84QmA/PPZUORaoisfvztvFqyPs7dPafJhNxlS7STf9OMCFrP/tITQCqImkm1+X4d2oiWOT2oTKg==", + "type": "package", + "path": "System.Data.SqlClient/4.1.0", + "files": [ + "System.Data.SqlClient.4.1.0.nupkg.sha512", + "System.Data.SqlClient.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net451/System.Data.SqlClient.dll", + "lib/net46/System.Data.SqlClient.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net451/System.Data.SqlClient.dll", + "ref/net46/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.dll", + "ref/netstandard1.2/System.Data.SqlClient.xml", + "ref/netstandard1.2/de/System.Data.SqlClient.xml", + "ref/netstandard1.2/es/System.Data.SqlClient.xml", + "ref/netstandard1.2/fr/System.Data.SqlClient.xml", + "ref/netstandard1.2/it/System.Data.SqlClient.xml", + "ref/netstandard1.2/ja/System.Data.SqlClient.xml", + "ref/netstandard1.2/ko/System.Data.SqlClient.xml", + "ref/netstandard1.2/ru/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml", + "ref/netstandard1.3/System.Data.SqlClient.dll", + "ref/netstandard1.3/System.Data.SqlClient.xml", + "ref/netstandard1.3/de/System.Data.SqlClient.xml", + "ref/netstandard1.3/es/System.Data.SqlClient.xml", + "ref/netstandard1.3/fr/System.Data.SqlClient.xml", + "ref/netstandard1.3/it/System.Data.SqlClient.xml", + "ref/netstandard1.3/ja/System.Data.SqlClient.xml", + "ref/netstandard1.3/ko/System.Data.SqlClient.xml", + "ref/netstandard1.3/ru/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml", + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll", + "runtimes/win/lib/net451/System.Data.SqlClient.dll", + "runtimes/win/lib/net46/System.Data.SqlClient.dll", + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll" + ] + }, "System.Diagnostics.Contracts/4.0.1": { "sha512": "HvQQjy712vnlpPxaloZYkuE78Gn353L0SJLJVeLcNASeg9c4qla2a1Xq8I7B3jZoDzKPtHTkyVO7AZ5tpeQGuA==", "type": "package", @@ -6558,7 +7122,7 @@ ] }, "System.Diagnostics.Debug/4.0.11": { - "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", + "sha512": "xuJW4b87IQ7bvSGa44k+rvc0UXHO9NIMzzeBrlmzk7lc/vmJ7G3iMb4U8mq02wA9u1/MxyvWdWEGKY+n8OX9fw==", "type": "package", "path": "System.Diagnostics.Debug/4.0.11", "files": [ @@ -6624,7 +7188,7 @@ ] }, "System.Diagnostics.DiagnosticSource/4.0.0": { - "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==", + "sha512": "58ZQDYia4QeKxf5GRlA3fnPJPaMOgyC5HS9iazuvZDiCFKuwyeydvCkTIS1PogAbebgmoGQWTXweXtwg+PzzfA==", "type": "package", "path": "System.Diagnostics.DiagnosticSource/4.0.0", "files": [ @@ -6643,7 +7207,7 @@ ] }, "System.Diagnostics.FileVersionInfo/4.0.0": { - "sha512": "qjF74OTAU+mRhLaL4YSfiWy3vj6T3AOz8AW37l5zCwfbBfj0k7E94XnEsRaf2TnhE/7QaV6Hvqakoy2LoV8MVg==", + "sha512": "l2A9g/7Q45uUYJcyHNZa3P5A31KR9T3qVBrkxV6irnPEq2gvtvaXUphDycWoN1EOwwiGfRkv+/uhN9hLMBkstg==", "type": "package", "path": "System.Diagnostics.FileVersionInfo/4.0.0", "files": [ @@ -6683,7 +7247,7 @@ ] }, "System.Diagnostics.Process/4.1.0": { - "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", + "sha512": "EWsMM9AGBBgKUUI5GWhUuzL18CHDMAI0lLh1WL68Pp7+h78pNAAi/UjmH0u+7HcZYtL/qvjAh9XMwFN7fFUxdQ==", "type": "package", "path": "System.Diagnostics.Process/4.1.0", "files": [ @@ -6738,7 +7302,7 @@ ] }, "System.Diagnostics.StackTrace/4.0.1": { - "sha512": "6i2EbRq0lgGfiZ+FDf0gVaw9qeEU+7IS2+wbZJmFVpvVzVOgZEt0ScZtyenuBvs6iDYbGiF51bMAa0oDP/tujQ==", + "sha512": "2LmSZyzBWcAUlVZMhSg9nf+BHr7AbvanMMtfkmixslhWBcLwIHK2H97yKXMsMNVLZBxqzGEbdUQ6W4nWeyXwFA==", "type": "package", "path": "System.Diagnostics.StackTrace/4.0.1", "files": [ @@ -6776,7 +7340,7 @@ ] }, "System.Diagnostics.Tools/4.0.1": { - "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", + "sha512": "p/7TmdvZ80PJZNda3IRCfNTgMJzj8Z/rb7vf9xeGHksHGUwjwMS0diAq9rDVOEasOsAHdOU7g30IFlMq4Pa7Sg==", "type": "package", "path": "System.Diagnostics.Tools/4.0.1", "files": [ @@ -6831,7 +7395,7 @@ ] }, "System.Diagnostics.Tracing/4.1.0": { - "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", + "sha512": "5UHIgWd2DAJec0CvwoNsD8/TFFpQQ26PLaB9CBZK7oH2O+7y1K55GYfZfxVENqlkKOCoiNe/BRJB1r8gDidZBw==", "type": "package", "path": "System.Diagnostics.Tracing/4.1.0", "files": [ @@ -6919,7 +7483,7 @@ ] }, "System.Dynamic.Runtime/4.0.11": { - "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", + "sha512": "Pcqkt+H9nE5MEt1S9vL0ylROqfOx1tkbm9jr/5BCqoMjBoGtUxYwdGIY7iTSrUbGVlhXf5NTxHC5Fu+b8gs5zg==", "type": "package", "path": "System.Dynamic.Runtime/4.0.11", "files": [ @@ -6988,7 +7552,7 @@ ] }, "System.Globalization/4.0.11": { - "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", + "sha512": "aYhtQXLOG/dSo4fZzx81sAgRH1pLcOuX+5VMIDFsX94zSG5z5oI5bLBn4ISIzVnILHuTwr1m5XpIXbi/bYmNIw==", "type": "package", "path": "System.Globalization/4.0.11", "files": [ @@ -7054,7 +7618,7 @@ ] }, "System.Globalization.Calendars/4.0.1": { - "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==", + "sha512": "2XLK6XcBwPGauefP1knZhNjffjaEU6Hg2pTt1eLW8X79xS5Kp9gEoAipW32SO4qZNP6VExkgyNYeYNYpI4WxaA==", "type": "package", "path": "System.Globalization.Calendars/4.0.1", "files": [ @@ -7090,7 +7654,7 @@ ] }, "System.Globalization.Extensions/4.0.1": { - "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", + "sha512": "rYuMocW6jXmPT8AaL3QRLRXtljlcqd3p/NSLq9ugm+M8WHF3G5YCK62D/vNsJ4Gv93w8P65sljwOM7SEASUNKQ==", "type": "package", "path": "System.Globalization.Extensions/4.0.1", "files": [ @@ -7129,7 +7693,7 @@ ] }, "System.Interactive.Async/3.0.0": { - "sha512": "UEM+WmG1Oq0bNbPx/E1jaIQ83QOrPfVDUyuYBtG6D6DpB77ytv9flPterMujumpHuoRjSc0ilSB8w41fQc05dw==", + "sha512": "iyrgkZz9Dzm0fiPouQszFC3SO/46k6AYd/jG9bu+/o0AoDMaRXtlo3TIuWVNtOuJFd1noL963QouroJ0T3rImw==", "type": "package", "path": "System.Interactive.Async/3.0.0", "files": [ @@ -7142,7 +7706,7 @@ ] }, "System.IO/4.1.0": { - "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", + "sha512": "fwTrqi/gh0YkOwTQ1lVtX8Ux0RrzPE0vumLMRKce2jc94bVAioAi4LzJtvYBZnkOByhCe5pfqjP+k5XtWlp6lw==", "type": "package", "path": "System.IO/4.1.0", "files": [ @@ -7221,7 +7785,7 @@ ] }, "System.IO.Compression/4.1.0": { - "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==", + "sha512": "6WFeOlUoBX/UJyYvEXigLoUgDt0RW+P3WC0cAVNBS1s9SJGP11mJHUULwVhTmLf4Iim+hg2SZymUgWo0SNquCg==", "type": "package", "path": "System.IO.Compression/4.1.0", "files": [ @@ -7290,7 +7854,7 @@ ] }, "System.IO.Compression.ZipFile/4.0.1": { - "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==", + "sha512": "aLqdVzG6OIDZPicvO2/yosgFgXlsNo6TNwvOBOx7GDxf1NPT74jBOipCl5OmHwFn8CX/Erbt13gp5kGV3VmaDg==", "type": "package", "path": "System.IO.Compression.ZipFile/4.0.1", "files": [ @@ -7327,7 +7891,7 @@ ] }, "System.IO.FileSystem/4.0.1": { - "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", + "sha512": "IE2ptfsZ2Bpv40+4RyjXHaHrkA1gdFdbIvqrcXe+Z5pbTWx/efAzEoqbGPB0kYJYgjpOmH4p4fIqzu6DDn9BAA==", "type": "package", "path": "System.IO.FileSystem/4.0.1", "files": [ @@ -7363,7 +7927,7 @@ ] }, "System.IO.FileSystem.Primitives/4.0.1": { - "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", + "sha512": "dbW5P879jxhS3SsCqXUbMye7OtbsX2mrdHf6khpESrfpwmz2B3Q1YbW9srMaU8Kuv+95wGklqFL2MRGGE4wQQw==", "type": "package", "path": "System.IO.FileSystem.Primitives/4.0.1", "files": [ @@ -7400,7 +7964,7 @@ ] }, "System.IO.FileSystem.Watcher/4.0.0": { - "sha512": "qM4Wr3La+RYb/03B0mZZjbA7tHsGzDffnuXP8Sl48HW2JwCjn3kfD5qdw0sqyNNowUipcJMi9/q6sMUrOIJ6UQ==", + "sha512": "sZ6KWO4RM1wMXGHy05OjiC+yGrybxFXnyyIhclihScEONYBcYwT1vZJMLY1fDcyZ3Qr191SLNqeFzShXXSP5yw==", "type": "package", "path": "System.IO.FileSystem.Watcher/4.0.0", "files": [ @@ -7441,7 +8005,7 @@ ] }, "System.IO.MemoryMappedFiles/4.0.0": { - "sha512": "Xqj4xaFAnLVpss9ZSUIvB/VdJAA7GxZDnFGDKJfiGAnZ5VnFROn6eOHWepFpujCYTsh6wlZ3B33bqYkF0QJ7Eg==", + "sha512": "5qIe5coj52mD+tQB4pem48n1k8mikZQ4JuisKXeUMfCiWBeSW5cv0fIUmMzKDP/No0ZUiyTV6eBwEP6reASPmA==", "type": "package", "path": "System.IO.MemoryMappedFiles/4.0.0", "files": [ @@ -7480,8 +8044,36 @@ "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll" ] }, + "System.IO.Pipes/4.0.0": { + "sha512": "L9QVhk8hIEix5KNA0kW58Ha+Y1dNGqqqIhAaJkhcGCWeQzUmN0njzI7SG/XAazpMecboOdFFlH3pH/qbwXLJAg==", + "type": "package", + "path": "System.IO.Pipes/4.0.0", + "files": [ + "System.IO.Pipes.4.0.0.nupkg.sha512", + "System.IO.Pipes.nuspec", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/net46/System.IO.Pipes.dll", + "ref/net46/System.IO.Pipes.dll", + "ref/netstandard1.3/System.IO.Pipes.dll", + "ref/netstandard1.3/System.IO.Pipes.xml", + "ref/netstandard1.3/de/System.IO.Pipes.xml", + "ref/netstandard1.3/es/System.IO.Pipes.xml", + "ref/netstandard1.3/fr/System.IO.Pipes.xml", + "ref/netstandard1.3/it/System.IO.Pipes.xml", + "ref/netstandard1.3/ja/System.IO.Pipes.xml", + "ref/netstandard1.3/ko/System.IO.Pipes.xml", + "ref/netstandard1.3/ru/System.IO.Pipes.xml", + "ref/netstandard1.3/zh-hans/System.IO.Pipes.xml", + "ref/netstandard1.3/zh-hant/System.IO.Pipes.xml", + "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll", + "runtimes/win/lib/net46/System.IO.Pipes.dll", + "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll", + "runtimes/win7/lib/netcore50/_._" + ] + }, "System.IO.UnmanagedMemoryStream/4.0.1": { - "sha512": "wcq0kXcpfJwdl1Y4/ZjDk7Dhx5HdLyRYYWYmD8Nn8skoGYYQd2BQWbXwjWSczip8AL4Z57o2dWWXAl4aABAKiQ==", + "sha512": "9oaDospZ4F9mROF4MhuNjR1fXZeDVMxV0JfQ8VEtTYRsSsPKyuAtelWjoXKCoa6m+4L2SHtZpfnuz0VXP0EBZQ==", "type": "package", "path": "System.IO.UnmanagedMemoryStream/4.0.1", "files": [ @@ -7518,7 +8110,7 @@ ] }, "System.Linq/4.1.0": { - "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", + "sha512": "bXOxDkTSHyJhQNZ63cl01GRccH0Db31IPXVMOquhRDhHFTEtw75Da11VBJMUjEFOhGOct1hgzMtFV8jbqJnrDw==", "type": "package", "path": "System.Linq/4.1.0", "files": [ @@ -7588,7 +8180,7 @@ ] }, "System.Linq.Expressions/4.1.0": { - "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", + "sha512": "l1hwpOS4QdkCy6p5mUKMFXKsoGUseExAvavV9tbUt6lctLgiDF07wMG6jf+/twcYJMpdqzbvJcNjTfY9zFcQBg==", "type": "package", "path": "System.Linq.Expressions/4.1.0", "files": [ @@ -7670,7 +8262,7 @@ ] }, "System.Linq.Parallel/4.0.1": { - "sha512": "J7XCa7n2cFn32uLbtceXfBFhgCk5M++50lylHKNbqTiJkw5y4Tglpi6amuJNPCvj9bLzNSI7rs1fi4joLMNRgg==", + "sha512": "4qr/HEwe7IPDygsRq+nVunCdk8+2+bxzu/71Bz/JKv4cqJybUAY+B325NK4s4aj9PCBbBbPx3zvZctGx3g3Ykw==", "type": "package", "path": "System.Linq.Parallel/4.0.1", "files": [ @@ -7725,7 +8317,7 @@ ] }, "System.Linq.Queryable/4.0.1": { - "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", + "sha512": "29rxl5RIbPEdlfecXa64bKYcC7Ax20j/7pxuW826emk8emICF5e6Ghqx0FHTIdSezdzzQFbSmEQRjSJaT4YW/Q==", "type": "package", "path": "System.Linq.Queryable/4.0.1", "files": [ @@ -7782,7 +8374,7 @@ ] }, "System.Net.Http/4.1.0": { - "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==", + "sha512": "qPm6Lv0hrlOejR4HeZhH3BIavDdgZY7mJ7VwXWHeSJqF/yqLv60MgfNi5lECJo5KCq2VL9hRbaCrOOX0msx5GA==", "type": "package", "path": "System.Net.Http/4.1.0", "files": [ @@ -7862,7 +8454,7 @@ ] }, "System.Net.NameResolution/4.0.0": { - "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==", + "sha512": "ExtX9Quhtce24vBSoB40RF117zNmJxZXiQtV6tro8nnzaqQQnJgCozG+/dY7+GKFvDHAW89LKifXpwOno/lZFg==", "type": "package", "path": "System.Net.NameResolution/4.0.0", "files": [ @@ -7975,7 +8567,7 @@ ] }, "System.Net.Primitives/4.0.11": { - "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==", + "sha512": "rQV5RutfNDT4rgBYTSFNAYjQJKDdMY/3lBF01L3oZaeWCFLmhuS49SVWXpAWyzgdnxm3pySi/MfUZddXK8sPVQ==", "type": "package", "path": "System.Net.Primitives/4.0.11", "files": [ @@ -8052,7 +8644,7 @@ ] }, "System.Net.Requests/4.0.11": { - "sha512": "vxGt7C0cZixN+VqoSW4Yakc1Y9WknmxauDqzxgpw/FnBdz4kQNN51l4wxdXX5VY1xjqy//+G+4CvJWp1+f+y6Q==", + "sha512": "whUUsitWpiiT1RncZZd8QGWfZD8q+pvsoT4/3BBpoQALFyE4d3kGW96ZDadGu2+yaPajTDrgjrbv/mGdU4Fhgg==", "type": "package", "path": "System.Net.Requests/4.0.11", "files": [ @@ -8133,7 +8725,7 @@ ] }, "System.Net.Security/4.0.0": { - "sha512": "uM1JaYJciCc2w7efD6du0EpQ1n5ZQqE6/P43/aI4H5E59qvP+wt3l70KIUF/Ha7NaeXGoGNFPVO0MB80pVHk2g==", + "sha512": "foqCkcdA/9azT4gcoAbgg50xtWSgwxMu681vixmh42lxZkPSrybal/RB7DxebOzI3IbqfLI9FylzRdabOvF82Q==", "type": "package", "path": "System.Net.Security/4.0.0", "files": [ @@ -8173,7 +8765,7 @@ ] }, "System.Net.Sockets/4.1.0": { - "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==", + "sha512": "ol32vQdQy6Lt0lZalTLXY46UQs1VLaYkJNGS0r8jtQ/I6ZQc1zZESRecScQhKfa+7K2sDPq6RJ4AP/EzgzRZUA==", "type": "package", "path": "System.Net.Sockets/4.1.0", "files": [ @@ -8209,7 +8801,7 @@ ] }, "System.Net.WebHeaderCollection/4.0.1": { - "sha512": "XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==", + "sha512": "HHwHK6GhWWF+WxjIWJYxeVtoq26iCObcS1jBZ6UcRzEYQsA22tKxD4ppzU/EVvP9nszFbM1JqYrZEpZ8fLGvQg==", "type": "package", "path": "System.Net.WebHeaderCollection/4.0.1", "files": [ @@ -8283,7 +8875,7 @@ ] }, "System.Numerics.Vectors/4.1.1": { - "sha512": "Ex1NSKycC2wi5XBMWUGWPc3lumh6OQWFFmmpZFZz0oLht5lQ+wWPHVZumOrMJuckfUiVMd4p67BrkBos8lcF+Q==", + "sha512": "vIuSFH9FO5kh1NQoFuUdpH6ZyziDMjqdUQhmTdZXxPBG0SsCmLoy5nlf7GAMMTQOtjja/mRGQoW7/+JNqLw4nw==", "type": "package", "path": "System.Numerics.Vectors/4.1.1", "files": [ @@ -8316,7 +8908,7 @@ ] }, "System.ObjectModel/4.0.12": { - "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", + "sha512": "K7o2e1qx40Z6YaqI8JNytTk/nfqjTThSPMRIzm/c0AZ746oxhYM8enoniXYjqeJzaGsYZtXh18B9eZsXv9c5FA==", "type": "package", "path": "System.ObjectModel/4.0.12", "files": [ @@ -8384,7 +8976,7 @@ ] }, "System.Reflection/4.1.0": { - "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", + "sha512": "7hmR6b8W0McRMEmtsjzHhn/jq5TDmOqLcRJKg73oY/sUoLLNqGZgB4FX8czW+TG/B5+FtiJWcsKuaofYxMef/w==", "type": "package", "path": "System.Reflection/4.1.0", "files": [ @@ -8463,7 +9055,7 @@ ] }, "System.Reflection.DispatchProxy/4.0.1": { - "sha512": "GPPgWoSxQEU3aCKSOvsAc1dhTTi4iq92PUVEVfnGPGwqCf6synaAJGYLKMs5E3CuRfel8ufACWUijXqDpOlGrA==", + "sha512": "kJyve8mAb3lvxK9XVAGqzqv3shIRfcBc4BcBziiZ7+G/jHEh8ddwpn8LKzPTC4Q8VtlbMu4LVmHXuLnKzSNCQw==", "type": "package", "path": "System.Reflection.DispatchProxy/4.0.1", "files": [ @@ -8499,7 +9091,7 @@ ] }, "System.Reflection.Emit/4.0.1": { - "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", + "sha512": "ASLJdTJwfTDyFqzhcl8yqsHxnLuSqC3njA72XYBc+QlpxF345b7nrnNF341h6dtV7TIJf99acQtUpYNag3o7Yw==", "type": "package", "path": "System.Reflection.Emit/4.0.1", "files": [ @@ -8529,7 +9121,7 @@ ] }, "System.Reflection.Emit.ILGeneration/4.0.1": { - "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", + "sha512": "+NEKAuwXGfAuY5VDPKSlhwDtECBwl4CySFsPID4h/Gi3w2sPqSNjDg5mpFrhDlCG6qL2F4rpYtRPB9+szR89rQ==", "type": "package", "path": "System.Reflection.Emit.ILGeneration/4.0.1", "files": [ @@ -8560,7 +9152,7 @@ ] }, "System.Reflection.Emit.Lightweight/4.0.1": { - "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", + "sha512": "mkYSn+6AT4RoanXj76H4EQvFDiQCSHOsMBSwbrRbShHXLV/g+BRoTN2bdBLZezU6GVqp+nlc7y24DljgtQw9SQ==", "type": "package", "path": "System.Reflection.Emit.Lightweight/4.0.1", "files": [ @@ -8591,7 +9183,7 @@ ] }, "System.Reflection.Extensions/4.0.1": { - "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", + "sha512": "Lv+jPORlXc+jHrOsnElDmte1UqrNhm4Ta5rRo/zHqCAgngab27k5/pS6zjFYGEtfWw8EJicoqi4QE6yoxhODNA==", "type": "package", "path": "System.Reflection.Extensions/4.0.1", "files": [ @@ -8646,7 +9238,7 @@ ] }, "System.Reflection.Metadata/1.3.0": { - "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==", + "sha512": "oB8/kvfjbJk+wBeJdWqFNGjk8b2o7dBw58KXabwEMFzQ8FsAWCDR/A7yZjCiQYi9Wqb/Sh/EbWswg7/+cussgQ==", "type": "package", "path": "System.Reflection.Metadata/1.3.0", "files": [ @@ -8661,7 +9253,7 @@ ] }, "System.Reflection.Primitives/4.0.1": { - "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", + "sha512": "lWZ4xWTUIzq5WBiA8guaNtk6Wqn/2bXzpjPX8GMQXyLTPghS0/u/kJBLStAtZAbI3o6lfxqcrsuqTI6+TIYYtQ==", "type": "package", "path": "System.Reflection.Primitives/4.0.1", "files": [ @@ -8716,7 +9308,7 @@ ] }, "System.Reflection.TypeExtensions/4.1.0": { - "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", + "sha512": "9OUX7nuz+p9GB1OP2DGw6omeOEeU+7Ql8yt3VRkcj0onOTAQ71xSPE9A8kkeccx1Rhsg5kCVUJgrbet6fsF0wA==", "type": "package", "path": "System.Reflection.TypeExtensions/4.1.0", "files": [ @@ -8768,7 +9360,7 @@ ] }, "System.Resources.Reader/4.0.0": { - "sha512": "VX1iHAoHxgrLZv+nq/9drCZI6Q4SSCzSVyUm1e0U60sqWdj6XhY7wvKmy3RvsSal9h+/vqSWwxxJsm0J4vn/jA==", + "sha512": "JnBZiGvp2UmmBeZKzTuOZWjcXAb3rmirC+iVHfFJdEYDYaLUbTfRilug5umjcTy4784avvFEuy1o6RUchz/AVA==", "type": "package", "path": "System.Resources.Reader/4.0.0", "files": [ @@ -8780,7 +9372,7 @@ ] }, "System.Resources.ResourceManager/4.0.1": { - "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", + "sha512": "pCib2XldZjdsDNYYCwtIzPrHN8VkeekFJK/1PUe+v6xoZ27RIjq0HJ+CwLP1CFwuMR2aL/CM4rx9CLX4yL9P+w==", "type": "package", "path": "System.Resources.ResourceManager/4.0.1", "files": [ @@ -8835,7 +9427,7 @@ ] }, "System.Runtime/4.1.0": { - "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", + "sha512": "WUz1/WOWrr8zNDlCA8NuWh7Osr/wcVrl0yrHVBCmMM/ywMDtEX0baH7NqyJ7miXjzIOf6Oq45zt0ak2cr7OxOA==", "type": "package", "path": "System.Runtime/4.1.0", "files": [ @@ -8925,7 +9517,7 @@ ] }, "System.Runtime.Extensions/4.1.0": { - "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", + "sha512": "AZfJoOC7MNxBcFKLb8GwPs3DyawQH2D8ZWm0xm5sLnL/o5M/F2od/rgPs1VoA4l/yO2+4IXDV06ZvG7wmbTMsA==", "type": "package", "path": "System.Runtime.Extensions/4.1.0", "files": [ @@ -9004,7 +9596,7 @@ ] }, "System.Runtime.Handles/4.0.1": { - "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", + "sha512": "7UysTjrieyfbQvAcd597YpqDEdVBVu0ttCN+WKi3RHGAzT/o7iLuAkexzYNlvEO+2XmeD3AxkFPU61Tyw1TRTw==", "type": "package", "path": "System.Runtime.Handles/4.0.1", "files": [ @@ -9040,7 +9632,7 @@ ] }, "System.Runtime.InteropServices/4.1.0": { - "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", + "sha512": "tDv2SgJLjPA2uWH5KH9k5jpgGj7uhKsME2ZsZD3U/bLV6mqSXeFfIvgPjp5Ui2cvExlljvyjU8mkiF7N9LmEOg==", "type": "package", "path": "System.Runtime.InteropServices/4.1.0", "files": [ @@ -9128,7 +9720,7 @@ ] }, "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { - "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", + "sha512": "pvD3CCV3o2m/o1BVSworxXlg98VbHf/UAfKe3Okw9PKvNHBDwfIiUMChed7Fc7jfziyQE/4D2YW2yPLBMkkvVw==", "type": "package", "path": "System.Runtime.InteropServices.RuntimeInformation/4.0.0", "files": [ @@ -9160,7 +9752,7 @@ ] }, "System.Runtime.Loader/4.0.0": { - "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", + "sha512": "w1dhRRDdflaANcxZv3FQ7M8AwsdoYAGZbgZo6EukuCypmYbXIEeu2SEK3TUrR3BWLprS0TevEE7W2GAJXS9CUw==", "type": "package", "path": "System.Runtime.Loader/4.0.0", "files": [ @@ -9184,7 +9776,7 @@ ] }, "System.Runtime.Numerics/4.0.1": { - "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==", + "sha512": "QNWBlIwgPAscn4hEWnv0Dnnw8UudLiLV2jWI59vVbMka+xAn3ViRilxvTScgpMXj/2IXJJT8+7d4d7CSwjTi3Q==", "type": "package", "path": "System.Runtime.Numerics/4.0.1", "files": [ @@ -9310,7 +9902,7 @@ ] }, "System.Security.Claims/4.0.1": { - "sha512": "4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==", + "sha512": "q/S8k4GysxT2f1i4FQaK22mhpjkJP5kBlcN5PSqRIK+PKb7cphzkVMDWH00pEbyqheqRZ5Rfa4jSeP1rnk+UqQ==", "type": "package", "path": "System.Security.Claims/4.0.1", "files": [ @@ -9347,7 +9939,7 @@ ] }, "System.Security.Cryptography.Algorithms/4.2.0": { - "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==", + "sha512": "+O/aMiXYLbpsbvILMFerj6jFVMi0tgtCAjQxgyZctqqYuWemz4IXlb6IxDL2ItcgTYEoPhfPIIxDXycZcxoPXw==", "type": "package", "path": "System.Security.Cryptography.Algorithms/4.2.0", "files": [ @@ -9385,7 +9977,7 @@ ] }, "System.Security.Cryptography.Cng/4.2.0": { - "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==", + "sha512": "hcjXD2osaryaC574dmJuGRZTJgrp77KsQ8ECUf1hdv3xO3jAxv9ZCzdNA0oNdSn3ulk7QZEQSdpnADvqqxYZqA==", "type": "package", "path": "System.Security.Cryptography.Cng/4.2.0", "files": [ @@ -9411,7 +10003,7 @@ ] }, "System.Security.Cryptography.Csp/4.0.0": { - "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==", + "sha512": "9LAFL/pQhyZl2zV1PCd56h3W3UJfzXIxO83dYoyu7SF/SUZzA2OFgzY5xD51Rj54EIMqTZ+uc3BboLwyq1/vyw==", "type": "package", "path": "System.Security.Cryptography.Csp/4.0.0", "files": [ @@ -9441,7 +10033,7 @@ ] }, "System.Security.Cryptography.Encoding/4.0.0": { - "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==", + "sha512": "OFB74+OHogPsy0IYUKPFOhbQMeY5z0ZkMhXdAW1SQ6IEIEy6N6poCUdEbx0kjXx5mdsdkw1FL04hMveKGBcBaQ==", "type": "package", "path": "System.Security.Cryptography.Encoding/4.0.0", "files": [ @@ -9480,7 +10072,7 @@ ] }, "System.Security.Cryptography.OpenSsl/4.0.0": { - "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==", + "sha512": "I5t0tlvpIROamTn9sQdz8tgJlPA3Mj/qOmTB88rDGovcEs9JiMYaiMeapwQsi2wlJPBaOlPaOLXK3T8n2ogWiQ==", "type": "package", "path": "System.Security.Cryptography.OpenSsl/4.0.0", "files": [ @@ -9494,7 +10086,7 @@ ] }, "System.Security.Cryptography.Primitives/4.0.0": { - "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==", + "sha512": "veO2EZmLGAkh5rLodM8YjaaKnM9AG+l25wWHQFC/7UZ8M0aKGE+AtHigTgmrLnU8JYmvUju9NN1AtT8ShBMVIw==", "type": "package", "path": "System.Security.Cryptography.Primitives/4.0.0", "files": [ @@ -9521,7 +10113,7 @@ ] }, "System.Security.Cryptography.X509Certificates/4.1.0": { - "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==", + "sha512": "ir7BOSAO6V/bnGbmzuIz0gn8quWeoA/Pz3pwyBS+6hcSVtaFWWXR9b8x+SvvjnR99lwnV53gtVgyqUhzpyr9ug==", "type": "package", "path": "System.Security.Cryptography.X509Certificates/4.1.0", "files": [ @@ -9575,7 +10167,7 @@ ] }, "System.Security.Principal/4.0.1": { - "sha512": "On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==", + "sha512": "EW3TIc3FuZ89Dh9EHeZA/eJN5aRSZhDRsJTtAGeYapLcZm5E1q2Abl27/7j+LgOR4TVCzXSsKXmwsI53tfWaew==", "type": "package", "path": "System.Security.Principal/4.0.1", "files": [ @@ -9632,7 +10224,7 @@ ] }, "System.Security.Principal.Windows/4.0.0": { - "sha512": "iFx15AF3RMEPZn3COh8+Bb2Thv2zsmLd93RchS1b8Mj5SNYeGqbYNCSn5AES1+gq56p4ujGZPrl0xN7ngkXOHg==", + "sha512": "zhGHnzs3wqVdf5VeNnwb+k8MHwjz46I4FvHHJcCJTttx7qKVqC7thE4hYg8kXBBMTLRARDXc0j7Fhlcr+gNT6w==", "type": "package", "path": "System.Security.Principal.Windows/4.0.0", "files": [ @@ -9659,7 +10251,7 @@ ] }, "System.Text.Encoding/4.0.11": { - "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", + "sha512": "UwIBIlqG2VSGlCneyPP556asrNPI+K/5XI1Mky0u4+4aaNCKhGxxYpKgSEZQHBSxZ2ocjUUoi2p0WcXpAUeNbw==", "type": "package", "path": "System.Text.Encoding/4.0.11", "files": [ @@ -9725,7 +10317,7 @@ ] }, "System.Text.Encoding.CodePages/4.0.1": { - "sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==", + "sha512": "K2jZiXN6xTKOBTd4o76ichwz67QDVKCmH2UbyaMWg2Y3Bm4PznHqpiVwkopW78GIbfh2O6o/LvLOjkLFI2a/3g==", "type": "package", "path": "System.Text.Encoding.CodePages/4.0.1", "files": [ @@ -9762,7 +10354,7 @@ ] }, "System.Text.Encoding.Extensions/4.0.11": { - "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", + "sha512": "ElF9m3HZW/PA4bLmzExQQi2ERZMjnbqD9GTfBWhlrxGAc7JP4dWGRJHHxC+VXd26hd12GBM/kxK0DJnNAadwrQ==", "type": "package", "path": "System.Text.Encoding.Extensions/4.0.11", "files": [ @@ -9841,7 +10433,7 @@ ] }, "System.Text.RegularExpressions/4.1.0": { - "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", + "sha512": "FCJI7VzWwFB/eIyrzf64CWCe0mDGLoZkQkT74RtYOVoxCSU7CcTdZZkqmHQp2Td4yerZWQqxLv7LKWVCm8OONQ==", "type": "package", "path": "System.Text.RegularExpressions/4.1.0", "files": [ @@ -9922,7 +10514,7 @@ ] }, "System.Threading/4.0.11": { - "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", + "sha512": "xM44aEyEYLSZDbIanlhi1ZKkjGQOy5ee0ufOnl9pt2zqdZxICVnppjBhyXH5Ynloq1Z2Oanc/P3m06SLvqilxQ==", "type": "package", "path": "System.Threading/4.0.11", "files": [ @@ -9991,7 +10583,7 @@ ] }, "System.Threading.Overlapped/4.0.1": { - "sha512": "f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==", + "sha512": "dDFbmJDM5ERYfZWTALR2SERrL7gywRCQYZsb4S/MGTVn7s3Awi7yX3nZ6WDIf6wM+7GjCMVN92OCWgzSm9BD6g==", "type": "package", "path": "System.Threading.Overlapped/4.0.1", "files": [ @@ -10019,7 +10611,7 @@ ] }, "System.Threading.Tasks/4.0.11": { - "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", + "sha512": "FTCObj31EpuCL/J7ZanGMO0zKulDEj21IPS1JSx9RZhWbt5lfTz0zlBKW5MXb2eNv0TPeDdQ024Y5YukRBatLQ==", "type": "package", "path": "System.Threading.Tasks/4.0.11", "files": [ @@ -10085,7 +10677,7 @@ ] }, "System.Threading.Tasks.Dataflow/4.6.0": { - "sha512": "2hRjGu2r2jxRZ55wmcHO/WbdX+YAOz9x6FE8xqkHZgPaoFMKQZRe9dk8xTZIas8fRjxRmzawnTEWIrhlM+Un7w==", + "sha512": "ziQTrcYA6Q8VPw+4gYRF5al1TzlGsdBBRMUPKUqg9st4gq97CPNKTZgF4ujmcMpUbUp+ZtHYvxHrJHWVaVHkEA==", "type": "package", "path": "System.Threading.Tasks.Dataflow/4.6.0", "files": [ @@ -10100,7 +10692,7 @@ ] }, "System.Threading.Tasks.Extensions/4.0.0": { - "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==", + "sha512": "WkM/CiUHQxXH7cQOU5LDbjkrLPI/aXQaVBgRA4PwkxcO7VXm8iTUXJnbQ5WbH97t17a4yy4DQSe56H3cpfdwbA==", "type": "package", "path": "System.Threading.Tasks.Extensions/4.0.0", "files": [ @@ -10115,7 +10707,7 @@ ] }, "System.Threading.Tasks.Parallel/4.0.1": { - "sha512": "7Pc9t25bcynT9FpMvkUw4ZjYwUiGup/5cJFW72/5MgCG+np2cfVUMdh29u8d7onxX7d8PS3J+wL73zQRqkdrSA==", + "sha512": "LVTjwyp/OR9eoCT+B+dp5gDyDiyAm5VfcwV7vAzAi0nyBNfTxPLr7BU4vcNZGSvvUMtGhrbR3uYwkgXejFQmJw==", "type": "package", "path": "System.Threading.Tasks.Parallel/4.0.1", "files": [ @@ -10170,7 +10762,7 @@ ] }, "System.Threading.Thread/4.0.0": { - "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==", + "sha512": "qqec+Hoz/vt1x26rOmRUMUim2DNeOgSWfS5qHBDgWzCRF5d2ENyJzSuQmY5pNOB4wG/kuiuITCkVyM50lbkcag==", "type": "package", "path": "System.Threading.Thread/4.0.0", "files": [ @@ -10208,7 +10800,7 @@ ] }, "System.Threading.ThreadPool/4.0.10": { - "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", + "sha512": "X4mb73zGjUGiM4RktK7GWrvWoYtp8lMAVCLB7qRvhQchwMA/gYx7zjPPZ8bdEKAuEZ+fZBNaVT1guVAkrB95GA==", "type": "package", "path": "System.Threading.ThreadPool/4.0.10", "files": [ @@ -10246,7 +10838,7 @@ ] }, "System.Threading.Timer/4.0.1": { - "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==", + "sha512": "he1u6wTRroKolBGfUNJXXO3dvtZoewwN91cDyc0y84Z03Umx0rImp+d8hvn9VwAHDdB7DVWDnwMBBs7FYilGYA==", "type": "package", "path": "System.Threading.Timer/4.0.1", "files": [ @@ -10299,7 +10891,7 @@ ] }, "System.Xml.ReaderWriter/4.0.11": { - "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", + "sha512": "ZmIlenas698bnxSc3gpqWs5pJOm3YTh9Ru00PlLUjYqoG1+H/yjpWpOGchlAhGOUYNL1/m3O5fvCThxI3DGEFQ==", "type": "package", "path": "System.Xml.ReaderWriter/4.0.11", "files": [ @@ -10367,7 +10959,7 @@ ] }, "System.Xml.XDocument/4.0.11": { - "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", + "sha512": "6PqZCNkSu8OuAJOP8JmDYSAJkAVYgDNCzv7BB5J2ZDwERG7uvVO8k3QKat29Y3adKDqSZP5D3aPAyJ5csNZMng==", "type": "package", "path": "System.Xml.XDocument/4.0.11", "files": [ @@ -10435,7 +11027,7 @@ ] }, "System.Xml.XmlDocument/4.0.1": { - "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==", + "sha512": "eqJKVyZXli4H6XXRyYPunkOuQQwhQfza68RtMk77SdQRSVtxZjBQ7k/l9k3ecVyMLxCYK9iWQ3zM1EMZwbeWxw==", "type": "package", "path": "System.Xml.XmlDocument/4.0.1", "files": [ @@ -10472,7 +11064,7 @@ ] }, "System.Xml.XPath/4.0.1": { - "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==", + "sha512": "3RetVu8mT8HKgKcI1L1xZRyYQ3Eyb0LlJjYc5WSDrb0aCMxRn5rWSTv4d//sn85bNf0yJzFy86bin9cHiA5MLw==", "type": "package", "path": "System.Xml.XPath/4.0.1", "files": [ @@ -10509,7 +11101,7 @@ ] }, "System.Xml.XPath.XDocument/4.0.1": { - "sha512": "FLhdYJx4331oGovQypQ8JIw2kEmNzCsjVOVYY/16kZTUoquZG85oVn7yUhBE2OZt1yGPSXAL0HTEfzjlbNpM7Q==", + "sha512": "VphHauTwuinITGn2/H7lxkjWNnWbqlemdue67W+Oe9bLaXtKKypY7y0Q0okq3y+LbwBbhHMUIhbthL5sEqKNvA==", "type": "package", "path": "System.Xml.XPath.XDocument/4.0.1", "files": [ @@ -10563,8 +11155,10 @@ "Microsoft.Extensions.Logging.Console >= 1.0.0", "Microsoft.Extensions.Logging.Debug >= 1.0.0", "Microsoft.Extensions.Options.ConfigurationExtensions >= 1.0.0", - "Microsoft.NETCore.App >= 1.0.1", + "Microsoft.NETCore.App >= 1.1.0", "Microsoft.VisualStudio.Web.BrowserLink.Loader >= 14.0.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Tools >= 1.0.0-preview2-final", + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc >= 1.0.0-preview2-final", "Npgsql.EntityFrameworkCore.PostgreSQL >= 1.0.2", "Npgsql.EntityFrameworkCore.PostgreSQL.Design >= 1.0.2" ], @@ -10637,6 +11231,19 @@ "runtime": { "lib/netcoreapp1.0/dotnet-publish-iis.dll": {} } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Tools/1.0.0-preview2-final": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.App": "1.0.0", + "Microsoft.VisualStudio.Web.CodeGeneration": "1.0.0-preview2-final" + }, + "compile": { + "lib/netcoreapp1.0/dotnet-aspnet-codegenerator.dll": {} + }, + "runtime": { + "lib/netcoreapp1.0/dotnet-aspnet-codegenerator.dll": {} + } } } }, @@ -10645,7 +11252,8 @@ "BundlerMinifier.Core >= 2.0.238", "Microsoft.AspNetCore.Razor.Tools >= 1.0.0-preview2-final", "Microsoft.AspNetCore.Server.IISIntegration.Tools >= 1.0.0-preview2-final", - "Microsoft.EntityFrameworkCore.Tools >= 1.0.0-preview2-final" + "Microsoft.EntityFrameworkCore.Tools >= 1.0.0-preview2-final", + "Microsoft.VisualStudio.Web.CodeGeneration.Tools >= 1.0.0-preview2-final" ] } } \ No newline at end of file -- libgit2 0.21.4