Commit 1519f210aa3b71c4eaf7acbc03699239a86bedba

Authored by Administrator
1 parent 509c88d0

add models and crud

@@ -5,3 +5,4 @@ @@ -5,3 +5,4 @@
5 /bin/Debug/netcoreapp1.0 5 /bin/Debug/netcoreapp1.0
6 /obj/Debug/netcoreapp1.0 6 /obj/Debug/netcoreapp1.0
7 /.vs 7 /.vs
  8 +/.vscode
8 \ No newline at end of file 9 \ No newline at end of file
Controllers/BusStopController.cs 0 → 100755
  1 +using System.Linq;
  2 +using System.Threading.Tasks;
  3 +using Microsoft.AspNetCore.Mvc;
  4 +using Microsoft.AspNetCore.Mvc.Rendering;
  5 +using Microsoft.EntityFrameworkCore;
  6 +using Maps.Entities;
  7 +
  8 +namespace maps_core.Controllers
  9 +{
  10 + public class BusStopController : Controller
  11 + {
  12 + private readonly PostgresDbContext _context;
  13 +
  14 + public BusStopController(PostgresDbContext context)
  15 + {
  16 + _context = context;
  17 + }
  18 +
  19 + // GET: BusStop
  20 + public async Task<IActionResult> Index()
  21 + {
  22 + var postgresDbContext = _context.BusStop.Include(b => b.Region).Include(b => b.Road).Include(b => b.Settlement).Include(b => b.StateCommon).Include(b => b.SurfaceType);
  23 + return View(await postgresDbContext.ToListAsync());
  24 + }
  25 +
  26 + // GET: BusStop/Details/5
  27 + public async Task<IActionResult> Details(int? id)
  28 + {
  29 + if (id == null)
  30 + {
  31 + return NotFound();
  32 + }
  33 +
  34 + var busStop = await _context.BusStop.SingleOrDefaultAsync(m => m.BusStopId == id);
  35 + if (busStop == null)
  36 + {
  37 + return NotFound();
  38 + }
  39 +
  40 + return View(busStop);
  41 + }
  42 +
  43 + // GET: BusStop/Create
  44 + public IActionResult Create()
  45 + {
  46 + ViewData["RegionId"] = new SelectList(_context.Region, "RegionId", "RegionId");
  47 + ViewData["RoadId"] = new SelectList(_context.Road, "RoadId", "Name");
  48 + ViewData["SettlementId"] = new SelectList(_context.Settlement, "SettlementId", "Name");
  49 + ViewData["StateCommonId"] = new SelectList(_context.StateCommon, "StateCommonId", "Value");
  50 + ViewData["SurfaceTypeId"] = new SelectList(_context.SurfaceType, "SurfaceTypeId", "Name");
  51 + return View();
  52 + }
  53 +
  54 + // POST: BusStop/Create
  55 + // To protect from overposting attacks, please enable the specific properties you want to bind to, for
  56 + // more details see http://go.microsoft.com/fwlink/?LinkId=317598.
  57 + [HttpPost]
  58 + [ValidateAntiForgeryToken]
  59 + public async Task<IActionResult> Create([Bind("BusStopId,AreaLandAvailability,AreaStopAvailability,BalanceCost,BusStationCardId,CrossSectionNumber,DateActual,LocationLeft,LocationRight,PocketAvailability,Position,RegionId,RepairCertificate,RoadId,SettlementId,StateCommonId,SurfaceTypeId,ToiletAvailability,YearBuild,YearRepair")] BusStop busStop)
  60 + {
  61 + if (ModelState.IsValid)
  62 + {
  63 + _context.Add(busStop);
  64 + await _context.SaveChangesAsync();
  65 + return RedirectToAction("Index");
  66 + }
  67 + ViewData["RegionId"] = new SelectList(_context.Region, "RegionId", "RegionId", busStop.RegionId);
  68 + ViewData["RoadId"] = new SelectList(_context.Road, "RoadId", "RoadId", busStop.RoadId);
  69 + ViewData["SettlementId"] = new SelectList(_context.Settlement, "SettlementId", "Name", busStop.SettlementId);
  70 + ViewData["StateCommonId"] = new SelectList(_context.StateCommon, "StateCommonId", "StateCommonId", busStop.StateCommonId);
  71 + ViewData["SurfaceTypeId"] = new SelectList(_context.SurfaceType, "SurfaceTypeId", "SurfaceTypeId", busStop.SurfaceTypeId);
  72 + return View(busStop);
  73 + }
  74 +
  75 + // GET: BusStop/Edit/5
  76 + public async Task<IActionResult> Edit(int? id)
  77 + {
  78 + if (id == null)
  79 + {
  80 + return NotFound();
  81 + }
  82 +
  83 + var busStop = await _context.BusStop.SingleOrDefaultAsync(m => m.BusStopId == id);
  84 + if (busStop == null)
  85 + {
  86 + return NotFound();
  87 + }
  88 + ViewData["RegionId"] = new SelectList(_context.Region, "RegionId", "RegionId", busStop.RegionId);
  89 + ViewData["RoadId"] = new SelectList(_context.Road, "RoadId", "RoadId", busStop.RoadId);
  90 + ViewData["SettlementId"] = new SelectList(_context.Settlement, "SettlementId", "Name", busStop.SettlementId);
  91 + ViewData["StateCommonId"] = new SelectList(_context.StateCommon, "StateCommonId", "StateCommonId", busStop.StateCommonId);
  92 + ViewData["SurfaceTypeId"] = new SelectList(_context.SurfaceType, "SurfaceTypeId", "SurfaceTypeId", busStop.SurfaceTypeId);
  93 + return View(busStop);
  94 + }
  95 +
  96 + // POST: BusStop/Edit/5
  97 + // To protect from overposting attacks, please enable the specific properties you want to bind to, for
  98 + // more details see http://go.microsoft.com/fwlink/?LinkId=317598.
  99 + [HttpPost]
  100 + [ValidateAntiForgeryToken]
  101 + public async Task<IActionResult> 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)
  102 + {
  103 + if (id != busStop.BusStopId)
  104 + {
  105 + return NotFound();
  106 + }
  107 +
  108 + if (ModelState.IsValid)
  109 + {
  110 + try
  111 + {
  112 + _context.Update(busStop);
  113 + await _context.SaveChangesAsync();
  114 + }
  115 + catch (DbUpdateConcurrencyException)
  116 + {
  117 + if (!BusStopExists(busStop.BusStopId))
  118 + {
  119 + return NotFound();
  120 + }
  121 + else
  122 + {
  123 + throw;
  124 + }
  125 + }
  126 + return RedirectToAction("Index");
  127 + }
  128 + ViewData["RegionId"] = new SelectList(_context.Region, "RegionId", "RegionId", busStop.RegionId);
  129 + ViewData["RoadId"] = new SelectList(_context.Road, "RoadId", "RoadId", busStop.RoadId);
  130 + ViewData["SettlementId"] = new SelectList(_context.Settlement, "SettlementId", "Name", busStop.SettlementId);
  131 + ViewData["StateCommonId"] = new SelectList(_context.StateCommon, "StateCommonId", "StateCommonId", busStop.StateCommonId);
  132 + ViewData["SurfaceTypeId"] = new SelectList(_context.SurfaceType, "SurfaceTypeId", "SurfaceTypeId", busStop.SurfaceTypeId);
  133 + return View(busStop);
  134 + }
  135 +
  136 + // GET: BusStop/Delete/5
  137 + public async Task<IActionResult> Delete(int? id)
  138 + {
  139 + if (id == null)
  140 + {
  141 + return NotFound();
  142 + }
  143 +
  144 + var busStop = await _context.BusStop.SingleOrDefaultAsync(m => m.BusStopId == id);
  145 + if (busStop == null)
  146 + {
  147 + return NotFound();
  148 + }
  149 +
  150 + return View(busStop);
  151 + }
  152 +
  153 + // POST: BusStop/Delete/5
  154 + [HttpPost, ActionName("Delete")]
  155 + [ValidateAntiForgeryToken]
  156 + public async Task<IActionResult> DeleteConfirmed(int id)
  157 + {
  158 + var busStop = await _context.BusStop.SingleOrDefaultAsync(m => m.BusStopId == id);
  159 + _context.BusStop.Remove(busStop);
  160 + await _context.SaveChangesAsync();
  161 + return RedirectToAction("Index");
  162 + }
  163 +
  164 + private bool BusStopExists(int id)
  165 + {
  166 + return _context.BusStop.Any(e => e.BusStopId == id);
  167 + }
  168 + }
  169 +}
@@ -7,7 +7,9 @@ using Microsoft.AspNetCore.Hosting; @@ -7,7 +7,9 @@ using Microsoft.AspNetCore.Hosting;
7 using Microsoft.Extensions.Configuration; 7 using Microsoft.Extensions.Configuration;
8 using Microsoft.Extensions.DependencyInjection; 8 using Microsoft.Extensions.DependencyInjection;
9 using Microsoft.Extensions.Logging; 9 using Microsoft.Extensions.Logging;
10 - 10 +using Microsoft.EntityFrameworkCore;
  11 +using Maps.Models;
  12 +using Maps.Entities;
11 namespace Maps 13 namespace Maps
12 { 14 {
13 public class Startup 15 public class Startup
@@ -37,26 +39,24 @@ namespace Maps @@ -37,26 +39,24 @@ namespace Maps
37 services.AddApplicationInsightsTelemetry(Configuration); 39 services.AddApplicationInsightsTelemetry(Configuration);
38 40
39 services.AddMvc(); 41 services.AddMvc();
  42 +
  43 + var connectionString = Configuration["DbContextSettings:ConnectionString"];
  44 + services.AddDbContext<PostgresDbContext>(opts => opts.UseNpgsql(connectionString));
  45 +
40 } 46 }
41 47
42 // This method gets called by the runtime. Use this method to configure the HTTP request pipeline. 48 // This method gets called by the runtime. Use this method to configure the HTTP request pipeline.
43 public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory) 49 public void Configure(IApplicationBuilder app, IHostingEnvironment env, ILoggerFactory loggerFactory)
44 { 50 {
45 - loggerFactory.AddConsole(Configuration.GetSection("Logging"));  
46 - loggerFactory.AddDebug();  
47 51
48 - app.UseApplicationInsightsRequestTelemetry();  
49 52
50 - if (env.IsDevelopment())  
51 - {  
52 app.UseDeveloperExceptionPage(); 53 app.UseDeveloperExceptionPage();
53 app.UseBrowserLink(); 54 app.UseBrowserLink();
54 - }  
55 - else  
56 - {  
57 - app.UseExceptionHandler("/Home/Error");  
58 - } 55 +
  56 + loggerFactory.AddConsole(Configuration.GetSection("Logging"));
  57 + loggerFactory.AddDebug();
59 58
  59 + app.UseApplicationInsightsRequestTelemetry();
60 app.UseApplicationInsightsExceptionTelemetry(); 60 app.UseApplicationInsightsExceptionTelemetry();
61 61
62 app.UseStaticFiles(); 62 app.UseStaticFiles();
Views/BusStop/Create.cshtml 0 → 100755
  1 +@model Maps.Entities.BusStop
  2 +
  3 +
  4 +
  5 +<form asp-action="Create">
  6 + <div class="form-horizontal">
  7 + <h4>BusStop</h4>
  8 + <hr />
  9 + <div asp-validation-summary="ModelOnly" class="text-danger"></div>
  10 + <div class="form-group">
  11 + <label asp-for="AreaLandAvailability" class="col-md-2 control-label"></label>
  12 + <div class="col-md-10">
  13 + <input asp-for="AreaLandAvailability" class="form-control" />
  14 + <span asp-validation-for="AreaLandAvailability" class="text-danger" />
  15 + </div>
  16 + </div>
  17 + <div class="form-group">
  18 + <label asp-for="AreaStopAvailability" class="col-md-2 control-label"></label>
  19 + <div class="col-md-10">
  20 + <input asp-for="AreaStopAvailability" class="form-control" />
  21 + <span asp-validation-for="AreaStopAvailability" class="text-danger" />
  22 + </div>
  23 + </div>
  24 + <div class="form-group">
  25 + <label asp-for="BalanceCost" class="col-md-2 control-label"></label>
  26 + <div class="col-md-10">
  27 + <input asp-for="BalanceCost" class="form-control" />
  28 + <span asp-validation-for="BalanceCost" class="text-danger" />
  29 + </div>
  30 + </div>
  31 + <div class="form-group">
  32 + <label asp-for="BusStationCardId" class="col-md-2 control-label"></label>
  33 + <div class="col-md-10">
  34 + <input asp-for="BusStationCardId" class="form-control" />
  35 + <span asp-validation-for="BusStationCardId" class="text-danger" />
  36 + </div>
  37 + </div>
  38 + <div class="form-group">
  39 + <label asp-for="CrossSectionNumber" class="col-md-2 control-label"></label>
  40 + <div class="col-md-10">
  41 + <input asp-for="CrossSectionNumber" class="form-control" />
  42 + <span asp-validation-for="CrossSectionNumber" class="text-danger" />
  43 + </div>
  44 + </div>
  45 + <div class="form-group">
  46 + <label asp-for="DateActual" class="col-md-2 control-label"></label>
  47 + <div class="col-md-10">
  48 + <input asp-for="DateActual" class="form-control" />
  49 + <span asp-validation-for="DateActual" class="text-danger" />
  50 + </div>
  51 + </div>
  52 + <div class="form-group">
  53 + <label asp-for="LocationLeft" class="col-md-2 control-label"></label>
  54 + <div class="col-md-10">
  55 + <input asp-for="LocationLeft" class="form-control" />
  56 + <span asp-validation-for="LocationLeft" class="text-danger" />
  57 + </div>
  58 + </div>
  59 + <div class="form-group">
  60 + <label asp-for="LocationRight" class="col-md-2 control-label"></label>
  61 + <div class="col-md-10">
  62 + <input asp-for="LocationRight" class="form-control" />
  63 + <span asp-validation-for="LocationRight" class="text-danger" />
  64 + </div>
  65 + </div>
  66 + <div class="form-group">
  67 + <label asp-for="PocketAvailability" class="col-md-2 control-label"></label>
  68 + <div class="col-md-10">
  69 + <input asp-for="PocketAvailability" class="form-control" />
  70 + <span asp-validation-for="PocketAvailability" class="text-danger" />
  71 + </div>
  72 + </div>
  73 + <div class="form-group">
  74 + <label asp-for="Position" class="col-md-2 control-label"></label>
  75 + <div class="col-md-10">
  76 + <input asp-for="Position" class="form-control" />
  77 + <span asp-validation-for="Position" class="text-danger" />
  78 + </div>
  79 + </div>
  80 + <div class="form-group">
  81 + <label asp-for="RegionId" class="col-md-2 control-label"></label>
  82 + <div class="col-md-10">
  83 + <select asp-for="RegionId" class ="form-control" asp-items="ViewBag.RegionId"></select>
  84 + </div>
  85 + </div>
  86 + <div class="form-group">
  87 + <label asp-for="RepairCertificate" class="col-md-2 control-label"></label>
  88 + <div class="col-md-10">
  89 + <input asp-for="RepairCertificate" class="form-control" />
  90 + <span asp-validation-for="RepairCertificate" class="text-danger" />
  91 + </div>
  92 + </div>
  93 + <div class="form-group">
  94 + <label asp-for="RoadId" class="col-md-2 control-label"></label>
  95 + <div class="col-md-10">
  96 + <select asp-for="RoadId" class ="form-control" asp-items="ViewBag.RoadId"></select>
  97 + </div>
  98 + </div>
  99 + <div class="form-group">
  100 + <label asp-for="SettlementId" class="col-md-2 control-label"></label>
  101 + <div class="col-md-10">
  102 + <select asp-for="SettlementId" class ="form-control" asp-items="ViewBag.SettlementId"></select>
  103 + </div>
  104 + </div>
  105 + <div class="form-group">
  106 + <label asp-for="StateCommonId" class="col-md-2 control-label"></label>
  107 + <div class="col-md-10">
  108 + <select asp-for="StateCommonId" class ="form-control" asp-items="ViewBag.StateCommonId"></select>
  109 + </div>
  110 + </div>
  111 + <div class="form-group">
  112 + <label asp-for="SurfaceTypeId" class="col-md-2 control-label"></label>
  113 + <div class="col-md-10">
  114 + <select asp-for="SurfaceTypeId" class ="form-control" asp-items="ViewBag.SurfaceTypeId"></select>
  115 + </div>
  116 + </div>
  117 + <div class="form-group">
  118 + <label asp-for="ToiletAvailability" class="col-md-2 control-label"></label>
  119 + <div class="col-md-10">
  120 + <input asp-for="ToiletAvailability" class="form-control" />
  121 + <span asp-validation-for="ToiletAvailability" class="text-danger" />
  122 + </div>
  123 + </div>
  124 + <div class="form-group">
  125 + <label asp-for="YearBuild" class="col-md-2 control-label"></label>
  126 + <div class="col-md-10">
  127 + <input asp-for="YearBuild" class="form-control" />
  128 + <span asp-validation-for="YearBuild" class="text-danger" />
  129 + </div>
  130 + </div>
  131 + <div class="form-group">
  132 + <label asp-for="YearRepair" class="col-md-2 control-label"></label>
  133 + <div class="col-md-10">
  134 + <input asp-for="YearRepair" class="form-control" />
  135 + <span asp-validation-for="YearRepair" class="text-danger" />
  136 + </div>
  137 + </div>
  138 + <div class="form-group">
  139 + <div class="col-md-offset-2 col-md-10">
  140 + <input type="submit" value="Create" class="btn btn-default" />
  141 + </div>
  142 + </div>
  143 + </div>
  144 +</form>
  145 +
  146 +<div>
  147 + <a asp-action="Index">Back to List</a>
  148 +</div>
Views/BusStop/Delete.cshtml 0 → 100755
  1 +@model Maps.Entities.BusStop
  2 +
  3 +
  4 +
  5 +<h3>Are you sure you want to delete this?</h3>
  6 +<div>
  7 + <h4>BusStop</h4>
  8 + <hr />
  9 + <dl class="dl-horizontal">
  10 + <dt>
  11 + @Html.DisplayNameFor(model => model.AreaLandAvailability)
  12 + </dt>
  13 + <dd>
  14 + @Html.DisplayFor(model => model.AreaLandAvailability)
  15 + </dd>
  16 + <dt>
  17 + @Html.DisplayNameFor(model => model.AreaStopAvailability)
  18 + </dt>
  19 + <dd>
  20 + @Html.DisplayFor(model => model.AreaStopAvailability)
  21 + </dd>
  22 + <dt>
  23 + @Html.DisplayNameFor(model => model.BalanceCost)
  24 + </dt>
  25 + <dd>
  26 + @Html.DisplayFor(model => model.BalanceCost)
  27 + </dd>
  28 + <dt>
  29 + @Html.DisplayNameFor(model => model.BusStationCardId)
  30 + </dt>
  31 + <dd>
  32 + @Html.DisplayFor(model => model.BusStationCardId)
  33 + </dd>
  34 + <dt>
  35 + @Html.DisplayNameFor(model => model.CrossSectionNumber)
  36 + </dt>
  37 + <dd>
  38 + @Html.DisplayFor(model => model.CrossSectionNumber)
  39 + </dd>
  40 + <dt>
  41 + @Html.DisplayNameFor(model => model.DateActual)
  42 + </dt>
  43 + <dd>
  44 + @Html.DisplayFor(model => model.DateActual)
  45 + </dd>
  46 + <dt>
  47 + @Html.DisplayNameFor(model => model.LocationLeft)
  48 + </dt>
  49 + <dd>
  50 + @Html.DisplayFor(model => model.LocationLeft)
  51 + </dd>
  52 + <dt>
  53 + @Html.DisplayNameFor(model => model.LocationRight)
  54 + </dt>
  55 + <dd>
  56 + @Html.DisplayFor(model => model.LocationRight)
  57 + </dd>
  58 + <dt>
  59 + @Html.DisplayNameFor(model => model.PocketAvailability)
  60 + </dt>
  61 + <dd>
  62 + @Html.DisplayFor(model => model.PocketAvailability)
  63 + </dd>
  64 + <dt>
  65 + @Html.DisplayNameFor(model => model.Position)
  66 + </dt>
  67 + <dd>
  68 + @Html.DisplayFor(model => model.Position)
  69 + </dd>
  70 + <dt>
  71 + @Html.DisplayNameFor(model => model.RepairCertificate)
  72 + </dt>
  73 + <dd>
  74 + @Html.DisplayFor(model => model.RepairCertificate)
  75 + </dd>
  76 + <dt>
  77 + @Html.DisplayNameFor(model => model.ToiletAvailability)
  78 + </dt>
  79 + <dd>
  80 + @Html.DisplayFor(model => model.ToiletAvailability)
  81 + </dd>
  82 + <dt>
  83 + @Html.DisplayNameFor(model => model.YearBuild)
  84 + </dt>
  85 + <dd>
  86 + @Html.DisplayFor(model => model.YearBuild)
  87 + </dd>
  88 + <dt>
  89 + @Html.DisplayNameFor(model => model.YearRepair)
  90 + </dt>
  91 + <dd>
  92 + @Html.DisplayFor(model => model.YearRepair)
  93 + </dd>
  94 + </dl>
  95 +
  96 + <form asp-action="Delete">
  97 + <div class="form-actions no-color">
  98 + <input type="submit" value="Delete" class="btn btn-default" /> |
  99 + <a asp-action="Index">Back to List</a>
  100 + </div>
  101 + </form>
  102 +</div>
Views/BusStop/Details.cshtml 0 → 100755
  1 +@model Maps.Entities.BusStop
  2 +
  3 +
  4 +<div>
  5 + <h4>BusStop</h4>
  6 + <hr />
  7 + <dl class="dl-horizontal">
  8 + <dt>
  9 + @Html.DisplayNameFor(model => model.AreaLandAvailability)
  10 + </dt>
  11 + <dd>
  12 + @Html.DisplayFor(model => model.AreaLandAvailability)
  13 + </dd>
  14 + <dt>
  15 + @Html.DisplayNameFor(model => model.AreaStopAvailability)
  16 + </dt>
  17 + <dd>
  18 + @Html.DisplayFor(model => model.AreaStopAvailability)
  19 + </dd>
  20 + <dt>
  21 + @Html.DisplayNameFor(model => model.BalanceCost)
  22 + </dt>
  23 + <dd>
  24 + @Html.DisplayFor(model => model.BalanceCost)
  25 + </dd>
  26 + <dt>
  27 + @Html.DisplayNameFor(model => model.BusStationCardId)
  28 + </dt>
  29 + <dd>
  30 + @Html.DisplayFor(model => model.BusStationCardId)
  31 + </dd>
  32 + <dt>
  33 + @Html.DisplayNameFor(model => model.CrossSectionNumber)
  34 + </dt>
  35 + <dd>
  36 + @Html.DisplayFor(model => model.CrossSectionNumber)
  37 + </dd>
  38 + <dt>
  39 + @Html.DisplayNameFor(model => model.DateActual)
  40 + </dt>
  41 + <dd>
  42 + @Html.DisplayFor(model => model.DateActual)
  43 + </dd>
  44 + <dt>
  45 + @Html.DisplayNameFor(model => model.LocationLeft)
  46 + </dt>
  47 + <dd>
  48 + @Html.DisplayFor(model => model.LocationLeft)
  49 + </dd>
  50 + <dt>
  51 + @Html.DisplayNameFor(model => model.LocationRight)
  52 + </dt>
  53 + <dd>
  54 + @Html.DisplayFor(model => model.LocationRight)
  55 + </dd>
  56 + <dt>
  57 + @Html.DisplayNameFor(model => model.PocketAvailability)
  58 + </dt>
  59 + <dd>
  60 + @Html.DisplayFor(model => model.PocketAvailability)
  61 + </dd>
  62 + <dt>
  63 + @Html.DisplayNameFor(model => model.Position)
  64 + </dt>
  65 + <dd>
  66 + @Html.DisplayFor(model => model.Position)
  67 + </dd>
  68 + <dt>
  69 + @Html.DisplayNameFor(model => model.RepairCertificate)
  70 + </dt>
  71 + <dd>
  72 + @Html.DisplayFor(model => model.RepairCertificate)
  73 + </dd>
  74 + <dt>
  75 + @Html.DisplayNameFor(model => model.ToiletAvailability)
  76 + </dt>
  77 + <dd>
  78 + @Html.DisplayFor(model => model.ToiletAvailability)
  79 + </dd>
  80 + <dt>
  81 + @Html.DisplayNameFor(model => model.YearBuild)
  82 + </dt>
  83 + <dd>
  84 + @Html.DisplayFor(model => model.YearBuild)
  85 + </dd>
  86 + <dt>
  87 + @Html.DisplayNameFor(model => model.YearRepair)
  88 + </dt>
  89 + <dd>
  90 + @Html.DisplayFor(model => model.YearRepair)
  91 + </dd>
  92 + </dl>
  93 +</div>
  94 +<div>
  95 + <a asp-action="Edit" asp-route-id="@Model.BusStopId">Edit</a> |
  96 + <a asp-action="Index">Back to List</a>
  97 +</div>
0 \ No newline at end of file 98 \ No newline at end of file
Views/BusStop/Edit.cshtml 0 → 100755
  1 +@model Maps.Entities.BusStop
  2 +
  3 +
  4 +<form asp-action="Edit">
  5 + <div class="form-horizontal">
  6 + <h4>BusStop</h4>
  7 + <hr />
  8 + <div asp-validation-summary="ModelOnly" class="text-danger"></div>
  9 + <input type="hidden" asp-for="BusStopId" />
  10 + <div class="form-group">
  11 + <label asp-for="AreaLandAvailability" class="col-md-2 control-label"></label>
  12 + <div class="col-md-10">
  13 + <input asp-for="AreaLandAvailability" class="form-control" />
  14 + <span asp-validation-for="AreaLandAvailability" class="text-danger" />
  15 + </div>
  16 + </div>
  17 + <div class="form-group">
  18 + <label asp-for="AreaStopAvailability" class="col-md-2 control-label"></label>
  19 + <div class="col-md-10">
  20 + <input asp-for="AreaStopAvailability" class="form-control" />
  21 + <span asp-validation-for="AreaStopAvailability" class="text-danger" />
  22 + </div>
  23 + </div>
  24 + <div class="form-group">
  25 + <label asp-for="BalanceCost" class="col-md-2 control-label"></label>
  26 + <div class="col-md-10">
  27 + <input asp-for="BalanceCost" class="form-control" />
  28 + <span asp-validation-for="BalanceCost" class="text-danger" />
  29 + </div>
  30 + </div>
  31 + <div class="form-group">
  32 + <label asp-for="BusStationCardId" class="col-md-2 control-label"></label>
  33 + <div class="col-md-10">
  34 + <input asp-for="BusStationCardId" class="form-control" />
  35 + <span asp-validation-for="BusStationCardId" class="text-danger" />
  36 + </div>
  37 + </div>
  38 + <div class="form-group">
  39 + <label asp-for="CrossSectionNumber" class="col-md-2 control-label"></label>
  40 + <div class="col-md-10">
  41 + <input asp-for="CrossSectionNumber" class="form-control" />
  42 + <span asp-validation-for="CrossSectionNumber" class="text-danger" />
  43 + </div>
  44 + </div>
  45 + <div class="form-group">
  46 + <label asp-for="DateActual" class="col-md-2 control-label"></label>
  47 + <div class="col-md-10">
  48 + <input asp-for="DateActual" class="form-control" />
  49 + <span asp-validation-for="DateActual" class="text-danger" />
  50 + </div>
  51 + </div>
  52 + <div class="form-group">
  53 + <label asp-for="LocationLeft" class="col-md-2 control-label"></label>
  54 + <div class="col-md-10">
  55 + <input asp-for="LocationLeft" class="form-control" />
  56 + <span asp-validation-for="LocationLeft" class="text-danger" />
  57 + </div>
  58 + </div>
  59 + <div class="form-group">
  60 + <label asp-for="LocationRight" class="col-md-2 control-label"></label>
  61 + <div class="col-md-10">
  62 + <input asp-for="LocationRight" class="form-control" />
  63 + <span asp-validation-for="LocationRight" class="text-danger" />
  64 + </div>
  65 + </div>
  66 + <div class="form-group">
  67 + <label asp-for="PocketAvailability" class="col-md-2 control-label"></label>
  68 + <div class="col-md-10">
  69 + <input asp-for="PocketAvailability" class="form-control" />
  70 + <span asp-validation-for="PocketAvailability" class="text-danger" />
  71 + </div>
  72 + </div>
  73 + <div class="form-group">
  74 + <label asp-for="Position" class="col-md-2 control-label"></label>
  75 + <div class="col-md-10">
  76 + <input asp-for="Position" class="form-control" />
  77 + <span asp-validation-for="Position" class="text-danger" />
  78 + </div>
  79 + </div>
  80 + <div class="form-group">
  81 + <label asp-for="RegionId" class="control-label col-md-2"></label>
  82 + <div class="col-md-10">
  83 + <select asp-for="RegionId" class="form-control" asp-items="ViewBag.RegionId"></select>
  84 + <span asp-validation-for="RegionId" class="text-danger" />
  85 + </div>
  86 + </div>
  87 + <div class="form-group">
  88 + <label asp-for="RepairCertificate" class="col-md-2 control-label"></label>
  89 + <div class="col-md-10">
  90 + <input asp-for="RepairCertificate" class="form-control" />
  91 + <span asp-validation-for="RepairCertificate" class="text-danger" />
  92 + </div>
  93 + </div>
  94 + <div class="form-group">
  95 + <label asp-for="RoadId" class="control-label col-md-2"></label>
  96 + <div class="col-md-10">
  97 + <select asp-for="RoadId" class="form-control" asp-items="ViewBag.RoadId"></select>
  98 + <span asp-validation-for="RoadId" class="text-danger" />
  99 + </div>
  100 + </div>
  101 + <div class="form-group">
  102 + <label asp-for="SettlementId" class="control-label col-md-2"></label>
  103 + <div class="col-md-10">
  104 + <select asp-for="SettlementId" class="form-control" asp-items="ViewBag.SettlementId"></select>
  105 + <span asp-validation-for="SettlementId" class="text-danger" />
  106 + </div>
  107 + </div>
  108 + <div class="form-group">
  109 + <label asp-for="StateCommonId" class="control-label col-md-2"></label>
  110 + <div class="col-md-10">
  111 + <select asp-for="StateCommonId" class="form-control" asp-items="ViewBag.StateCommonId"></select>
  112 + <span asp-validation-for="StateCommonId" class="text-danger" />
  113 + </div>
  114 + </div>
  115 + <div class="form-group">
  116 + <label asp-for="SurfaceTypeId" class="control-label col-md-2"></label>
  117 + <div class="col-md-10">
  118 + <select asp-for="SurfaceTypeId" class="form-control" asp-items="ViewBag.SurfaceTypeId"></select>
  119 + <span asp-validation-for="SurfaceTypeId" class="text-danger" />
  120 + </div>
  121 + </div>
  122 + <div class="form-group">
  123 + <label asp-for="ToiletAvailability" class="col-md-2 control-label"></label>
  124 + <div class="col-md-10">
  125 + <input asp-for="ToiletAvailability" class="form-control" />
  126 + <span asp-validation-for="ToiletAvailability" class="text-danger" />
  127 + </div>
  128 + </div>
  129 + <div class="form-group">
  130 + <label asp-for="YearBuild" class="col-md-2 control-label"></label>
  131 + <div class="col-md-10">
  132 + <input asp-for="YearBuild" class="form-control" />
  133 + <span asp-validation-for="YearBuild" class="text-danger" />
  134 + </div>
  135 + </div>
  136 + <div class="form-group">
  137 + <label asp-for="YearRepair" class="col-md-2 control-label"></label>
  138 + <div class="col-md-10">
  139 + <input asp-for="YearRepair" class="form-control" />
  140 + <span asp-validation-for="YearRepair" class="text-danger" />
  141 + </div>
  142 + </div>
  143 + <div class="form-group">
  144 + <div class="col-md-offset-2 col-md-10">
  145 + <input type="submit" value="Save" class="btn btn-default" />
  146 + </div>
  147 + </div>
  148 + </div>
  149 +</form>
  150 +
  151 +<div>
  152 + <a asp-action="Index">Back to List</a>
  153 +</div>
Views/BusStop/Index.cshtml 0 → 100755
  1 +@model IEnumerable<Maps.Entities.BusStop>
  2 +
  3 +
  4 +<p>
  5 + <a asp-action="Create">Create New</a>
  6 +</p>
  7 +<table class="table">
  8 + <thead>
  9 + <tr>
  10 + <th>
  11 + @Html.DisplayNameFor(model => model.AreaLandAvailability)
  12 + </th>
  13 + <th>
  14 + @Html.DisplayNameFor(model => model.AreaStopAvailability)
  15 + </th>
  16 + <th>
  17 + @Html.DisplayNameFor(model => model.BalanceCost)
  18 + </th>
  19 + <th>
  20 + @Html.DisplayNameFor(model => model.BusStationCardId)
  21 + </th>
  22 + <th>
  23 + @Html.DisplayNameFor(model => model.CrossSectionNumber)
  24 + </th>
  25 + <th>
  26 + @Html.DisplayNameFor(model => model.DateActual)
  27 + </th>
  28 + <th>
  29 + @Html.DisplayNameFor(model => model.LocationLeft)
  30 + </th>
  31 + <th>
  32 + @Html.DisplayNameFor(model => model.LocationRight)
  33 + </th>
  34 + <th>
  35 + @Html.DisplayNameFor(model => model.PocketAvailability)
  36 + </th>
  37 + <th>
  38 + @Html.DisplayNameFor(model => model.Position)
  39 + </th>
  40 + <th>
  41 + @Html.DisplayNameFor(model => model.RepairCertificate)
  42 + </th>
  43 + <th>
  44 + @Html.DisplayNameFor(model => model.ToiletAvailability)
  45 + </th>
  46 + <th>
  47 + @Html.DisplayNameFor(model => model.YearBuild)
  48 + </th>
  49 + <th>
  50 + @Html.DisplayNameFor(model => model.YearRepair)
  51 + </th>
  52 + <th></th>
  53 + </tr>
  54 + </thead>
  55 + <tbody>
  56 +@foreach (var item in Model) {
  57 + <tr>
  58 + <td>
  59 + @Html.DisplayFor(modelItem => item.AreaLandAvailability)
  60 + </td>
  61 + <td>
  62 + @Html.DisplayFor(modelItem => item.AreaStopAvailability)
  63 + </td>
  64 + <td>
  65 + @Html.DisplayFor(modelItem => item.BalanceCost)
  66 + </td>
  67 + <td>
  68 + @Html.DisplayFor(modelItem => item.BusStationCardId)
  69 + </td>
  70 + <td>
  71 + @Html.DisplayFor(modelItem => item.CrossSectionNumber)
  72 + </td>
  73 + <td>
  74 + @Html.DisplayFor(modelItem => item.DateActual)
  75 + </td>
  76 + <td>
  77 + @Html.DisplayFor(modelItem => item.LocationLeft)
  78 + </td>
  79 + <td>
  80 + @Html.DisplayFor(modelItem => item.LocationRight)
  81 + </td>
  82 + <td>
  83 + @Html.DisplayFor(modelItem => item.PocketAvailability)
  84 + </td>
  85 + <td>
  86 + @Html.DisplayFor(modelItem => item.Position)
  87 + </td>
  88 + <td>
  89 + @Html.DisplayFor(modelItem => item.RepairCertificate)
  90 + </td>
  91 + <td>
  92 + @Html.DisplayFor(modelItem => item.ToiletAvailability)
  93 + </td>
  94 + <td>
  95 + @Html.DisplayFor(modelItem => item.YearBuild)
  96 + </td>
  97 + <td>
  98 + @Html.DisplayFor(modelItem => item.YearRepair)
  99 + </td>
  100 + <td>
  101 + <a asp-action="Edit" asp-route-id="@item.BusStopId">Edit</a> |
  102 + <a asp-action="Details" asp-route-id="@item.BusStopId">Details</a> |
  103 + <a asp-action="Delete" asp-route-id="@item.BusStopId">Delete</a>
  104 + </td>
  105 + </tr>
  106 +}
  107 + </tbody>
  108 +</table>
  109 +
1 { 1 {
2 - "ApplicationInsights": {  
3 - "InstrumentationKey": ""  
4 - },  
5 - "Logging": {  
6 - "IncludeScopes": false,  
7 - "LogLevel": {  
8 - "Default": "Debug",  
9 - "System": "Information",  
10 - "Microsoft": "Information" 2 + "ApplicationInsights": {
  3 + "InstrumentationKey": ""
  4 + },
  5 + "Logging": {
  6 + "IncludeScopes": false,
  7 + "LogLevel": {
  8 + "Default": "Debug",
  9 + "System": "Information",
  10 + "Microsoft": "Information"
  11 + }
  12 + },
  13 + "DbContextSettings": {
  14 + "ConnectionString": "User ID=coremap;Password=5F9g4V9m;Host=195.248.225.149;Port=5432;Database=coremap;Pooling=true;"
11 } 15 }
12 - }  
13 -} 16 +}
14 \ No newline at end of file 17 \ No newline at end of file
1 { 1 {
2 "dependencies": { 2 "dependencies": {
3 "Microsoft.NETCore.App": { 3 "Microsoft.NETCore.App": {
4 - "version": "1.0.1", 4 + "version": "1.1.0",
5 "type": "platform" 5 "type": "platform"
6 }, 6 },
7 "Microsoft.ApplicationInsights.AspNetCore": "1.0.0", 7 "Microsoft.ApplicationInsights.AspNetCore": "1.0.0",
@@ -23,6 +23,14 @@ @@ -23,6 +23,14 @@
23 "Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0", 23 "Microsoft.Extensions.Options.ConfigurationExtensions": "1.0.0",
24 "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0", 24 "Microsoft.VisualStudio.Web.BrowserLink.Loader": "14.0.0",
25 "Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final", 25 "Microsoft.EntityFrameworkCore.Tools": "1.0.0-preview2-final",
  26 + "Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
  27 + "version": "1.0.0-preview2-final",
  28 + "type": "build"
  29 + },
  30 + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": {
  31 + "version": "1.0.0-preview2-final",
  32 + "type": "build"
  33 + },
26 "Npgsql.EntityFrameworkCore.PostgreSQL": "1.0.2", 34 "Npgsql.EntityFrameworkCore.PostgreSQL": "1.0.2",
27 "Npgsql.EntityFrameworkCore.PostgreSQL.Design": "1.0.2" 35 "Npgsql.EntityFrameworkCore.PostgreSQL.Design": "1.0.2"
28 }, 36 },
@@ -34,40 +42,47 @@ @@ -34,40 +42,47 @@
34 "imports": "portable-net45+win8+dnxcore50" 42 "imports": "portable-net45+win8+dnxcore50"
35 }, 43 },
36 "Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview2-final", 44 "Microsoft.AspNetCore.Razor.Tools": "1.0.0-preview2-final",
37 - "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final" 45 + "Microsoft.AspNetCore.Server.IISIntegration.Tools": "1.0.0-preview2-final",
  46 + "Microsoft.VisualStudio.Web.CodeGeneration.Tools": {
  47 + "version": "1.0.0-preview2-final",
  48 + "imports": [
  49 + "portable-net45+win8"
  50 + ]
  51 + }
38 }, 52 },
39 53
40 - "frameworks": {  
41 - "netcoreapp1.0": {  
42 - "imports": [  
43 - "dotnet5.6",  
44 - "portable-net45+win8"  
45 - ]  
46 - }  
47 - }, 54 + "frameworks": {
  55 + "netcoreapp1.0": {
  56 + "imports": [
  57 + "dotnet5.6",
  58 + "portable-net45+win8"
  59 + ]
  60 + }
  61 + },
48 62
49 - "buildOptions": {  
50 - "emitEntryPoint": true,  
51 - "preserveCompilationContext": true  
52 - }, 63 + "buildOptions": {
  64 + "emitEntryPoint": true,
  65 + "preserveCompilationContext": true,
  66 + "debugType": "portable"
  67 + },
53 68
54 - "runtimeOptions": {  
55 - "configProperties": {  
56 - "System.GC.Server": true  
57 - }  
58 - }, 69 + "runtimeOptions": {
  70 + "configProperties": {
  71 + "System.GC.Server": true
  72 + }
  73 + },
59 74
60 - "publishOptions": {  
61 - "include": [  
62 - "wwwroot",  
63 - "**/*.cshtml",  
64 - "appsettings.json",  
65 - "web.config"  
66 - ]  
67 - }, 75 + "publishOptions": {
  76 + "include": [
  77 + "wwwroot",
  78 + "**/*.cshtml",
  79 + "appsettings.json",
  80 + "web.config"
  81 + ]
  82 + },
68 83
69 - "scripts": {  
70 - "prepublish": [ "bower install", "dotnet bundle" ],  
71 - "postpublish": [ "dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%" ]  
72 - }  
73 -} 84 + "scripts": {
  85 + "prepublish": ["bower install", "dotnet bundle"],
  86 + "postpublish": ["dotnet publish-iis --publish-folder %publish:OutputPath% --framework %publish:FullTargetFramework%"]
  87 + }
  88 +}
74 \ No newline at end of file 89 \ No newline at end of file
project.lock.json 100644 → 100755
@@ -3,7 +3,7 @@ @@ -3,7 +3,7 @@
3 "version": 2, 3 "version": 2,
4 "targets": { 4 "targets": {
5 ".NETCoreApp,Version=v1.0": { 5 ".NETCoreApp,Version=v1.0": {
6 - "Libuv/1.9.0": { 6 + "Libuv/1.9.1": {
7 "type": "package", 7 "type": "package",
8 "dependencies": { 8 "dependencies": {
9 "Microsoft.NETCore.Platforms": "1.0.1" 9 "Microsoft.NETCore.Platforms": "1.0.1"
@@ -860,6 +860,19 @@ @@ -860,6 +860,19 @@
860 "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {} 860 "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": {}
861 } 861 }
862 }, 862 },
  863 + "Microsoft.CodeAnalysis.CSharp.Workspaces/1.3.0": {
  864 + "type": "package",
  865 + "dependencies": {
  866 + "Microsoft.CodeAnalysis.CSharp": "[1.3.0]",
  867 + "Microsoft.CodeAnalysis.Workspaces.Common": "[1.3.0]"
  868 + },
  869 + "compile": {
  870 + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {}
  871 + },
  872 + "runtime": {
  873 + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {}
  874 + }
  875 + },
863 "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { 876 "Microsoft.CodeAnalysis.VisualBasic/1.3.0": {
864 "type": "package", 877 "type": "package",
865 "dependencies": { 878 "dependencies": {
@@ -872,6 +885,36 @@ @@ -872,6 +885,36 @@
872 "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll": {} 885 "lib/netstandard1.3/Microsoft.CodeAnalysis.VisualBasic.dll": {}
873 } 886 }
874 }, 887 },
  888 + "Microsoft.CodeAnalysis.Workspaces.Common/1.3.0": {
  889 + "type": "package",
  890 + "dependencies": {
  891 + "Microsoft.CodeAnalysis.Common": "[1.3.0]",
  892 + "Microsoft.Composition": "1.0.27"
  893 + },
  894 + "compile": {
  895 + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {}
  896 + },
  897 + "runtime": {
  898 + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll": {}
  899 + }
  900 + },
  901 + "Microsoft.Composition/1.0.27": {
  902 + "type": "package",
  903 + "compile": {
  904 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll": {},
  905 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll": {},
  906 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll": {},
  907 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll": {},
  908 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll": {}
  909 + },
  910 + "runtime": {
  911 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll": {},
  912 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll": {},
  913 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll": {},
  914 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll": {},
  915 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll": {}
  916 + }
  917 + },
875 "Microsoft.CSharp/4.0.1": { 918 "Microsoft.CSharp/4.0.1": {
876 "type": "package", 919 "type": "package",
877 "dependencies": { 920 "dependencies": {
@@ -1053,6 +1096,20 @@ @@ -1053,6 +1096,20 @@
1053 "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll": {} 1096 "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll": {}
1054 } 1097 }
1055 }, 1098 },
  1099 + "Microsoft.EntityFrameworkCore.SqlServer/1.0.0": {
  1100 + "type": "package",
  1101 + "dependencies": {
  1102 + "Microsoft.EntityFrameworkCore.Relational": "1.0.0",
  1103 + "System.Data.SqlClient": "4.1.0",
  1104 + "System.Threading.Thread": "4.0.0"
  1105 + },
  1106 + "compile": {
  1107 + "lib/netstandard1.3/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
  1108 + },
  1109 + "runtime": {
  1110 + "lib/netstandard1.3/Microsoft.EntityFrameworkCore.SqlServer.dll": {}
  1111 + }
  1112 + },
1056 "Microsoft.EntityFrameworkCore.Tools/1.0.0-preview2-final": { 1113 "Microsoft.EntityFrameworkCore.Tools/1.0.0-preview2-final": {
1057 "type": "package", 1114 "type": "package",
1058 "dependencies": { 1115 "dependencies": {
@@ -1558,10 +1615,10 @@ @@ -1558,10 +1615,10 @@
1558 "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {} 1615 "lib/netstandard1.1/Microsoft.Net.Http.Headers.dll": {}
1559 } 1616 }
1560 }, 1617 },
1561 - "Microsoft.NETCore.App/1.0.1": { 1618 + "Microsoft.NETCore.App/1.1.0": {
1562 "type": "package", 1619 "type": "package",
1563 "dependencies": { 1620 "dependencies": {
1564 - "Libuv": "1.9.0", 1621 + "Libuv": "1.9.1",
1565 "Microsoft.CSharp": "4.0.1", 1622 "Microsoft.CSharp": "4.0.1",
1566 "Microsoft.CodeAnalysis.CSharp": "1.3.0", 1623 "Microsoft.CodeAnalysis.CSharp": "1.3.0",
1567 "Microsoft.CodeAnalysis.VisualBasic": "1.3.0", 1624 "Microsoft.CodeAnalysis.VisualBasic": "1.3.0",
@@ -1703,6 +1760,113 @@ @@ -1703,6 +1760,113 @@
1703 "lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {} 1760 "lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.dll": {}
1704 } 1761 }
1705 }, 1762 },
  1763 + "Microsoft.VisualStudio.Web.CodeGeneration/1.0.0-preview2-final": {
  1764 + "type": "package",
  1765 + "dependencies": {
  1766 + "Microsoft.Extensions.CommandLineUtils": "1.0.0",
  1767 + "Microsoft.Extensions.DependencyInjection": "1.0.0",
  1768 + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "1.0.0-preview2-final",
  1769 + "System.Linq.Expressions": "4.1.0"
  1770 + },
  1771 + "compile": {
  1772 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.dll": {}
  1773 + },
  1774 + "runtime": {
  1775 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.dll": {}
  1776 + }
  1777 + },
  1778 + "Microsoft.VisualStudio.Web.CodeGeneration.Core/1.0.0-preview2-final": {
  1779 + "type": "package",
  1780 + "dependencies": {
  1781 + "Microsoft.DotNet.Cli.Utils": "1.0.0-preview2-003121",
  1782 + "Microsoft.Extensions.CommandLineUtils": "1.0.0",
  1783 + "Microsoft.Extensions.DependencyInjection": "1.0.0",
  1784 + "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "1.0.0-preview2-final",
  1785 + "Newtonsoft.Json": "9.0.1",
  1786 + "System.Console": "4.0.0",
  1787 + "System.Diagnostics.Process": "4.1.0",
  1788 + "System.Runtime.Serialization.Primitives": "4.1.1"
  1789 + },
  1790 + "compile": {
  1791 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {}
  1792 + },
  1793 + "runtime": {
  1794 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {}
  1795 + }
  1796 + },
  1797 + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/1.0.0-preview2-final": {
  1798 + "type": "package",
  1799 + "dependencies": {
  1800 + "Microsoft.AspNetCore.Hosting": "1.0.0",
  1801 + "Microsoft.AspNetCore.Server.Kestrel": "1.0.0",
  1802 + "Microsoft.EntityFrameworkCore": "1.0.0",
  1803 + "Microsoft.EntityFrameworkCore.SqlServer": "1.0.0",
  1804 + "Microsoft.VisualStudio.Web.CodeGeneration.Core": "1.0.0-preview2-final",
  1805 + "System.AppContext": "4.1.0"
  1806 + },
  1807 + "compile": {
  1808 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {}
  1809 + },
  1810 + "runtime": {
  1811 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {}
  1812 + }
  1813 + },
  1814 + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/1.0.0-preview2-final": {
  1815 + "type": "package",
  1816 + "dependencies": {
  1817 + "Microsoft.AspNetCore.Razor": "1.0.0",
  1818 + "Microsoft.CodeAnalysis.CSharp": "1.3.0",
  1819 + "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "1.0.0-preview2-final"
  1820 + },
  1821 + "compile": {
  1822 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {}
  1823 + },
  1824 + "runtime": {
  1825 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {}
  1826 + }
  1827 + },
  1828 + "Microsoft.VisualStudio.Web.CodeGeneration.Tools/1.0.0-preview2-final": {
  1829 + "type": "package",
  1830 + "dependencies": {
  1831 + "Microsoft.NETCore.App": "1.0.0",
  1832 + "Microsoft.VisualStudio.Web.CodeGeneration": "1.0.0-preview2-final"
  1833 + },
  1834 + "compile": {
  1835 + "lib/netcoreapp1.0/dotnet-aspnet-codegenerator.dll": {}
  1836 + },
  1837 + "runtime": {
  1838 + "lib/netcoreapp1.0/dotnet-aspnet-codegenerator.dll": {}
  1839 + }
  1840 + },
  1841 + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/1.0.0-preview2-final": {
  1842 + "type": "package",
  1843 + "dependencies": {
  1844 + "Microsoft.CodeAnalysis.CSharp.Workspaces": "1.3.0",
  1845 + "Microsoft.DotNet.ProjectModel": "1.0.0-rc3-003121",
  1846 + "Microsoft.Extensions.PlatformAbstractions": "1.0.0",
  1847 + "System.AppContext": "4.1.0",
  1848 + "System.Security.Cryptography.Algorithms": "4.2.0",
  1849 + "System.Threading.Tasks.Parallel": "4.0.1"
  1850 + },
  1851 + "compile": {
  1852 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {}
  1853 + },
  1854 + "runtime": {
  1855 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {}
  1856 + }
  1857 + },
  1858 + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/1.0.0-preview2-final": {
  1859 + "type": "package",
  1860 + "dependencies": {
  1861 + "Microsoft.VisualStudio.Web.CodeGeneration": "1.0.0-preview2-final"
  1862 + },
  1863 + "compile": {
  1864 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {}
  1865 + },
  1866 + "runtime": {
  1867 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {}
  1868 + }
  1869 + },
1706 "Microsoft.Win32.Primitives/4.0.1": { 1870 "Microsoft.Win32.Primitives/4.0.1": {
1707 "type": "package", 1871 "type": "package",
1708 "dependencies": { 1872 "dependencies": {
@@ -2135,6 +2299,13 @@ @@ -2135,6 +2299,13 @@
2135 "lib/netstandard1.0/_._": {} 2299 "lib/netstandard1.0/_._": {}
2136 } 2300 }
2137 }, 2301 },
  2302 + "runtime.native.System.Data.SqlClient.sni/4.0.0": {
  2303 + "type": "package",
  2304 + "dependencies": {
  2305 + "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni": "4.0.1",
  2306 + "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni": "4.0.1"
  2307 + }
  2308 + },
2138 "runtime.native.System.IO.Compression/4.1.0": { 2309 "runtime.native.System.IO.Compression/4.1.0": {
2139 "type": "package", 2310 "type": "package",
2140 "dependencies": { 2311 "dependencies": {
@@ -2187,6 +2358,24 @@ @@ -2187,6 +2358,24 @@
2187 "lib/netstandard1.0/_._": {} 2358 "lib/netstandard1.0/_._": {}
2188 } 2359 }
2189 }, 2360 },
  2361 + "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.0.1": {
  2362 + "type": "package",
  2363 + "runtimeTargets": {
  2364 + "runtimes/win7-x64/native/sni.dll": {
  2365 + "assetType": "native",
  2366 + "rid": "win7-x64"
  2367 + }
  2368 + }
  2369 + },
  2370 + "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.0.1": {
  2371 + "type": "package",
  2372 + "runtimeTargets": {
  2373 + "runtimes/win7-x86/native/sni.dll": {
  2374 + "assetType": "native",
  2375 + "rid": "win7-x86"
  2376 + }
  2377 + }
  2378 + },
2190 "System.AppContext/4.1.0": { 2379 "System.AppContext/4.1.0": {
2191 "type": "package", 2380 "type": "package",
2192 "dependencies": { 2381 "dependencies": {
@@ -2410,6 +2599,61 @@ @@ -2410,6 +2599,61 @@
2410 "lib/netstandard1.2/System.Data.Common.dll": {} 2599 "lib/netstandard1.2/System.Data.Common.dll": {}
2411 } 2600 }
2412 }, 2601 },
  2602 + "System.Data.SqlClient/4.1.0": {
  2603 + "type": "package",
  2604 + "dependencies": {
  2605 + "Microsoft.NETCore.Platforms": "1.0.1",
  2606 + "Microsoft.Win32.Primitives": "4.0.1",
  2607 + "System.Collections": "4.0.11",
  2608 + "System.Collections.Concurrent": "4.0.12",
  2609 + "System.Data.Common": "4.1.0",
  2610 + "System.Diagnostics.Debug": "4.0.11",
  2611 + "System.Diagnostics.DiagnosticSource": "4.0.0",
  2612 + "System.Globalization": "4.0.11",
  2613 + "System.IO": "4.1.0",
  2614 + "System.IO.Pipes": "4.0.0",
  2615 + "System.Linq": "4.1.0",
  2616 + "System.Net.NameResolution": "4.0.0",
  2617 + "System.Net.Primitives": "4.0.11",
  2618 + "System.Net.Security": "4.0.0",
  2619 + "System.Net.Sockets": "4.1.0",
  2620 + "System.Reflection": "4.1.0",
  2621 + "System.Reflection.TypeExtensions": "4.1.0",
  2622 + "System.Resources.ResourceManager": "4.0.1",
  2623 + "System.Runtime": "4.1.0",
  2624 + "System.Runtime.Extensions": "4.1.0",
  2625 + "System.Runtime.Handles": "4.0.1",
  2626 + "System.Runtime.InteropServices": "4.1.0",
  2627 + "System.Runtime.InteropServices.RuntimeInformation": "4.0.0",
  2628 + "System.Security.Cryptography.X509Certificates": "4.1.0",
  2629 + "System.Security.Principal": "4.0.1",
  2630 + "System.Security.Principal.Windows": "4.0.0",
  2631 + "System.Text.Encoding": "4.0.11",
  2632 + "System.Text.Encoding.CodePages": "4.0.1",
  2633 + "System.Text.Encoding.Extensions": "4.0.11",
  2634 + "System.Text.RegularExpressions": "4.1.0",
  2635 + "System.Threading": "4.0.11",
  2636 + "System.Threading.Tasks": "4.0.11",
  2637 + "System.Threading.Thread": "4.0.0",
  2638 + "System.Threading.ThreadPool": "4.0.10",
  2639 + "System.Threading.Timer": "4.0.1",
  2640 + "System.Xml.ReaderWriter": "4.0.11",
  2641 + "runtime.native.System.Data.SqlClient.sni": "4.0.0"
  2642 + },
  2643 + "compile": {
  2644 + "ref/netstandard1.3/System.Data.SqlClient.dll": {}
  2645 + },
  2646 + "runtimeTargets": {
  2647 + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll": {
  2648 + "assetType": "runtime",
  2649 + "rid": "unix"
  2650 + },
  2651 + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll": {
  2652 + "assetType": "runtime",
  2653 + "rid": "win"
  2654 + }
  2655 + }
  2656 + },
2413 "System.Diagnostics.Contracts/4.0.1": { 2657 "System.Diagnostics.Contracts/4.0.1": {
2414 "type": "package", 2658 "type": "package",
2415 "dependencies": { 2659 "dependencies": {
@@ -2830,6 +3074,42 @@ @@ -2830,6 +3074,42 @@
2830 } 3074 }
2831 } 3075 }
2832 }, 3076 },
  3077 + "System.IO.Pipes/4.0.0": {
  3078 + "type": "package",
  3079 + "dependencies": {
  3080 + "Microsoft.NETCore.Platforms": "1.0.1",
  3081 + "System.Diagnostics.Debug": "4.0.11",
  3082 + "System.IO": "4.1.0",
  3083 + "System.IO.FileSystem.Primitives": "4.0.1",
  3084 + "System.Net.Primitives": "4.0.11",
  3085 + "System.Net.Sockets": "4.1.0",
  3086 + "System.Reflection": "4.1.0",
  3087 + "System.Resources.ResourceManager": "4.0.1",
  3088 + "System.Runtime": "4.1.0",
  3089 + "System.Runtime.Extensions": "4.1.0",
  3090 + "System.Runtime.Handles": "4.0.1",
  3091 + "System.Runtime.InteropServices": "4.1.0",
  3092 + "System.Security.Principal": "4.0.1",
  3093 + "System.Text.Encoding": "4.0.11",
  3094 + "System.Threading": "4.0.11",
  3095 + "System.Threading.Overlapped": "4.0.1",
  3096 + "System.Threading.Tasks": "4.0.11",
  3097 + "runtime.native.System": "4.0.0"
  3098 + },
  3099 + "compile": {
  3100 + "ref/netstandard1.3/_._": {}
  3101 + },
  3102 + "runtimeTargets": {
  3103 + "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll": {
  3104 + "assetType": "runtime",
  3105 + "rid": "unix"
  3106 + },
  3107 + "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll": {
  3108 + "assetType": "runtime",
  3109 + "rid": "win"
  3110 + }
  3111 + }
  3112 + },
2833 "System.IO.UnmanagedMemoryStream/4.0.1": { 3113 "System.IO.UnmanagedMemoryStream/4.0.1": {
2834 "type": "package", 3114 "type": "package",
2835 "dependencies": { 3115 "dependencies": {
@@ -4154,12 +4434,12 @@ @@ -4154,12 +4434,12 @@
4154 } 4434 }
4155 }, 4435 },
4156 "libraries": { 4436 "libraries": {
4157 - "Libuv/1.9.0": {  
4158 - "sha512": "9Q7AaqtQhS8JDSIvRBt6ODSLWDBI4c8YxNxyCQemWebBFUtBbc6M5Vi5Gz1ZyIUlTW3rZK9bIr5gnVyv0z7a2Q==", 4437 + "Libuv/1.9.1": {
  4438 + "sha512": "zW5+bcQ+GozqxLMm0jHSAjkROnBpkdeT3XEara90TPHHnIAaOdgBZaqO6JTL3S2MXc5Cw/5XJBQFzUq7TAKw1Q==",
4159 "type": "package", 4439 "type": "package",
4160 - "path": "Libuv/1.9.0", 4440 + "path": "Libuv/1.9.1",
4161 "files": [ 4441 "files": [
4162 - "Libuv.1.9.0.nupkg.sha512", 4442 + "Libuv.1.9.1.nupkg.sha512",
4163 "Libuv.nuspec", 4443 "Libuv.nuspec",
4164 "License.txt", 4444 "License.txt",
4165 "runtimes/debian-x64/native/libuv.so", 4445 "runtimes/debian-x64/native/libuv.so",
@@ -4721,7 +5001,7 @@ @@ -4721,7 +5001,7 @@
4721 ] 5001 ]
4722 }, 5002 },
4723 "Microsoft.CodeAnalysis.Analyzers/1.1.0": { 5003 "Microsoft.CodeAnalysis.Analyzers/1.1.0": {
4724 - "sha512": "HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", 5004 + "sha512": "mZ7X7SKbWVNomc9F3DVK8E1tqVIo/0NmzPmNo3gGVqCzxyWfouMFX8CdQeyQOPrH8Ak5Q776isYybNJCLBGE+w==",
4725 "type": "package", 5005 "type": "package",
4726 "path": "Microsoft.CodeAnalysis.Analyzers/1.1.0", 5006 "path": "Microsoft.CodeAnalysis.Analyzers/1.1.0",
4727 "files": [ 5007 "files": [
@@ -4737,7 +5017,7 @@ @@ -4737,7 +5017,7 @@
4737 ] 5017 ]
4738 }, 5018 },
4739 "Microsoft.CodeAnalysis.Common/1.3.0": { 5019 "Microsoft.CodeAnalysis.Common/1.3.0": {
4740 - "sha512": "V09G35cs0CT1C4Dr1IEOh8IGfnWALEVAOO5JXsqagxXwmYR012TlorQ+vx2eXxfZRKs3gAS/r92gN9kRBLba5A==", 5020 + "sha512": "Wy6JsH6wIUYDdBD7XZ4F55sF7WYQD3CmpT1fxgQiK5jWWCzawM6K3CzLgPxrTeK+7xeWnsC053sEAi6oopGO6g==",
4741 "type": "package", 5021 "type": "package",
4742 "path": "Microsoft.CodeAnalysis.Common/1.3.0", 5022 "path": "Microsoft.CodeAnalysis.Common/1.3.0",
4743 "files": [ 5023 "files": [
@@ -4753,7 +5033,7 @@ @@ -4753,7 +5033,7 @@
4753 ] 5033 ]
4754 }, 5034 },
4755 "Microsoft.CodeAnalysis.CSharp/1.3.0": { 5035 "Microsoft.CodeAnalysis.CSharp/1.3.0": {
4756 - "sha512": "BgWDIAbSFsHuGeLSn/rljLi51nXqkSo4DZ0qEIrHyPVasrhxEVq7aV8KKZ3HEfSFB+GIhBmOogE+mlOLYg19eg==", 5036 + "sha512": "Qq/4Q+m24G8foejmTGjWSpwlVSQZwTFKohYGK7TBSWW0owlNNkqSi55z2MBMmMxdLK3ALSSmjLkHu+5x8KQ0Ug==",
4757 "type": "package", 5037 "type": "package",
4758 "path": "Microsoft.CodeAnalysis.CSharp/1.3.0", 5038 "path": "Microsoft.CodeAnalysis.CSharp/1.3.0",
4759 "files": [ 5039 "files": [
@@ -4768,8 +5048,24 @@ @@ -4768,8 +5048,24 @@
4768 "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml" 5048 "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.xml"
4769 ] 5049 ]
4770 }, 5050 },
  5051 + "Microsoft.CodeAnalysis.CSharp.Workspaces/1.3.0": {
  5052 + "sha512": "wYqbzi7CEhj669g/QmBGKQdzqMDViz/7MeNAQwlbRZf8zhSQ8oYGDUXO0QaPfbpyarhVB1QOBnVdGr3c/mtibQ==",
  5053 + "type": "package",
  5054 + "path": "Microsoft.CodeAnalysis.CSharp.Workspaces/1.3.0",
  5055 + "files": [
  5056 + "Microsoft.CodeAnalysis.CSharp.Workspaces.1.3.0.nupkg.sha512",
  5057 + "Microsoft.CodeAnalysis.CSharp.Workspaces.nuspec",
  5058 + "ThirdPartyNotices.rtf",
  5059 + "lib/net45/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  5060 + "lib/net45/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  5061 + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  5062 + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.Workspaces.xml",
  5063 + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.Workspaces.dll",
  5064 + "lib/portable-net45+win8/Microsoft.CodeAnalysis.CSharp.Workspaces.xml"
  5065 + ]
  5066 + },
4771 "Microsoft.CodeAnalysis.VisualBasic/1.3.0": { 5067 "Microsoft.CodeAnalysis.VisualBasic/1.3.0": {
4772 - "sha512": "Sf3k8PkTkWqBmXnnblJbvb7ewO6mJzX6WO2t7m04BmOY5qBq6yhhyXnn/BMM+QCec3Arw3X35Zd8f9eBql0qgg==", 5068 + "sha512": "LHl3sV+dP+pOnk3jpWywCCzf7tQ4+wVLhqi85ojeCRh3hn+w2RMQwWoC/URbUs9+4vmn2753rAxI9BZHbLvraw==",
4773 "type": "package", 5069 "type": "package",
4774 "path": "Microsoft.CodeAnalysis.VisualBasic/1.3.0", 5070 "path": "Microsoft.CodeAnalysis.VisualBasic/1.3.0",
4775 "files": [ 5071 "files": [
@@ -4784,8 +5080,46 @@ @@ -4784,8 +5080,46 @@
4784 "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml" 5080 "lib/portable-net45+win8/Microsoft.CodeAnalysis.VisualBasic.xml"
4785 ] 5081 ]
4786 }, 5082 },
  5083 + "Microsoft.CodeAnalysis.Workspaces.Common/1.3.0": {
  5084 + "sha512": "dfH9HlSgfjGMkHaaKRkO28ycwtruLpZfqHTb+LPqhQlsqaHUNG5x7ezzEMENKMepeqZq6KCFSGtFR5JgLXXoqA==",
  5085 + "type": "package",
  5086 + "path": "Microsoft.CodeAnalysis.Workspaces.Common/1.3.0",
  5087 + "files": [
  5088 + "Microsoft.CodeAnalysis.Workspaces.Common.1.3.0.nupkg.sha512",
  5089 + "Microsoft.CodeAnalysis.Workspaces.Common.nuspec",
  5090 + "ThirdPartyNotices.rtf",
  5091 + "lib/net45/Microsoft.CodeAnalysis.Workspaces.Desktop.dll",
  5092 + "lib/net45/Microsoft.CodeAnalysis.Workspaces.Desktop.xml",
  5093 + "lib/net45/Microsoft.CodeAnalysis.Workspaces.dll",
  5094 + "lib/net45/Microsoft.CodeAnalysis.Workspaces.xml",
  5095 + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.dll",
  5096 + "lib/netstandard1.3/Microsoft.CodeAnalysis.Workspaces.xml",
  5097 + "lib/portable-net45+win8/Microsoft.CodeAnalysis.Workspaces.dll",
  5098 + "lib/portable-net45+win8/Microsoft.CodeAnalysis.Workspaces.xml"
  5099 + ]
  5100 + },
  5101 + "Microsoft.Composition/1.0.27": {
  5102 + "sha512": "pwu80Ohe7SBzZ6i69LVdzowp6V+LaVRzd5F7A6QlD42vQkX0oT7KXKWWPlM/S00w1gnMQMRnEdbtOV12z6rXdQ==",
  5103 + "type": "package",
  5104 + "path": "Microsoft.Composition/1.0.27",
  5105 + "files": [
  5106 + "License-Stable.rtf",
  5107 + "Microsoft.Composition.1.0.27.nupkg.sha512",
  5108 + "Microsoft.Composition.nuspec",
  5109 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.XML",
  5110 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.AttributedModel.dll",
  5111 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.dll",
  5112 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Convention.xml",
  5113 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.XML",
  5114 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Hosting.dll",
  5115 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.XML",
  5116 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.Runtime.dll",
  5117 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.XML",
  5118 + "lib/portable-net45+win8+wp8+wpa81/System.Composition.TypedParts.dll"
  5119 + ]
  5120 + },
4787 "Microsoft.CSharp/4.0.1": { 5121 "Microsoft.CSharp/4.0.1": {
4788 - "sha512": "17h8b5mXa87XYKrrVqdgZ38JefSUqLChUQpXgSnpzsM0nDOhE40FTeNWOJ/YmySGV6tG6T8+hjz6vxbknHJr6A==", 5122 + "sha512": "H3Jsvm5NWBcysbFXBO5NySDucHbmd4uP7LoL9+GnO7NLMO1lb2ycM01apsbLwbMB1qZtSFT2NGHzSLVD0xXPTQ==",
4789 "type": "package", 5123 "type": "package",
4790 "path": "Microsoft.CSharp/4.0.1", 5124 "path": "Microsoft.CSharp/4.0.1",
4791 "files": [ 5125 "files": [
@@ -4952,6 +5286,19 @@ @@ -4952,6 +5286,19 @@
4952 "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.xml" 5286 "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.xml"
4953 ] 5287 ]
4954 }, 5288 },
  5289 + "Microsoft.EntityFrameworkCore.SqlServer/1.0.0": {
  5290 + "sha512": "zLPrmmZ2b4jM3Hezf4dP2oIVREeXlXfcyNDX4mBZ6xcW+QauxyDpzrB86mnEF1quBdkpbZhv7T+ZbS9XS6Hqdg==",
  5291 + "type": "package",
  5292 + "path": "Microsoft.EntityFrameworkCore.SqlServer/1.0.0",
  5293 + "files": [
  5294 + "Microsoft.EntityFrameworkCore.SqlServer.1.0.0.nupkg.sha512",
  5295 + "Microsoft.EntityFrameworkCore.SqlServer.nuspec",
  5296 + "lib/net451/Microsoft.EntityFrameworkCore.SqlServer.dll",
  5297 + "lib/net451/Microsoft.EntityFrameworkCore.SqlServer.xml",
  5298 + "lib/netstandard1.3/Microsoft.EntityFrameworkCore.SqlServer.dll",
  5299 + "lib/netstandard1.3/Microsoft.EntityFrameworkCore.SqlServer.xml"
  5300 + ]
  5301 + },
4955 "Microsoft.EntityFrameworkCore.Tools/1.0.0-preview2-final": { 5302 "Microsoft.EntityFrameworkCore.Tools/1.0.0-preview2-final": {
4956 "sha512": "x+OkqEMERFJY9cAFBZsNPEmZEApAakay2yhE3CD+nyc+HtJDFbyX+spcnOxUjZ2w+YqAdzT6L3DzjlCbRLv9vQ==", 5303 "sha512": "x+OkqEMERFJY9cAFBZsNPEmZEApAakay2yhE3CD+nyc+HtJDFbyX+spcnOxUjZ2w+YqAdzT6L3DzjlCbRLv9vQ==",
4957 "type": "package", 5304 "type": "package",
@@ -5340,12 +5687,12 @@ @@ -5340,12 +5687,12 @@
5340 "lib/netstandard1.1/Microsoft.Net.Http.Headers.xml" 5687 "lib/netstandard1.1/Microsoft.Net.Http.Headers.xml"
5341 ] 5688 ]
5342 }, 5689 },
5343 - "Microsoft.NETCore.App/1.0.1": {  
5344 - "sha512": "M3iH7u95LntTkJtI/DqN/96MRlb8Wa0SjnXldxHA4FjlvEqghOhwK087bDZAZaTN9C4YHckvaYH3ka9eYWZZZw==", 5690 + "Microsoft.NETCore.App/1.1.0": {
  5691 + "sha512": "efaKcn0itjhJMbVcwZMMvnlvl3rNTSoGy79ONV2tAxj0oMqWGH3YH5+PY2I2yEePPxZU68a5BRCCmdf99zokbg==",
5345 "type": "package", 5692 "type": "package",
5346 - "path": "Microsoft.NETCore.App/1.0.1", 5693 + "path": "Microsoft.NETCore.App/1.1.0",
5347 "files": [ 5694 "files": [
5348 - "Microsoft.NETCore.App.1.0.1.nupkg.sha512", 5695 + "Microsoft.NETCore.App.1.1.0.nupkg.sha512",
5349 "Microsoft.NETCore.App.nuspec", 5696 "Microsoft.NETCore.App.nuspec",
5350 "ThirdPartyNotices.txt", 5697 "ThirdPartyNotices.txt",
5351 "dotnet_library_license.txt", 5698 "dotnet_library_license.txt",
@@ -5353,7 +5700,7 @@ @@ -5353,7 +5700,7 @@
5353 ] 5700 ]
5354 }, 5701 },
5355 "Microsoft.NETCore.DotNetHost/1.0.1": { 5702 "Microsoft.NETCore.DotNetHost/1.0.1": {
5356 - "sha512": "uaMgykq6AckP3hZW4dsD6zjocxyXPz0tcTl8OX7mlSUWsyFXdtf45sjdwI0JIHxt3gnI6GihAlOAwYK8HE4niQ==", 5703 + "sha512": "ZZQIzyvG4ipNcWcgRulx5oHwykAw9SnPFQw8I/TGYZtjcQLIRoWcjL6caQThoROp+zseg+meOFwm5zuJ3pS2xg==",
5357 "type": "package", 5704 "type": "package",
5358 "path": "Microsoft.NETCore.DotNetHost/1.0.1", 5705 "path": "Microsoft.NETCore.DotNetHost/1.0.1",
5359 "files": [ 5706 "files": [
@@ -5365,7 +5712,7 @@ @@ -5365,7 +5712,7 @@
5365 ] 5712 ]
5366 }, 5713 },
5367 "Microsoft.NETCore.DotNetHostPolicy/1.0.1": { 5714 "Microsoft.NETCore.DotNetHostPolicy/1.0.1": {
5368 - "sha512": "d8AQ+ZVj2iK9sbgl3IEsshCSaumhM1PNTPHxldZAQLOoI1BKF8QZ1zPCNqwBGisPiWOE3f/1SHDbQi1BTRBxuA==", 5715 + "sha512": "CTWrcF95uyC5udainq1lW2R2Wg58DEvF6+uWiQFODw5nkRnitRs2TpuVMnHA60akB0qDGdqR4EgjEpaKJ9OTOA==",
5369 "type": "package", 5716 "type": "package",
5370 "path": "Microsoft.NETCore.DotNetHostPolicy/1.0.1", 5717 "path": "Microsoft.NETCore.DotNetHostPolicy/1.0.1",
5371 "files": [ 5718 "files": [
@@ -5377,7 +5724,7 @@ @@ -5377,7 +5724,7 @@
5377 ] 5724 ]
5378 }, 5725 },
5379 "Microsoft.NETCore.DotNetHostResolver/1.0.1": { 5726 "Microsoft.NETCore.DotNetHostResolver/1.0.1": {
5380 - "sha512": "GEXgpAHB9E0OhfcmNJ664Xcd2bJkz2qkGIAFmCgEI5ANlQy4qEEmBVfUqA+Z9HB85ZwWxZc1eIJ6fxdxcjrctg==", 5727 + "sha512": "3We3ly0LqCkfw9yFDAJrXnG+uihWMQxWlUPRHDFKmkm+7j+z5Q1Sdwc0vWl+l7rGFXQvUe2IImUQ5JUekFtyhQ==",
5381 "type": "package", 5728 "type": "package",
5382 "path": "Microsoft.NETCore.DotNetHostResolver/1.0.1", 5729 "path": "Microsoft.NETCore.DotNetHostResolver/1.0.1",
5383 "files": [ 5730 "files": [
@@ -5389,7 +5736,7 @@ @@ -5389,7 +5736,7 @@
5389 ] 5736 ]
5390 }, 5737 },
5391 "Microsoft.NETCore.Jit/1.0.4": { 5738 "Microsoft.NETCore.Jit/1.0.4": {
5392 - "sha512": "IcHTGj+vTFcOu7/flwNg+CWIfTsxqHWgj08MKOtYwS5k0EuLvx6PrYsn7vHCV0SUTk1zbQ1l0EJj1UdxTMyx4w==", 5739 + "sha512": "s336ryZlopR+pQ4VfKlILX1LxiQzpCPnmiGot0p5aFPeCjwmKtHC88MI8jXdvdGPySON9i1bPUKJP8jiiPIAjA==",
5393 "type": "package", 5740 "type": "package",
5394 "path": "Microsoft.NETCore.Jit/1.0.4", 5741 "path": "Microsoft.NETCore.Jit/1.0.4",
5395 "files": [ 5742 "files": [
@@ -5401,7 +5748,7 @@ @@ -5401,7 +5748,7 @@
5401 ] 5748 ]
5402 }, 5749 },
5403 "Microsoft.NETCore.Platforms/1.0.1": { 5750 "Microsoft.NETCore.Platforms/1.0.1": {
5404 - "sha512": "2G6OjjJzwBfNOO8myRV/nFrbTw5iA+DEm0N+qUqhrOmaVtn4pC77h38I1jsXGw5VH55+dPfQsqHD0We9sCl9FQ==", 5751 + "sha512": "4pLZmTDYPL6NZ24vRdF1zg3dx/wFNeTyj7Pneyrcj1/W8Gkcgj7CGpCCBfn1JHP/WuCDdk233oUFyWQwF2NovQ==",
5405 "type": "package", 5752 "type": "package",
5406 "path": "Microsoft.NETCore.Platforms/1.0.1", 5753 "path": "Microsoft.NETCore.Platforms/1.0.1",
5407 "files": [ 5754 "files": [
@@ -5414,7 +5761,7 @@ @@ -5414,7 +5761,7 @@
5414 ] 5761 ]
5415 }, 5762 },
5416 "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": { 5763 "Microsoft.NETCore.Runtime.CoreCLR/1.0.4": {
5417 - "sha512": "r4/aP7VYcJ+W/rJVFU+jAdjF4KrsHRDYQJ+p8weUP5n65yLzWXlQTVY6OsR560aV5EF7jc65dqsNXIryUCrEkQ==", 5764 + "sha512": "NTd+F7MQJi5wFh6Hq3uVH0L3om+pVcfF+bpw0hSd+Ka92QSZ4IfDJw/IWqTQ9jUtLyWYR4XR+52HD5HW+a+zoQ==",
5418 "type": "package", 5765 "type": "package",
5419 "path": "Microsoft.NETCore.Runtime.CoreCLR/1.0.4", 5766 "path": "Microsoft.NETCore.Runtime.CoreCLR/1.0.4",
5420 "files": [ 5767 "files": [
@@ -5426,7 +5773,7 @@ @@ -5426,7 +5773,7 @@
5426 ] 5773 ]
5427 }, 5774 },
5428 "Microsoft.NETCore.Targets/1.0.1": { 5775 "Microsoft.NETCore.Targets/1.0.1": {
5429 - "sha512": "rkn+fKobF/cbWfnnfBOQHKVKIOpxMZBvlSHkqDWgBpwGDcLRduvs3D9OLGeV6GWGvVwNlVi2CBbTjuPmtHvyNw==", 5776 + "sha512": "w5ZpDo1AOK0oGD3SQ+7lFgQZ4AcUf2bYUDn+LWXXMquUnKqqo/bOrRtsXSFxIAL5ME4vnQwVOo3Iu9A8ohlQvw==",
5430 "type": "package", 5777 "type": "package",
5431 "path": "Microsoft.NETCore.Targets/1.0.1", 5778 "path": "Microsoft.NETCore.Targets/1.0.1",
5432 "files": [ 5779 "files": [
@@ -5439,7 +5786,7 @@ @@ -5439,7 +5786,7 @@
5439 ] 5786 ]
5440 }, 5787 },
5441 "Microsoft.NETCore.Windows.ApiSets/1.0.1": { 5788 "Microsoft.NETCore.Windows.ApiSets/1.0.1": {
5442 - "sha512": "SaToCvvsGMxTgtLv/BrFQ5IFMPRE1zpWbnqbpwykJa8W5XiX82CXI6K2o7yf5xS7EP6t/JzFLV0SIDuWpvBZVw==", 5789 + "sha512": "qx33A8SlpxRtTnfv5h1R/aI/qLjBcZEix46IN9phdOcOdt63F/PjzPjmoYd/V1KmmpF4vaM9cCR4UM/lgUg5VQ==",
5443 "type": "package", 5790 "type": "package",
5444 "path": "Microsoft.NETCore.Windows.ApiSets/1.0.1", 5791 "path": "Microsoft.NETCore.Windows.ApiSets/1.0.1",
5445 "files": [ 5792 "files": [
@@ -5451,7 +5798,7 @@ @@ -5451,7 +5798,7 @@
5451 ] 5798 ]
5452 }, 5799 },
5453 "Microsoft.VisualBasic/10.0.1": { 5800 "Microsoft.VisualBasic/10.0.1": {
5454 - "sha512": "HpNyOf/4Tp2lh4FyywB55VITk0SqVxEjDzsVDDyF1yafDN6Bq18xcHowzCPINyYHUTgGcEtmpYiRsFdSo0KKdQ==", 5801 + "sha512": "d7fOdtAxPvTfNmS08uYYZJwDy8D2OhQKkBD+irNarIC88YNlVIE0Tm5zLtw7stvuZGEzjDEGkSzwYbmkYoWwig==",
5455 "type": "package", 5802 "type": "package",
5456 "path": "Microsoft.VisualBasic/10.0.1", 5803 "path": "Microsoft.VisualBasic/10.0.1",
5457 "files": [ 5804 "files": [
@@ -5506,8 +5853,137 @@ @@ -5506,8 +5853,137 @@
5506 "lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.xml" 5853 "lib/netstandard1.5/Microsoft.VisualStudio.Web.BrowserLink.Loader.xml"
5507 ] 5854 ]
5508 }, 5855 },
  5856 + "Microsoft.VisualStudio.Web.CodeGeneration/1.0.0-preview2-final": {
  5857 + "sha512": "WmQR9kFKvbN0sdLhm1nJ3cXHC7ftkkYhBHkWFG2pxBA2g4aITu6//rBbZaruTrUouafjg+V+YTHdx334jVbu1g==",
  5858 + "type": "package",
  5859 + "path": "Microsoft.VisualStudio.Web.CodeGeneration/1.0.0-preview2-final",
  5860 + "files": [
  5861 + "Microsoft.VisualStudio.Web.CodeGeneration.1.0.0-preview2-final.nupkg.sha512",
  5862 + "Microsoft.VisualStudio.Web.CodeGeneration.nuspec",
  5863 + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.dll",
  5864 + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.xml",
  5865 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.dll",
  5866 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.xml"
  5867 + ]
  5868 + },
  5869 + "Microsoft.VisualStudio.Web.CodeGeneration.Core/1.0.0-preview2-final": {
  5870 + "sha512": "zECd6a+ZKVIIyZ/Nm7uP0NpZ0pOBs1jfQx+qiZYplNOJJC3R23/PGfdMvvX4B2beNxY6OAw0VkvRqxozQYId2g==",
  5871 + "type": "package",
  5872 + "path": "Microsoft.VisualStudio.Web.CodeGeneration.Core/1.0.0-preview2-final",
  5873 + "files": [
  5874 + "Microsoft.VisualStudio.Web.CodeGeneration.Core.1.0.0-preview2-final.nupkg.sha512",
  5875 + "Microsoft.VisualStudio.Web.CodeGeneration.Core.nuspec",
  5876 + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll",
  5877 + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml",
  5878 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll",
  5879 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml"
  5880 + ]
  5881 + },
  5882 + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/1.0.0-preview2-final": {
  5883 + "sha512": "UDq8EM9syllYFfJXgMYcdRVaq1iVGgG7HfrPOV9KQGzF13XFygVvAqmJGCCoWeDoxSBuhox3Vh0XK9NcWo6hZw==",
  5884 + "type": "package",
  5885 + "path": "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/1.0.0-preview2-final",
  5886 + "files": [
  5887 + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.1.0.0-preview2-final.nupkg.sha512",
  5888 + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.nuspec",
  5889 + "Templates/DbContext/NewLocalDbContext.cshtml",
  5890 + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll",
  5891 + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml",
  5892 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll",
  5893 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml"
  5894 + ]
  5895 + },
  5896 + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/1.0.0-preview2-final": {
  5897 + "sha512": "FjChh/YE6gm1pKXKsCbxWlmHO8CKTXn7CUUOSeNrF1+Iz/qST+CzbsZvBv/FaEk4162I3T5VMVTgCa2haitMZw==",
  5898 + "type": "package",
  5899 + "path": "Microsoft.VisualStudio.Web.CodeGeneration.Templating/1.0.0-preview2-final",
  5900 + "files": [
  5901 + "Microsoft.VisualStudio.Web.CodeGeneration.Templating.1.0.0-preview2-final.nupkg.sha512",
  5902 + "Microsoft.VisualStudio.Web.CodeGeneration.Templating.nuspec",
  5903 + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll",
  5904 + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml",
  5905 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll",
  5906 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml"
  5907 + ]
  5908 + },
  5909 + "Microsoft.VisualStudio.Web.CodeGeneration.Tools/1.0.0-preview2-final": {
  5910 + "sha512": "Qm9HVBgHV4jdRjCw8MCg+8cvkY/x8XShmhsTMYdfF9+83LLaxwBnPwntnDKWybeIa9dJTZ1K+ffQtt3zKfgzSQ==",
  5911 + "type": "package",
  5912 + "path": "Microsoft.VisualStudio.Web.CodeGeneration.Tools/1.0.0-preview2-final",
  5913 + "files": [
  5914 + "Microsoft.VisualStudio.Web.CodeGeneration.Tools.1.0.0-preview2-final.nupkg.sha512",
  5915 + "Microsoft.VisualStudio.Web.CodeGeneration.Tools.nuspec",
  5916 + "lib/net451/dotnet-aspnet-codegenerator.exe",
  5917 + "lib/net451/dotnet-aspnet-codegenerator.xml",
  5918 + "lib/netcoreapp1.0/dotnet-aspnet-codegenerator.dll",
  5919 + "lib/netcoreapp1.0/dotnet-aspnet-codegenerator.runtimeconfig.json",
  5920 + "lib/netcoreapp1.0/dotnet-aspnet-codegenerator.xml",
  5921 + "runtimes/win7-x64/lib/net451/dotnet-aspnet-codegenerator.exe",
  5922 + "runtimes/win7-x86/lib/net451/dotnet-aspnet-codegenerator.exe"
  5923 + ]
  5924 + },
  5925 + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/1.0.0-preview2-final": {
  5926 + "sha512": "FuenOwZaiidkU/PylN8DK9bTZTYlqudkDOcPUCdPGjn5kcwnPagwMT4pcZbep3b7iT0FaDDCXZyDMjnjLFHi+g==",
  5927 + "type": "package",
  5928 + "path": "Microsoft.VisualStudio.Web.CodeGeneration.Utils/1.0.0-preview2-final",
  5929 + "files": [
  5930 + "Microsoft.VisualStudio.Web.CodeGeneration.Utils.1.0.0-preview2-final.nupkg.sha512",
  5931 + "Microsoft.VisualStudio.Web.CodeGeneration.Utils.nuspec",
  5932 + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll",
  5933 + "lib/net451/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml",
  5934 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll",
  5935 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml"
  5936 + ]
  5937 + },
  5938 + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/1.0.0-preview2-final": {
  5939 + "sha512": "7Npb0ypZ0Ba1oCv7T5GWF+gJTmJz7b8VzvsysRQxhJFz0LgFx3hHu81cKj9/WYf9JBObkt8trwAwec3qrOytGQ==",
  5940 + "type": "package",
  5941 + "path": "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/1.0.0-preview2-final",
  5942 + "files": [
  5943 + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc.1.0.0-preview2-final.nupkg.sha512",
  5944 + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc.nuspec",
  5945 + "THIRDPARTYNOTICE ASP.NET_Preview.rtf",
  5946 + "Templates/ControllerGenerator/ApiControllerWIthActions.cshtml",
  5947 + "Templates/ControllerGenerator/ApiControllerWithContext.cshtml",
  5948 + "Templates/ControllerGenerator/ApiEmptyController.cshtml",
  5949 + "Templates/ControllerGenerator/ControllerWithActions.cshtml",
  5950 + "Templates/ControllerGenerator/EmptyController.cshtml",
  5951 + "Templates/ControllerGenerator/MvcControllerWithContext.cshtml",
  5952 + "Templates/MvcLayout/Error.cshtml",
  5953 + "Templates/MvcLayout/_Layout.cshtml",
  5954 + "Templates/Startup/ReadMe.cshtml",
  5955 + "Templates/Startup/Startup.cshtml",
  5956 + "Templates/StaticFiles/Content/Site.css",
  5957 + "Templates/StaticFiles/Content/bootstrap.css",
  5958 + "Templates/StaticFiles/Content/bootstrap.min.css",
  5959 + "Templates/StaticFiles/Scripts/_references.js",
  5960 + "Templates/StaticFiles/Scripts/bootstrap.js",
  5961 + "Templates/StaticFiles/Scripts/bootstrap.min.js",
  5962 + "Templates/StaticFiles/Scripts/jquery-1.10.2.intellisense.js",
  5963 + "Templates/StaticFiles/Scripts/jquery-1.10.2.js",
  5964 + "Templates/StaticFiles/Scripts/jquery-1.10.2.min.js",
  5965 + "Templates/StaticFiles/Scripts/jquery-1.10.2.min.map",
  5966 + "Templates/StaticFiles/Scripts/jquery.validate-vsdoc.js",
  5967 + "Templates/StaticFiles/Scripts/jquery.validate.js",
  5968 + "Templates/StaticFiles/Scripts/jquery.validate.min.js",
  5969 + "Templates/StaticFiles/Scripts/jquery.validate.unobtrusive.js",
  5970 + "Templates/StaticFiles/Scripts/jquery.validate.unobtrusive.min.js",
  5971 + "Templates/StaticFiles/Scripts/modernizr-2.6.2.js",
  5972 + "Templates/StaticFiles/Scripts/respond.js",
  5973 + "Templates/StaticFiles/Scripts/respond.min.js",
  5974 + "Templates/ViewGenerator/Create.cshtml",
  5975 + "Templates/ViewGenerator/Delete.cshtml",
  5976 + "Templates/ViewGenerator/Details.cshtml",
  5977 + "Templates/ViewGenerator/Edit.cshtml",
  5978 + "Templates/ViewGenerator/List.cshtml",
  5979 + "lib/net451/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll",
  5980 + "lib/net451/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml",
  5981 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll",
  5982 + "lib/netstandard1.6/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml"
  5983 + ]
  5984 + },
5509 "Microsoft.Win32.Primitives/4.0.1": { 5985 "Microsoft.Win32.Primitives/4.0.1": {
5510 - "sha512": "fQnBHO9DgcmkC9dYSJoBqo6sH1VJwJprUHh8F3hbcRlxiQiBUuTntdk8tUwV490OqC2kQUrinGwZyQHTieuXRA==", 5986 + "sha512": "bVKlfQ+hYNw/b17n74zGSs6AKBHHsqNWAfZbpq+M2y5rnK0YICD1j+j4qYYYmaS00lY65ZGtcpMspHzDpP0Ryg==",
5511 "type": "package", 5987 "type": "package",
5512 "path": "Microsoft.Win32.Primitives/4.0.1", 5988 "path": "Microsoft.Win32.Primitives/4.0.1",
5513 "files": [ 5989 "files": [
@@ -5543,7 +6019,7 @@ @@ -5543,7 +6019,7 @@
5543 ] 6019 ]
5544 }, 6020 },
5545 "Microsoft.Win32.Registry/4.0.0": { 6021 "Microsoft.Win32.Registry/4.0.0": {
5546 - "sha512": "q+eLtROUAQ3OxYA5mpQrgyFgzLQxIyrfT2eLpYX5IEPlHmIio2nh4F5bgOaQoGOV865kFKZZso9Oq9RlazvXtg==", 6022 + "sha512": "TDI6KVc0bMVejExiNeVt1STStqbTU3+4KDvhoAikMmHdKcuImG4oP73ql5dLUWLaI+Es8YMNnZyhBVs7coSZ/Q==",
5547 "type": "package", 6023 "type": "package",
5548 "path": "Microsoft.Win32.Registry/4.0.0", 6024 "path": "Microsoft.Win32.Registry/4.0.0",
5549 "files": [ 6025 "files": [
@@ -5571,7 +6047,7 @@ @@ -5571,7 +6047,7 @@
5571 ] 6047 ]
5572 }, 6048 },
5573 "NETStandard.Library/1.6.0": { 6049 "NETStandard.Library/1.6.0": {
5574 - "sha512": "ypsCvIdCZ4IoYASJHt6tF2fMo7N30NLgV1EbmC+snO490OMl9FvVxmumw14rhReWU3j3g7BYudG6YCrchwHJlA==", 6050 + "sha512": "amUCAUi8xpemiV7x2cpelz2HtUpl7IB76+bitV2jAMSMZk9K95ncsd84xB2o38bmRZ4wug4MSBBJC2CQa5FXow==",
5575 "type": "package", 6051 "type": "package",
5576 "path": "NETStandard.Library/1.6.0", 6052 "path": "NETStandard.Library/1.6.0",
5577 "files": [ 6053 "files": [
@@ -5846,7 +6322,7 @@ @@ -5846,7 +6322,7 @@
5846 ] 6322 ]
5847 }, 6323 },
5848 "runtime.native.System/4.0.0": { 6324 "runtime.native.System/4.0.0": {
5849 - "sha512": "QfS/nQI7k/BLgmLrw7qm7YBoULEvgWnPI+cYsbfCVFTW8Aj+i8JhccxcFMu1RWms0YZzF+UHguNBK4Qn89e2Sg==", 6325 + "sha512": "elTXdRYI5NF8d07EGMy9gwXmbIPjh8F8M6/YXikNVnvfPC/cQXgzyWo85VMZf+MJSE6rbkF6ep0FY7JSU1aDfw==",
5850 "type": "package", 6326 "type": "package",
5851 "path": "runtime.native.System/4.0.0", 6327 "path": "runtime.native.System/4.0.0",
5852 "files": [ 6328 "files": [
@@ -5857,8 +6333,19 @@ @@ -5857,8 +6333,19 @@
5857 "runtime.native.System.nuspec" 6333 "runtime.native.System.nuspec"
5858 ] 6334 ]
5859 }, 6335 },
  6336 + "runtime.native.System.Data.SqlClient.sni/4.0.0": {
  6337 + "sha512": "DcMVtYwugo1LOc9MVchInxlLNoFe/+21MsEQU9yIZX561chzxDlFDWowWF+Kc262PyD3eLkDab1JyJrs73Qtkg==",
  6338 + "type": "package",
  6339 + "path": "runtime.native.System.Data.SqlClient.sni/4.0.0",
  6340 + "files": [
  6341 + "ThirdPartyNotices.txt",
  6342 + "dotnet_library_license.txt",
  6343 + "runtime.native.System.Data.SqlClient.sni.4.0.0.nupkg.sha512",
  6344 + "runtime.native.System.Data.SqlClient.sni.nuspec"
  6345 + ]
  6346 + },
5860 "runtime.native.System.IO.Compression/4.1.0": { 6347 "runtime.native.System.IO.Compression/4.1.0": {
5861 - "sha512": "Ob7nvnJBox1aaB222zSVZSkf4WrebPG4qFscfK7vmD7P7NxoSxACQLtO7ytWpqXDn2wcd/+45+EAZ7xjaPip8A==", 6348 + "sha512": "oji/xoYJui/Mb0Ml/Beg2ub2mixnbZdwuV+Kf4QGqLtBnxidfJmg+rjeNvfF70EDJLejcHFK7kBoz30dx+7slw==",
5862 "type": "package", 6349 "type": "package",
5863 "path": "runtime.native.System.IO.Compression/4.1.0", 6350 "path": "runtime.native.System.IO.Compression/4.1.0",
5864 "files": [ 6351 "files": [
@@ -5870,7 +6357,7 @@ @@ -5870,7 +6357,7 @@
5870 ] 6357 ]
5871 }, 6358 },
5872 "runtime.native.System.Net.Http/4.0.1": { 6359 "runtime.native.System.Net.Http/4.0.1": {
5873 - "sha512": "Nh0UPZx2Vifh8r+J+H2jxifZUD3sBrmolgiFWJd2yiNrxO0xTa6bAw3YwRn1VOiSen/tUXMS31ttNItCZ6lKuA==", 6360 + "sha512": "4UqAQwd+PzUh7VhpgVRyvZkUyCMSlsyzUdLe0ziLvF3H4dSzLm/4EGmWLrShvE6dEydWhFoSc9MpX4WIcdSh3g==",
5874 "type": "package", 6361 "type": "package",
5875 "path": "runtime.native.System.Net.Http/4.0.1", 6362 "path": "runtime.native.System.Net.Http/4.0.1",
5876 "files": [ 6363 "files": [
@@ -5882,7 +6369,7 @@ @@ -5882,7 +6369,7 @@
5882 ] 6369 ]
5883 }, 6370 },
5884 "runtime.native.System.Net.Security/4.0.1": { 6371 "runtime.native.System.Net.Security/4.0.1": {
5885 - "sha512": "Az6Ff6rZFb8nYGAaejFR6jr8ktt9f3e1Q/yKdw0pwHNTLaO/1eCAC9vzBoR9YAb0QeZD6fZXl1A9tRB5stpzXA==", 6372 + "sha512": "8YS1dnYbcRTZx4RHwoBwuW8tww8mk7kM3nT4lGJD9M89E+geSyXuZlFOjT5mKTSuC/I2ehG/xkWA9zWNencDew==",
5886 "type": "package", 6373 "type": "package",
5887 "path": "runtime.native.System.Net.Security/4.0.1", 6374 "path": "runtime.native.System.Net.Security/4.0.1",
5888 "files": [ 6375 "files": [
@@ -5894,7 +6381,7 @@ @@ -5894,7 +6381,7 @@
5894 ] 6381 ]
5895 }, 6382 },
5896 "runtime.native.System.Security.Cryptography/4.0.0": { 6383 "runtime.native.System.Security.Cryptography/4.0.0": {
5897 - "sha512": "2CQK0jmO6Eu7ZeMgD+LOFbNJSXHFVQbCJJkEyEwowh1SCgYnrn9W9RykMfpeeVGw7h4IBvYikzpGUlmZTUafJw==", 6384 + "sha512": "+FQS/TIkzHXkRjcYJRTjNgeraMmY/G2V0ll7IynCJDqr4B6ZVD6ilgGODh8o7NigI6N/Ac3GO8HyaFmnhUnT4A==",
5898 "type": "package", 6385 "type": "package",
5899 "path": "runtime.native.System.Security.Cryptography/4.0.0", 6386 "path": "runtime.native.System.Security.Cryptography/4.0.0",
5900 "files": [ 6387 "files": [
@@ -5905,8 +6392,32 @@ @@ -5905,8 +6392,32 @@
5905 "runtime.native.System.Security.Cryptography.nuspec" 6392 "runtime.native.System.Security.Cryptography.nuspec"
5906 ] 6393 ]
5907 }, 6394 },
  6395 + "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.0.1": {
  6396 + "sha512": "My20HZqJbDS4rWmdOcJ3TPf9iX6M/sTF2nBSUHBvfWp1iNip3eMS+K65oQgsLRxX6h21ic3YED06c2ye2sL7FQ==",
  6397 + "type": "package",
  6398 + "path": "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni/4.0.1",
  6399 + "files": [
  6400 + "ThirdPartyNotices.txt",
  6401 + "dotnet_library_license.txt",
  6402 + "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.4.0.1.nupkg.sha512",
  6403 + "runtime.win7-x64.runtime.native.System.Data.SqlClient.sni.nuspec",
  6404 + "runtimes/win7-x64/native/sni.dll"
  6405 + ]
  6406 + },
  6407 + "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.0.1": {
  6408 + "sha512": "ykiYCf/0hIc0xm+g6bVX8nw9St5Ool+r4US+B+56Lv/GFnDG5G9BK4n7WkrwEpuWV3XjMn38oHgHOnNMzBVNKA==",
  6409 + "type": "package",
  6410 + "path": "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni/4.0.1",
  6411 + "files": [
  6412 + "ThirdPartyNotices.txt",
  6413 + "dotnet_library_license.txt",
  6414 + "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.4.0.1.nupkg.sha512",
  6415 + "runtime.win7-x86.runtime.native.System.Data.SqlClient.sni.nuspec",
  6416 + "runtimes/win7-x86/native/sni.dll"
  6417 + ]
  6418 + },
5908 "System.AppContext/4.1.0": { 6419 "System.AppContext/4.1.0": {
5909 - "sha512": "3QjO4jNV7PdKkmQAVp9atA+usVnKRwI3Kx1nMwJ93T0LcQfx7pKAYk0nKz5wn1oP5iqlhZuy6RXOFdhr7rDwow==", 6420 + "sha512": "Mw+ZvwDDxFNZasou4+lbUxmNLSY15LHVuU3D4e9fKvVzCm7v5YHVvFJs9uXEXuKu9NrY24v5tQYGYsfFvXufHw==",
5910 "type": "package", 6421 "type": "package",
5911 "path": "System.AppContext/4.1.0", 6422 "path": "System.AppContext/4.1.0",
5912 "files": [ 6423 "files": [
@@ -5959,7 +6470,7 @@ @@ -5959,7 +6470,7 @@
5959 ] 6470 ]
5960 }, 6471 },
5961 "System.Buffers/4.0.0": { 6472 "System.Buffers/4.0.0": {
5962 - "sha512": "msXumHfjjURSkvxUjYuq4N2ghHoRi2VpXcKMA7gK6ujQfU3vGpl+B6ld0ATRg+FZFpRyA6PgEPA+VlIkTeNf2w==", 6473 + "sha512": "gDRyGoBWkeg0plXeA6pkT6LamIEhfeY4FLCchE2qycjU8vptl7fktcbQvZwSyiRMknzRz+y/bC5FtgN0NZx5aA==",
5963 "type": "package", 6474 "type": "package",
5964 "path": "System.Buffers/4.0.0", 6475 "path": "System.Buffers/4.0.0",
5965 "files": [ 6476 "files": [
@@ -5972,7 +6483,7 @@ @@ -5972,7 +6483,7 @@
5972 ] 6483 ]
5973 }, 6484 },
5974 "System.Collections/4.0.11": { 6485 "System.Collections/4.0.11": {
5975 - "sha512": "YUJGz6eFKqS0V//mLt25vFGrrCvOnsXjlvFQs+KimpwNxug9x0Pzy4PlFMU3Q2IzqAa9G2L4LsK3+9vCBK7oTg==", 6486 + "sha512": "UN4/kvaYw0gizXQqhzpO/1tQrDQLO5RHTuXYHbrHi+0HYSXj5CgOQjefYveieptr/Qpkp4t3DkT9GA4EW9QIkw==",
5976 "type": "package", 6487 "type": "package",
5977 "path": "System.Collections/4.0.11", 6488 "path": "System.Collections/4.0.11",
5978 "files": [ 6489 "files": [
@@ -6038,7 +6549,7 @@ @@ -6038,7 +6549,7 @@
6038 ] 6549 ]
6039 }, 6550 },
6040 "System.Collections.Concurrent/4.0.12": { 6551 "System.Collections.Concurrent/4.0.12": {
6041 - "sha512": "2gBcbb3drMLgxlI0fBfxMA31ec6AEyYCHygGse4vxceJan8mRIWeKJ24BFzN7+bi/NFTgdIgufzb94LWO5EERQ==", 6552 + "sha512": "ebzF7Rut3oEdrShy3bBS8V10D/iyQX705etD5D2tIXKqDlUcdH0wbZ01LEizFwCF8FFbd7eEJmjZnCcuWxM1Tg==",
6042 "type": "package", 6553 "type": "package",
6043 "path": "System.Collections.Concurrent/4.0.12", 6554 "path": "System.Collections.Concurrent/4.0.12",
6044 "files": [ 6555 "files": [
@@ -6104,7 +6615,7 @@ @@ -6104,7 +6615,7 @@
6104 ] 6615 ]
6105 }, 6616 },
6106 "System.Collections.Immutable/1.2.0": { 6617 "System.Collections.Immutable/1.2.0": {
6107 - "sha512": "Cma8cBW6di16ZLibL8LYQ+cLjGzoKxpOTu/faZfDcx94ZjAGq6Nv5RO7+T1YZXqEXTZP9rt1wLVEONVpURtUqw==", 6618 + "sha512": "M75E96k3tF4Ow72WL7aUGnC3zsQj5H9V68WlnyCHSBb5f3Bl+f/ihrfUKbAJJKXhBHhaYIuutaMqboiU4MVcfg==",
6108 "type": "package", 6619 "type": "package",
6109 "path": "System.Collections.Immutable/1.2.0", 6620 "path": "System.Collections.Immutable/1.2.0",
6110 "files": [ 6621 "files": [
@@ -6193,7 +6704,7 @@ @@ -6193,7 +6704,7 @@
6193 ] 6704 ]
6194 }, 6705 },
6195 "System.ComponentModel/4.0.1": { 6706 "System.ComponentModel/4.0.1": {
6196 - "sha512": "oBZFnm7seFiVfugsIyOvQCWobNZs7FzqDV/B7tx20Ep/l3UUFCPDkdTnCNaJZTU27zjeODmy2C/cP60u3D4c9w==", 6707 + "sha512": "cRIuXvk7SIXLZLBzqoMGN/qlYlx3xTQCgbMtfbSIq7sTZp1bYt2ZHP++9bA/b+6p40GFItqKHxGkW/xJkeAB6A==",
6197 "type": "package", 6708 "type": "package",
6198 "path": "System.ComponentModel/4.0.1", 6709 "path": "System.ComponentModel/4.0.1",
6199 "files": [ 6710 "files": [
@@ -6250,7 +6761,7 @@ @@ -6250,7 +6761,7 @@
6250 ] 6761 ]
6251 }, 6762 },
6252 "System.ComponentModel.Annotations/4.1.0": { 6763 "System.ComponentModel.Annotations/4.1.0": {
6253 - "sha512": "rhnz80h8NnHJzoi0nbQJLRR2cJznyqG168q1bgoSpe5qpaME2SguXzuEzpY68nFCi2kBgHpbU4bRN2cP3unYRA==", 6764 + "sha512": "pkgN+OLuo65Xnvz+TNiVXrc+X49JqoeU8M18EfUolRhqsaO1a6r5AG/UqGa00m75nFhsQPjZqkl1vhYF4IG2LA==",
6254 "type": "package", 6765 "type": "package",
6255 "path": "System.ComponentModel.Annotations/4.1.0", 6766 "path": "System.ComponentModel.Annotations/4.1.0",
6256 "files": [ 6767 "files": [
@@ -6415,7 +6926,7 @@ @@ -6415,7 +6926,7 @@
6415 ] 6926 ]
6416 }, 6927 },
6417 "System.Console/4.0.0": { 6928 "System.Console/4.0.0": {
6418 - "sha512": "qSKUSOIiYA/a0g5XXdxFcUFmv1hNICBD7QZ0QhGYVipPIhvpiydY8VZqr1thmCXvmn8aipMg64zuanB4eotK9A==", 6929 + "sha512": "mrL8nA6xBe/f3EysjD+TBGgubZVt/tvYwwIW8mcZW2xtxO1YPU++7nhgTtZLzRAMQc0rWSRpP4YHMuFMTB0rNQ==",
6419 "type": "package", 6930 "type": "package",
6420 "path": "System.Console/4.0.0", 6931 "path": "System.Console/4.0.0",
6421 "files": [ 6932 "files": [
@@ -6499,6 +7010,59 @@ @@ -6499,6 +7010,59 @@
6499 "ref/xamarinwatchos10/_._" 7010 "ref/xamarinwatchos10/_._"
6500 ] 7011 ]
6501 }, 7012 },
  7013 + "System.Data.SqlClient/4.1.0": {
  7014 + "sha512": "yqMZgzzKHdG84QmA/PPZUORaoisfvztvFqyPs7dPafJhNxlS7STf9OMCFrP/tITQCqImkm1+X4d2oiWOT2oTKg==",
  7015 + "type": "package",
  7016 + "path": "System.Data.SqlClient/4.1.0",
  7017 + "files": [
  7018 + "System.Data.SqlClient.4.1.0.nupkg.sha512",
  7019 + "System.Data.SqlClient.nuspec",
  7020 + "ThirdPartyNotices.txt",
  7021 + "dotnet_library_license.txt",
  7022 + "lib/MonoAndroid10/_._",
  7023 + "lib/MonoTouch10/_._",
  7024 + "lib/net451/System.Data.SqlClient.dll",
  7025 + "lib/net46/System.Data.SqlClient.dll",
  7026 + "lib/xamarinios10/_._",
  7027 + "lib/xamarinmac20/_._",
  7028 + "lib/xamarintvos10/_._",
  7029 + "lib/xamarinwatchos10/_._",
  7030 + "ref/MonoAndroid10/_._",
  7031 + "ref/MonoTouch10/_._",
  7032 + "ref/net451/System.Data.SqlClient.dll",
  7033 + "ref/net46/System.Data.SqlClient.dll",
  7034 + "ref/netstandard1.2/System.Data.SqlClient.dll",
  7035 + "ref/netstandard1.2/System.Data.SqlClient.xml",
  7036 + "ref/netstandard1.2/de/System.Data.SqlClient.xml",
  7037 + "ref/netstandard1.2/es/System.Data.SqlClient.xml",
  7038 + "ref/netstandard1.2/fr/System.Data.SqlClient.xml",
  7039 + "ref/netstandard1.2/it/System.Data.SqlClient.xml",
  7040 + "ref/netstandard1.2/ja/System.Data.SqlClient.xml",
  7041 + "ref/netstandard1.2/ko/System.Data.SqlClient.xml",
  7042 + "ref/netstandard1.2/ru/System.Data.SqlClient.xml",
  7043 + "ref/netstandard1.2/zh-hans/System.Data.SqlClient.xml",
  7044 + "ref/netstandard1.2/zh-hant/System.Data.SqlClient.xml",
  7045 + "ref/netstandard1.3/System.Data.SqlClient.dll",
  7046 + "ref/netstandard1.3/System.Data.SqlClient.xml",
  7047 + "ref/netstandard1.3/de/System.Data.SqlClient.xml",
  7048 + "ref/netstandard1.3/es/System.Data.SqlClient.xml",
  7049 + "ref/netstandard1.3/fr/System.Data.SqlClient.xml",
  7050 + "ref/netstandard1.3/it/System.Data.SqlClient.xml",
  7051 + "ref/netstandard1.3/ja/System.Data.SqlClient.xml",
  7052 + "ref/netstandard1.3/ko/System.Data.SqlClient.xml",
  7053 + "ref/netstandard1.3/ru/System.Data.SqlClient.xml",
  7054 + "ref/netstandard1.3/zh-hans/System.Data.SqlClient.xml",
  7055 + "ref/netstandard1.3/zh-hant/System.Data.SqlClient.xml",
  7056 + "ref/xamarinios10/_._",
  7057 + "ref/xamarinmac20/_._",
  7058 + "ref/xamarintvos10/_._",
  7059 + "ref/xamarinwatchos10/_._",
  7060 + "runtimes/unix/lib/netstandard1.3/System.Data.SqlClient.dll",
  7061 + "runtimes/win/lib/net451/System.Data.SqlClient.dll",
  7062 + "runtimes/win/lib/net46/System.Data.SqlClient.dll",
  7063 + "runtimes/win/lib/netstandard1.3/System.Data.SqlClient.dll"
  7064 + ]
  7065 + },
6502 "System.Diagnostics.Contracts/4.0.1": { 7066 "System.Diagnostics.Contracts/4.0.1": {
6503 "sha512": "HvQQjy712vnlpPxaloZYkuE78Gn353L0SJLJVeLcNASeg9c4qla2a1Xq8I7B3jZoDzKPtHTkyVO7AZ5tpeQGuA==", 7067 "sha512": "HvQQjy712vnlpPxaloZYkuE78Gn353L0SJLJVeLcNASeg9c4qla2a1Xq8I7B3jZoDzKPtHTkyVO7AZ5tpeQGuA==",
6504 "type": "package", 7068 "type": "package",
@@ -6558,7 +7122,7 @@ @@ -6558,7 +7122,7 @@
6558 ] 7122 ]
6559 }, 7123 },
6560 "System.Diagnostics.Debug/4.0.11": { 7124 "System.Diagnostics.Debug/4.0.11": {
6561 - "sha512": "w5U95fVKHY4G8ASs/K5iK3J5LY+/dLFd4vKejsnI/ZhBsWS9hQakfx3Zr7lRWKg4tAw9r4iktyvsTagWkqYCiw==", 7125 + "sha512": "xuJW4b87IQ7bvSGa44k+rvc0UXHO9NIMzzeBrlmzk7lc/vmJ7G3iMb4U8mq02wA9u1/MxyvWdWEGKY+n8OX9fw==",
6562 "type": "package", 7126 "type": "package",
6563 "path": "System.Diagnostics.Debug/4.0.11", 7127 "path": "System.Diagnostics.Debug/4.0.11",
6564 "files": [ 7128 "files": [
@@ -6624,7 +7188,7 @@ @@ -6624,7 +7188,7 @@
6624 ] 7188 ]
6625 }, 7189 },
6626 "System.Diagnostics.DiagnosticSource/4.0.0": { 7190 "System.Diagnostics.DiagnosticSource/4.0.0": {
6627 - "sha512": "YKglnq4BMTJxfcr6nuT08g+yJ0UxdePIHxosiLuljuHIUR6t4KhFsyaHOaOc1Ofqp0PUvJ0EmcgiEz6T7vEx3w==", 7191 + "sha512": "58ZQDYia4QeKxf5GRlA3fnPJPaMOgyC5HS9iazuvZDiCFKuwyeydvCkTIS1PogAbebgmoGQWTXweXtwg+PzzfA==",
6628 "type": "package", 7192 "type": "package",
6629 "path": "System.Diagnostics.DiagnosticSource/4.0.0", 7193 "path": "System.Diagnostics.DiagnosticSource/4.0.0",
6630 "files": [ 7194 "files": [
@@ -6643,7 +7207,7 @@ @@ -6643,7 +7207,7 @@
6643 ] 7207 ]
6644 }, 7208 },
6645 "System.Diagnostics.FileVersionInfo/4.0.0": { 7209 "System.Diagnostics.FileVersionInfo/4.0.0": {
6646 - "sha512": "qjF74OTAU+mRhLaL4YSfiWy3vj6T3AOz8AW37l5zCwfbBfj0k7E94XnEsRaf2TnhE/7QaV6Hvqakoy2LoV8MVg==", 7210 + "sha512": "l2A9g/7Q45uUYJcyHNZa3P5A31KR9T3qVBrkxV6irnPEq2gvtvaXUphDycWoN1EOwwiGfRkv+/uhN9hLMBkstg==",
6647 "type": "package", 7211 "type": "package",
6648 "path": "System.Diagnostics.FileVersionInfo/4.0.0", 7212 "path": "System.Diagnostics.FileVersionInfo/4.0.0",
6649 "files": [ 7213 "files": [
@@ -6683,7 +7247,7 @@ @@ -6683,7 +7247,7 @@
6683 ] 7247 ]
6684 }, 7248 },
6685 "System.Diagnostics.Process/4.1.0": { 7249 "System.Diagnostics.Process/4.1.0": {
6686 - "sha512": "mpVZ5bnlSs3tTeJ6jYyDJEIa6tavhAd88lxq1zbYhkkCu0Pno2+gHXcvZcoygq2d8JxW3gojXqNJMTAshduqZA==", 7250 + "sha512": "EWsMM9AGBBgKUUI5GWhUuzL18CHDMAI0lLh1WL68Pp7+h78pNAAi/UjmH0u+7HcZYtL/qvjAh9XMwFN7fFUxdQ==",
6687 "type": "package", 7251 "type": "package",
6688 "path": "System.Diagnostics.Process/4.1.0", 7252 "path": "System.Diagnostics.Process/4.1.0",
6689 "files": [ 7253 "files": [
@@ -6738,7 +7302,7 @@ @@ -6738,7 +7302,7 @@
6738 ] 7302 ]
6739 }, 7303 },
6740 "System.Diagnostics.StackTrace/4.0.1": { 7304 "System.Diagnostics.StackTrace/4.0.1": {
6741 - "sha512": "6i2EbRq0lgGfiZ+FDf0gVaw9qeEU+7IS2+wbZJmFVpvVzVOgZEt0ScZtyenuBvs6iDYbGiF51bMAa0oDP/tujQ==", 7305 + "sha512": "2LmSZyzBWcAUlVZMhSg9nf+BHr7AbvanMMtfkmixslhWBcLwIHK2H97yKXMsMNVLZBxqzGEbdUQ6W4nWeyXwFA==",
6742 "type": "package", 7306 "type": "package",
6743 "path": "System.Diagnostics.StackTrace/4.0.1", 7307 "path": "System.Diagnostics.StackTrace/4.0.1",
6744 "files": [ 7308 "files": [
@@ -6776,7 +7340,7 @@ @@ -6776,7 +7340,7 @@
6776 ] 7340 ]
6777 }, 7341 },
6778 "System.Diagnostics.Tools/4.0.1": { 7342 "System.Diagnostics.Tools/4.0.1": {
6779 - "sha512": "xBfJ8pnd4C17dWaC9FM6aShzbJcRNMChUMD42I6772KGGrqaFdumwhn9OdM68erj1ueNo3xdQ1EwiFjK5k8p0g==", 7343 + "sha512": "p/7TmdvZ80PJZNda3IRCfNTgMJzj8Z/rb7vf9xeGHksHGUwjwMS0diAq9rDVOEasOsAHdOU7g30IFlMq4Pa7Sg==",
6780 "type": "package", 7344 "type": "package",
6781 "path": "System.Diagnostics.Tools/4.0.1", 7345 "path": "System.Diagnostics.Tools/4.0.1",
6782 "files": [ 7346 "files": [
@@ -6831,7 +7395,7 @@ @@ -6831,7 +7395,7 @@
6831 ] 7395 ]
6832 }, 7396 },
6833 "System.Diagnostics.Tracing/4.1.0": { 7397 "System.Diagnostics.Tracing/4.1.0": {
6834 - "sha512": "vDN1PoMZCkkdNjvZLql592oYJZgS7URcJzJ7bxeBgGtx5UtR5leNm49VmfHGqIffX4FKacHbI3H6UyNSHQknBg==", 7398 + "sha512": "5UHIgWd2DAJec0CvwoNsD8/TFFpQQ26PLaB9CBZK7oH2O+7y1K55GYfZfxVENqlkKOCoiNe/BRJB1r8gDidZBw==",
6835 "type": "package", 7399 "type": "package",
6836 "path": "System.Diagnostics.Tracing/4.1.0", 7400 "path": "System.Diagnostics.Tracing/4.1.0",
6837 "files": [ 7401 "files": [
@@ -6919,7 +7483,7 @@ @@ -6919,7 +7483,7 @@
6919 ] 7483 ]
6920 }, 7484 },
6921 "System.Dynamic.Runtime/4.0.11": { 7485 "System.Dynamic.Runtime/4.0.11": {
6922 - "sha512": "db34f6LHYM0U0JpE+sOmjar27BnqTVkbLJhgfwMpTdgTigG/Hna3m2MYVwnFzGGKnEJk2UXFuoVTr8WUbU91/A==", 7486 + "sha512": "Pcqkt+H9nE5MEt1S9vL0ylROqfOx1tkbm9jr/5BCqoMjBoGtUxYwdGIY7iTSrUbGVlhXf5NTxHC5Fu+b8gs5zg==",
6923 "type": "package", 7487 "type": "package",
6924 "path": "System.Dynamic.Runtime/4.0.11", 7488 "path": "System.Dynamic.Runtime/4.0.11",
6925 "files": [ 7489 "files": [
@@ -6988,7 +7552,7 @@ @@ -6988,7 +7552,7 @@
6988 ] 7552 ]
6989 }, 7553 },
6990 "System.Globalization/4.0.11": { 7554 "System.Globalization/4.0.11": {
6991 - "sha512": "B95h0YLEL2oSnwF/XjqSWKnwKOy/01VWkNlsCeMTFJLLabflpGV26nK164eRs5GiaRSBGpOxQ3pKoSnnyZN5pg==", 7555 + "sha512": "aYhtQXLOG/dSo4fZzx81sAgRH1pLcOuX+5VMIDFsX94zSG5z5oI5bLBn4ISIzVnILHuTwr1m5XpIXbi/bYmNIw==",
6992 "type": "package", 7556 "type": "package",
6993 "path": "System.Globalization/4.0.11", 7557 "path": "System.Globalization/4.0.11",
6994 "files": [ 7558 "files": [
@@ -7054,7 +7618,7 @@ @@ -7054,7 +7618,7 @@
7054 ] 7618 ]
7055 }, 7619 },
7056 "System.Globalization.Calendars/4.0.1": { 7620 "System.Globalization.Calendars/4.0.1": {
7057 - "sha512": "L1c6IqeQ88vuzC1P81JeHmHA8mxq8a18NUBNXnIY/BVb+TCyAaGIFbhpZt60h9FJNmisymoQkHEFSE9Vslja1Q==", 7621 + "sha512": "2XLK6XcBwPGauefP1knZhNjffjaEU6Hg2pTt1eLW8X79xS5Kp9gEoAipW32SO4qZNP6VExkgyNYeYNYpI4WxaA==",
7058 "type": "package", 7622 "type": "package",
7059 "path": "System.Globalization.Calendars/4.0.1", 7623 "path": "System.Globalization.Calendars/4.0.1",
7060 "files": [ 7624 "files": [
@@ -7090,7 +7654,7 @@ @@ -7090,7 +7654,7 @@
7090 ] 7654 ]
7091 }, 7655 },
7092 "System.Globalization.Extensions/4.0.1": { 7656 "System.Globalization.Extensions/4.0.1": {
7093 - "sha512": "KKo23iKeOaIg61SSXwjANN7QYDr/3op3OWGGzDzz7mypx0Za0fZSeG0l6cco8Ntp8YMYkIQcAqlk8yhm5/Uhcg==", 7657 + "sha512": "rYuMocW6jXmPT8AaL3QRLRXtljlcqd3p/NSLq9ugm+M8WHF3G5YCK62D/vNsJ4Gv93w8P65sljwOM7SEASUNKQ==",
7094 "type": "package", 7658 "type": "package",
7095 "path": "System.Globalization.Extensions/4.0.1", 7659 "path": "System.Globalization.Extensions/4.0.1",
7096 "files": [ 7660 "files": [
@@ -7129,7 +7693,7 @@ @@ -7129,7 +7693,7 @@
7129 ] 7693 ]
7130 }, 7694 },
7131 "System.Interactive.Async/3.0.0": { 7695 "System.Interactive.Async/3.0.0": {
7132 - "sha512": "UEM+WmG1Oq0bNbPx/E1jaIQ83QOrPfVDUyuYBtG6D6DpB77ytv9flPterMujumpHuoRjSc0ilSB8w41fQc05dw==", 7696 + "sha512": "iyrgkZz9Dzm0fiPouQszFC3SO/46k6AYd/jG9bu+/o0AoDMaRXtlo3TIuWVNtOuJFd1noL963QouroJ0T3rImw==",
7133 "type": "package", 7697 "type": "package",
7134 "path": "System.Interactive.Async/3.0.0", 7698 "path": "System.Interactive.Async/3.0.0",
7135 "files": [ 7699 "files": [
@@ -7142,7 +7706,7 @@ @@ -7142,7 +7706,7 @@
7142 ] 7706 ]
7143 }, 7707 },
7144 "System.IO/4.1.0": { 7708 "System.IO/4.1.0": {
7145 - "sha512": "3KlTJceQc3gnGIaHZ7UBZO26SHL1SHE4ddrmiwumFnId+CEHP+O8r386tZKaE6zlk5/mF8vifMBzHj9SaXN+mQ==", 7709 + "sha512": "fwTrqi/gh0YkOwTQ1lVtX8Ux0RrzPE0vumLMRKce2jc94bVAioAi4LzJtvYBZnkOByhCe5pfqjP+k5XtWlp6lw==",
7146 "type": "package", 7710 "type": "package",
7147 "path": "System.IO/4.1.0", 7711 "path": "System.IO/4.1.0",
7148 "files": [ 7712 "files": [
@@ -7221,7 +7785,7 @@ @@ -7221,7 +7785,7 @@
7221 ] 7785 ]
7222 }, 7786 },
7223 "System.IO.Compression/4.1.0": { 7787 "System.IO.Compression/4.1.0": {
7224 - "sha512": "TjnBS6eztThSzeSib+WyVbLzEdLKUcEHN69VtS3u8aAsSc18FU6xCZlNWWsEd8SKcXAE+y1sOu7VbU8sUeM0sg==", 7788 + "sha512": "6WFeOlUoBX/UJyYvEXigLoUgDt0RW+P3WC0cAVNBS1s9SJGP11mJHUULwVhTmLf4Iim+hg2SZymUgWo0SNquCg==",
7225 "type": "package", 7789 "type": "package",
7226 "path": "System.IO.Compression/4.1.0", 7790 "path": "System.IO.Compression/4.1.0",
7227 "files": [ 7791 "files": [
@@ -7290,7 +7854,7 @@ @@ -7290,7 +7854,7 @@
7290 ] 7854 ]
7291 }, 7855 },
7292 "System.IO.Compression.ZipFile/4.0.1": { 7856 "System.IO.Compression.ZipFile/4.0.1": {
7293 - "sha512": "hBQYJzfTbQURF10nLhd+az2NHxsU6MU7AB8RUf4IolBP5lOAm4Luho851xl+CqslmhI5ZH/el8BlngEk4lBkaQ==", 7857 + "sha512": "aLqdVzG6OIDZPicvO2/yosgFgXlsNo6TNwvOBOx7GDxf1NPT74jBOipCl5OmHwFn8CX/Erbt13gp5kGV3VmaDg==",
7294 "type": "package", 7858 "type": "package",
7295 "path": "System.IO.Compression.ZipFile/4.0.1", 7859 "path": "System.IO.Compression.ZipFile/4.0.1",
7296 "files": [ 7860 "files": [
@@ -7327,7 +7891,7 @@ @@ -7327,7 +7891,7 @@
7327 ] 7891 ]
7328 }, 7892 },
7329 "System.IO.FileSystem/4.0.1": { 7893 "System.IO.FileSystem/4.0.1": {
7330 - "sha512": "IBErlVq5jOggAD69bg1t0pJcHaDbJbWNUZTPI96fkYWzwYbN6D9wRHMULLDd9dHsl7C2YsxXL31LMfPI1SWt8w==", 7894 + "sha512": "IE2ptfsZ2Bpv40+4RyjXHaHrkA1gdFdbIvqrcXe+Z5pbTWx/efAzEoqbGPB0kYJYgjpOmH4p4fIqzu6DDn9BAA==",
7331 "type": "package", 7895 "type": "package",
7332 "path": "System.IO.FileSystem/4.0.1", 7896 "path": "System.IO.FileSystem/4.0.1",
7333 "files": [ 7897 "files": [
@@ -7363,7 +7927,7 @@ @@ -7363,7 +7927,7 @@
7363 ] 7927 ]
7364 }, 7928 },
7365 "System.IO.FileSystem.Primitives/4.0.1": { 7929 "System.IO.FileSystem.Primitives/4.0.1": {
7366 - "sha512": "kWkKD203JJKxJeE74p8aF8y4Qc9r9WQx4C0cHzHPrY3fv/L/IhWnyCHaFJ3H1QPOH6A93whlQ2vG5nHlBDvzWQ==", 7930 + "sha512": "dbW5P879jxhS3SsCqXUbMye7OtbsX2mrdHf6khpESrfpwmz2B3Q1YbW9srMaU8Kuv+95wGklqFL2MRGGE4wQQw==",
7367 "type": "package", 7931 "type": "package",
7368 "path": "System.IO.FileSystem.Primitives/4.0.1", 7932 "path": "System.IO.FileSystem.Primitives/4.0.1",
7369 "files": [ 7933 "files": [
@@ -7400,7 +7964,7 @@ @@ -7400,7 +7964,7 @@
7400 ] 7964 ]
7401 }, 7965 },
7402 "System.IO.FileSystem.Watcher/4.0.0": { 7966 "System.IO.FileSystem.Watcher/4.0.0": {
7403 - "sha512": "qM4Wr3La+RYb/03B0mZZjbA7tHsGzDffnuXP8Sl48HW2JwCjn3kfD5qdw0sqyNNowUipcJMi9/q6sMUrOIJ6UQ==", 7967 + "sha512": "sZ6KWO4RM1wMXGHy05OjiC+yGrybxFXnyyIhclihScEONYBcYwT1vZJMLY1fDcyZ3Qr191SLNqeFzShXXSP5yw==",
7404 "type": "package", 7968 "type": "package",
7405 "path": "System.IO.FileSystem.Watcher/4.0.0", 7969 "path": "System.IO.FileSystem.Watcher/4.0.0",
7406 "files": [ 7970 "files": [
@@ -7441,7 +8005,7 @@ @@ -7441,7 +8005,7 @@
7441 ] 8005 ]
7442 }, 8006 },
7443 "System.IO.MemoryMappedFiles/4.0.0": { 8007 "System.IO.MemoryMappedFiles/4.0.0": {
7444 - "sha512": "Xqj4xaFAnLVpss9ZSUIvB/VdJAA7GxZDnFGDKJfiGAnZ5VnFROn6eOHWepFpujCYTsh6wlZ3B33bqYkF0QJ7Eg==", 8008 + "sha512": "5qIe5coj52mD+tQB4pem48n1k8mikZQ4JuisKXeUMfCiWBeSW5cv0fIUmMzKDP/No0ZUiyTV6eBwEP6reASPmA==",
7445 "type": "package", 8009 "type": "package",
7446 "path": "System.IO.MemoryMappedFiles/4.0.0", 8010 "path": "System.IO.MemoryMappedFiles/4.0.0",
7447 "files": [ 8011 "files": [
@@ -7480,8 +8044,36 @@ @@ -7480,8 +8044,36 @@
7480 "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll" 8044 "runtimes/win/lib/netstandard1.3/System.IO.MemoryMappedFiles.dll"
7481 ] 8045 ]
7482 }, 8046 },
  8047 + "System.IO.Pipes/4.0.0": {
  8048 + "sha512": "L9QVhk8hIEix5KNA0kW58Ha+Y1dNGqqqIhAaJkhcGCWeQzUmN0njzI7SG/XAazpMecboOdFFlH3pH/qbwXLJAg==",
  8049 + "type": "package",
  8050 + "path": "System.IO.Pipes/4.0.0",
  8051 + "files": [
  8052 + "System.IO.Pipes.4.0.0.nupkg.sha512",
  8053 + "System.IO.Pipes.nuspec",
  8054 + "ThirdPartyNotices.txt",
  8055 + "dotnet_library_license.txt",
  8056 + "lib/net46/System.IO.Pipes.dll",
  8057 + "ref/net46/System.IO.Pipes.dll",
  8058 + "ref/netstandard1.3/System.IO.Pipes.dll",
  8059 + "ref/netstandard1.3/System.IO.Pipes.xml",
  8060 + "ref/netstandard1.3/de/System.IO.Pipes.xml",
  8061 + "ref/netstandard1.3/es/System.IO.Pipes.xml",
  8062 + "ref/netstandard1.3/fr/System.IO.Pipes.xml",
  8063 + "ref/netstandard1.3/it/System.IO.Pipes.xml",
  8064 + "ref/netstandard1.3/ja/System.IO.Pipes.xml",
  8065 + "ref/netstandard1.3/ko/System.IO.Pipes.xml",
  8066 + "ref/netstandard1.3/ru/System.IO.Pipes.xml",
  8067 + "ref/netstandard1.3/zh-hans/System.IO.Pipes.xml",
  8068 + "ref/netstandard1.3/zh-hant/System.IO.Pipes.xml",
  8069 + "runtimes/unix/lib/netstandard1.3/System.IO.Pipes.dll",
  8070 + "runtimes/win/lib/net46/System.IO.Pipes.dll",
  8071 + "runtimes/win/lib/netstandard1.3/System.IO.Pipes.dll",
  8072 + "runtimes/win7/lib/netcore50/_._"
  8073 + ]
  8074 + },
7483 "System.IO.UnmanagedMemoryStream/4.0.1": { 8075 "System.IO.UnmanagedMemoryStream/4.0.1": {
7484 - "sha512": "wcq0kXcpfJwdl1Y4/ZjDk7Dhx5HdLyRYYWYmD8Nn8skoGYYQd2BQWbXwjWSczip8AL4Z57o2dWWXAl4aABAKiQ==", 8076 + "sha512": "9oaDospZ4F9mROF4MhuNjR1fXZeDVMxV0JfQ8VEtTYRsSsPKyuAtelWjoXKCoa6m+4L2SHtZpfnuz0VXP0EBZQ==",
7485 "type": "package", 8077 "type": "package",
7486 "path": "System.IO.UnmanagedMemoryStream/4.0.1", 8078 "path": "System.IO.UnmanagedMemoryStream/4.0.1",
7487 "files": [ 8079 "files": [
@@ -7518,7 +8110,7 @@ @@ -7518,7 +8110,7 @@
7518 ] 8110 ]
7519 }, 8111 },
7520 "System.Linq/4.1.0": { 8112 "System.Linq/4.1.0": {
7521 - "sha512": "bQ0iYFOQI0nuTnt+NQADns6ucV4DUvMdwN6CbkB1yj8i7arTGiTN5eok1kQwdnnNWSDZfIUySQY+J3d5KjWn0g==", 8113 + "sha512": "bXOxDkTSHyJhQNZ63cl01GRccH0Db31IPXVMOquhRDhHFTEtw75Da11VBJMUjEFOhGOct1hgzMtFV8jbqJnrDw==",
7522 "type": "package", 8114 "type": "package",
7523 "path": "System.Linq/4.1.0", 8115 "path": "System.Linq/4.1.0",
7524 "files": [ 8116 "files": [
@@ -7588,7 +8180,7 @@ @@ -7588,7 +8180,7 @@
7588 ] 8180 ]
7589 }, 8181 },
7590 "System.Linq.Expressions/4.1.0": { 8182 "System.Linq.Expressions/4.1.0": {
7591 - "sha512": "I+y02iqkgmCAyfbqOmSDOgqdZQ5tTj80Akm5BPSS8EeB0VGWdy6X1KCoYe8Pk6pwDoAKZUOdLVxnTJcExiv5zw==", 8183 + "sha512": "l1hwpOS4QdkCy6p5mUKMFXKsoGUseExAvavV9tbUt6lctLgiDF07wMG6jf+/twcYJMpdqzbvJcNjTfY9zFcQBg==",
7592 "type": "package", 8184 "type": "package",
7593 "path": "System.Linq.Expressions/4.1.0", 8185 "path": "System.Linq.Expressions/4.1.0",
7594 "files": [ 8186 "files": [
@@ -7670,7 +8262,7 @@ @@ -7670,7 +8262,7 @@
7670 ] 8262 ]
7671 }, 8263 },
7672 "System.Linq.Parallel/4.0.1": { 8264 "System.Linq.Parallel/4.0.1": {
7673 - "sha512": "J7XCa7n2cFn32uLbtceXfBFhgCk5M++50lylHKNbqTiJkw5y4Tglpi6amuJNPCvj9bLzNSI7rs1fi4joLMNRgg==", 8265 + "sha512": "4qr/HEwe7IPDygsRq+nVunCdk8+2+bxzu/71Bz/JKv4cqJybUAY+B325NK4s4aj9PCBbBbPx3zvZctGx3g3Ykw==",
7674 "type": "package", 8266 "type": "package",
7675 "path": "System.Linq.Parallel/4.0.1", 8267 "path": "System.Linq.Parallel/4.0.1",
7676 "files": [ 8268 "files": [
@@ -7725,7 +8317,7 @@ @@ -7725,7 +8317,7 @@
7725 ] 8317 ]
7726 }, 8318 },
7727 "System.Linq.Queryable/4.0.1": { 8319 "System.Linq.Queryable/4.0.1": {
7728 - "sha512": "Yn/WfYe9RoRfmSLvUt2JerP0BTGGykCZkQPgojaxgzF2N0oPo+/AhB8TXOpdCcNlrG3VRtsamtK2uzsp3cqRVw==", 8320 + "sha512": "29rxl5RIbPEdlfecXa64bKYcC7Ax20j/7pxuW826emk8emICF5e6Ghqx0FHTIdSezdzzQFbSmEQRjSJaT4YW/Q==",
7729 "type": "package", 8321 "type": "package",
7730 "path": "System.Linq.Queryable/4.0.1", 8322 "path": "System.Linq.Queryable/4.0.1",
7731 "files": [ 8323 "files": [
@@ -7782,7 +8374,7 @@ @@ -7782,7 +8374,7 @@
7782 ] 8374 ]
7783 }, 8375 },
7784 "System.Net.Http/4.1.0": { 8376 "System.Net.Http/4.1.0": {
7785 - "sha512": "ULq9g3SOPVuupt+Y3U+A37coXzdNisB1neFCSKzBwo182u0RDddKJF8I5+HfyXqK6OhJPgeoAwWXrbiUXuRDsg==", 8377 + "sha512": "qPm6Lv0hrlOejR4HeZhH3BIavDdgZY7mJ7VwXWHeSJqF/yqLv60MgfNi5lECJo5KCq2VL9hRbaCrOOX0msx5GA==",
7786 "type": "package", 8378 "type": "package",
7787 "path": "System.Net.Http/4.1.0", 8379 "path": "System.Net.Http/4.1.0",
7788 "files": [ 8380 "files": [
@@ -7862,7 +8454,7 @@ @@ -7862,7 +8454,7 @@
7862 ] 8454 ]
7863 }, 8455 },
7864 "System.Net.NameResolution/4.0.0": { 8456 "System.Net.NameResolution/4.0.0": {
7865 - "sha512": "JdqRdM1Qym3YehqdKIi5LHrpypP4JMfxKQSNCJ2z4WawkG0il+N3XfNeJOxll2XrTnG7WgYYPoeiu/KOwg0DQw==", 8457 + "sha512": "ExtX9Quhtce24vBSoB40RF117zNmJxZXiQtV6tro8nnzaqQQnJgCozG+/dY7+GKFvDHAW89LKifXpwOno/lZFg==",
7866 "type": "package", 8458 "type": "package",
7867 "path": "System.Net.NameResolution/4.0.0", 8459 "path": "System.Net.NameResolution/4.0.0",
7868 "files": [ 8460 "files": [
@@ -7975,7 +8567,7 @@ @@ -7975,7 +8567,7 @@
7975 ] 8567 ]
7976 }, 8568 },
7977 "System.Net.Primitives/4.0.11": { 8569 "System.Net.Primitives/4.0.11": {
7978 - "sha512": "hVvfl4405DRjA2408luZekbPhplJK03j2Y2lSfMlny7GHXlkByw1iLnc9mgKW0GdQn73vvMcWrWewAhylXA4Nw==", 8570 + "sha512": "rQV5RutfNDT4rgBYTSFNAYjQJKDdMY/3lBF01L3oZaeWCFLmhuS49SVWXpAWyzgdnxm3pySi/MfUZddXK8sPVQ==",
7979 "type": "package", 8571 "type": "package",
7980 "path": "System.Net.Primitives/4.0.11", 8572 "path": "System.Net.Primitives/4.0.11",
7981 "files": [ 8573 "files": [
@@ -8052,7 +8644,7 @@ @@ -8052,7 +8644,7 @@
8052 ] 8644 ]
8053 }, 8645 },
8054 "System.Net.Requests/4.0.11": { 8646 "System.Net.Requests/4.0.11": {
8055 - "sha512": "vxGt7C0cZixN+VqoSW4Yakc1Y9WknmxauDqzxgpw/FnBdz4kQNN51l4wxdXX5VY1xjqy//+G+4CvJWp1+f+y6Q==", 8647 + "sha512": "whUUsitWpiiT1RncZZd8QGWfZD8q+pvsoT4/3BBpoQALFyE4d3kGW96ZDadGu2+yaPajTDrgjrbv/mGdU4Fhgg==",
8056 "type": "package", 8648 "type": "package",
8057 "path": "System.Net.Requests/4.0.11", 8649 "path": "System.Net.Requests/4.0.11",
8058 "files": [ 8650 "files": [
@@ -8133,7 +8725,7 @@ @@ -8133,7 +8725,7 @@
8133 ] 8725 ]
8134 }, 8726 },
8135 "System.Net.Security/4.0.0": { 8727 "System.Net.Security/4.0.0": {
8136 - "sha512": "uM1JaYJciCc2w7efD6du0EpQ1n5ZQqE6/P43/aI4H5E59qvP+wt3l70KIUF/Ha7NaeXGoGNFPVO0MB80pVHk2g==", 8728 + "sha512": "foqCkcdA/9azT4gcoAbgg50xtWSgwxMu681vixmh42lxZkPSrybal/RB7DxebOzI3IbqfLI9FylzRdabOvF82Q==",
8137 "type": "package", 8729 "type": "package",
8138 "path": "System.Net.Security/4.0.0", 8730 "path": "System.Net.Security/4.0.0",
8139 "files": [ 8731 "files": [
@@ -8173,7 +8765,7 @@ @@ -8173,7 +8765,7 @@
8173 ] 8765 ]
8174 }, 8766 },
8175 "System.Net.Sockets/4.1.0": { 8767 "System.Net.Sockets/4.1.0": {
8176 - "sha512": "xAz0N3dAV/aR/9g8r0Y5oEqU1JRsz29F5EGb/WVHmX3jVSLqi2/92M5hTad2aNWovruXrJpJtgZ9fccPMG9uSw==", 8768 + "sha512": "ol32vQdQy6Lt0lZalTLXY46UQs1VLaYkJNGS0r8jtQ/I6ZQc1zZESRecScQhKfa+7K2sDPq6RJ4AP/EzgzRZUA==",
8177 "type": "package", 8769 "type": "package",
8178 "path": "System.Net.Sockets/4.1.0", 8770 "path": "System.Net.Sockets/4.1.0",
8179 "files": [ 8771 "files": [
@@ -8209,7 +8801,7 @@ @@ -8209,7 +8801,7 @@
8209 ] 8801 ]
8210 }, 8802 },
8211 "System.Net.WebHeaderCollection/4.0.1": { 8803 "System.Net.WebHeaderCollection/4.0.1": {
8212 - "sha512": "XX2TIAN+wBSAIV51BU2FvvXMdstUa8b0FBSZmDWjZdwUMmggQSifpTOZ5fNH20z9ZCg2fkV1L5SsZnpO2RQDRQ==", 8804 + "sha512": "HHwHK6GhWWF+WxjIWJYxeVtoq26iCObcS1jBZ6UcRzEYQsA22tKxD4ppzU/EVvP9nszFbM1JqYrZEpZ8fLGvQg==",
8213 "type": "package", 8805 "type": "package",
8214 "path": "System.Net.WebHeaderCollection/4.0.1", 8806 "path": "System.Net.WebHeaderCollection/4.0.1",
8215 "files": [ 8807 "files": [
@@ -8283,7 +8875,7 @@ @@ -8283,7 +8875,7 @@
8283 ] 8875 ]
8284 }, 8876 },
8285 "System.Numerics.Vectors/4.1.1": { 8877 "System.Numerics.Vectors/4.1.1": {
8286 - "sha512": "Ex1NSKycC2wi5XBMWUGWPc3lumh6OQWFFmmpZFZz0oLht5lQ+wWPHVZumOrMJuckfUiVMd4p67BrkBos8lcF+Q==", 8878 + "sha512": "vIuSFH9FO5kh1NQoFuUdpH6ZyziDMjqdUQhmTdZXxPBG0SsCmLoy5nlf7GAMMTQOtjja/mRGQoW7/+JNqLw4nw==",
8287 "type": "package", 8879 "type": "package",
8288 "path": "System.Numerics.Vectors/4.1.1", 8880 "path": "System.Numerics.Vectors/4.1.1",
8289 "files": [ 8881 "files": [
@@ -8316,7 +8908,7 @@ @@ -8316,7 +8908,7 @@
8316 ] 8908 ]
8317 }, 8909 },
8318 "System.ObjectModel/4.0.12": { 8910 "System.ObjectModel/4.0.12": {
8319 - "sha512": "tAgJM1xt3ytyMoW4qn4wIqgJYm7L7TShRZG4+Q4Qsi2PCcj96pXN7nRywS9KkB3p/xDUjc2HSwP9SROyPYDYKQ==", 8911 + "sha512": "K7o2e1qx40Z6YaqI8JNytTk/nfqjTThSPMRIzm/c0AZ746oxhYM8enoniXYjqeJzaGsYZtXh18B9eZsXv9c5FA==",
8320 "type": "package", 8912 "type": "package",
8321 "path": "System.ObjectModel/4.0.12", 8913 "path": "System.ObjectModel/4.0.12",
8322 "files": [ 8914 "files": [
@@ -8384,7 +8976,7 @@ @@ -8384,7 +8976,7 @@
8384 ] 8976 ]
8385 }, 8977 },
8386 "System.Reflection/4.1.0": { 8978 "System.Reflection/4.1.0": {
8387 - "sha512": "JCKANJ0TI7kzoQzuwB/OoJANy1Lg338B6+JVacPl4TpUwi3cReg3nMLplMq2uqYfHFQpKIlHAUVAJlImZz/4ng==", 8979 + "sha512": "7hmR6b8W0McRMEmtsjzHhn/jq5TDmOqLcRJKg73oY/sUoLLNqGZgB4FX8czW+TG/B5+FtiJWcsKuaofYxMef/w==",
8388 "type": "package", 8980 "type": "package",
8389 "path": "System.Reflection/4.1.0", 8981 "path": "System.Reflection/4.1.0",
8390 "files": [ 8982 "files": [
@@ -8463,7 +9055,7 @@ @@ -8463,7 +9055,7 @@
8463 ] 9055 ]
8464 }, 9056 },
8465 "System.Reflection.DispatchProxy/4.0.1": { 9057 "System.Reflection.DispatchProxy/4.0.1": {
8466 - "sha512": "GPPgWoSxQEU3aCKSOvsAc1dhTTi4iq92PUVEVfnGPGwqCf6synaAJGYLKMs5E3CuRfel8ufACWUijXqDpOlGrA==", 9058 + "sha512": "kJyve8mAb3lvxK9XVAGqzqv3shIRfcBc4BcBziiZ7+G/jHEh8ddwpn8LKzPTC4Q8VtlbMu4LVmHXuLnKzSNCQw==",
8467 "type": "package", 9059 "type": "package",
8468 "path": "System.Reflection.DispatchProxy/4.0.1", 9060 "path": "System.Reflection.DispatchProxy/4.0.1",
8469 "files": [ 9061 "files": [
@@ -8499,7 +9091,7 @@ @@ -8499,7 +9091,7 @@
8499 ] 9091 ]
8500 }, 9092 },
8501 "System.Reflection.Emit/4.0.1": { 9093 "System.Reflection.Emit/4.0.1": {
8502 - "sha512": "P2wqAj72fFjpP6wb9nSfDqNBMab+2ovzSDzUZK7MVIm54tBJEPr9jWfSjjoTpPwj1LeKcmX3vr0ttyjSSFM47g==", 9094 + "sha512": "ASLJdTJwfTDyFqzhcl8yqsHxnLuSqC3njA72XYBc+QlpxF345b7nrnNF341h6dtV7TIJf99acQtUpYNag3o7Yw==",
8503 "type": "package", 9095 "type": "package",
8504 "path": "System.Reflection.Emit/4.0.1", 9096 "path": "System.Reflection.Emit/4.0.1",
8505 "files": [ 9097 "files": [
@@ -8529,7 +9121,7 @@ @@ -8529,7 +9121,7 @@
8529 ] 9121 ]
8530 }, 9122 },
8531 "System.Reflection.Emit.ILGeneration/4.0.1": { 9123 "System.Reflection.Emit.ILGeneration/4.0.1": {
8532 - "sha512": "Ov6dU8Bu15Bc7zuqttgHF12J5lwSWyTf1S+FJouUXVMSqImLZzYaQ+vRr1rQ0OZ0HqsrwWl4dsKHELckQkVpgA==", 9124 + "sha512": "+NEKAuwXGfAuY5VDPKSlhwDtECBwl4CySFsPID4h/Gi3w2sPqSNjDg5mpFrhDlCG6qL2F4rpYtRPB9+szR89rQ==",
8533 "type": "package", 9125 "type": "package",
8534 "path": "System.Reflection.Emit.ILGeneration/4.0.1", 9126 "path": "System.Reflection.Emit.ILGeneration/4.0.1",
8535 "files": [ 9127 "files": [
@@ -8560,7 +9152,7 @@ @@ -8560,7 +9152,7 @@
8560 ] 9152 ]
8561 }, 9153 },
8562 "System.Reflection.Emit.Lightweight/4.0.1": { 9154 "System.Reflection.Emit.Lightweight/4.0.1": {
8563 - "sha512": "sSzHHXueZ5Uh0OLpUQprhr+ZYJrLPA2Cmr4gn0wj9+FftNKXx8RIMKvO9qnjk2ebPYUjZ+F2ulGdPOsvj+MEjA==", 9155 + "sha512": "mkYSn+6AT4RoanXj76H4EQvFDiQCSHOsMBSwbrRbShHXLV/g+BRoTN2bdBLZezU6GVqp+nlc7y24DljgtQw9SQ==",
8564 "type": "package", 9156 "type": "package",
8565 "path": "System.Reflection.Emit.Lightweight/4.0.1", 9157 "path": "System.Reflection.Emit.Lightweight/4.0.1",
8566 "files": [ 9158 "files": [
@@ -8591,7 +9183,7 @@ @@ -8591,7 +9183,7 @@
8591 ] 9183 ]
8592 }, 9184 },
8593 "System.Reflection.Extensions/4.0.1": { 9185 "System.Reflection.Extensions/4.0.1": {
8594 - "sha512": "GYrtRsZcMuHF3sbmRHfMYpvxZoIN2bQGrYGerUiWLEkqdEUQZhH3TRSaC/oI4wO0II1RKBPlpIa1TOMxIcOOzQ==", 9186 + "sha512": "Lv+jPORlXc+jHrOsnElDmte1UqrNhm4Ta5rRo/zHqCAgngab27k5/pS6zjFYGEtfWw8EJicoqi4QE6yoxhODNA==",
8595 "type": "package", 9187 "type": "package",
8596 "path": "System.Reflection.Extensions/4.0.1", 9188 "path": "System.Reflection.Extensions/4.0.1",
8597 "files": [ 9189 "files": [
@@ -8646,7 +9238,7 @@ @@ -8646,7 +9238,7 @@
8646 ] 9238 ]
8647 }, 9239 },
8648 "System.Reflection.Metadata/1.3.0": { 9240 "System.Reflection.Metadata/1.3.0": {
8649 - "sha512": "jMSCxA4LSyKBGRDm/WtfkO03FkcgRzHxwvQRib1bm2GZ8ifKM1MX1al6breGCEQK280mdl9uQS7JNPXRYk90jw==", 9241 + "sha512": "oB8/kvfjbJk+wBeJdWqFNGjk8b2o7dBw58KXabwEMFzQ8FsAWCDR/A7yZjCiQYi9Wqb/Sh/EbWswg7/+cussgQ==",
8650 "type": "package", 9242 "type": "package",
8651 "path": "System.Reflection.Metadata/1.3.0", 9243 "path": "System.Reflection.Metadata/1.3.0",
8652 "files": [ 9244 "files": [
@@ -8661,7 +9253,7 @@ @@ -8661,7 +9253,7 @@
8661 ] 9253 ]
8662 }, 9254 },
8663 "System.Reflection.Primitives/4.0.1": { 9255 "System.Reflection.Primitives/4.0.1": {
8664 - "sha512": "4inTox4wTBaDhB7V3mPvp9XlCbeGYWVEM9/fXALd52vNEAVisc1BoVWQPuUuD0Ga//dNbA/WeMy9u9mzLxGTHQ==", 9256 + "sha512": "lWZ4xWTUIzq5WBiA8guaNtk6Wqn/2bXzpjPX8GMQXyLTPghS0/u/kJBLStAtZAbI3o6lfxqcrsuqTI6+TIYYtQ==",
8665 "type": "package", 9257 "type": "package",
8666 "path": "System.Reflection.Primitives/4.0.1", 9258 "path": "System.Reflection.Primitives/4.0.1",
8667 "files": [ 9259 "files": [
@@ -8716,7 +9308,7 @@ @@ -8716,7 +9308,7 @@
8716 ] 9308 ]
8717 }, 9309 },
8718 "System.Reflection.TypeExtensions/4.1.0": { 9310 "System.Reflection.TypeExtensions/4.1.0": {
8719 - "sha512": "tsQ/ptQ3H5FYfON8lL4MxRk/8kFyE0A+tGPXmVP967cT/gzLHYxIejIYSxp4JmIeFHVP78g/F2FE1mUUTbDtrg==", 9311 + "sha512": "9OUX7nuz+p9GB1OP2DGw6omeOEeU+7Ql8yt3VRkcj0onOTAQ71xSPE9A8kkeccx1Rhsg5kCVUJgrbet6fsF0wA==",
8720 "type": "package", 9312 "type": "package",
8721 "path": "System.Reflection.TypeExtensions/4.1.0", 9313 "path": "System.Reflection.TypeExtensions/4.1.0",
8722 "files": [ 9314 "files": [
@@ -8768,7 +9360,7 @@ @@ -8768,7 +9360,7 @@
8768 ] 9360 ]
8769 }, 9361 },
8770 "System.Resources.Reader/4.0.0": { 9362 "System.Resources.Reader/4.0.0": {
8771 - "sha512": "VX1iHAoHxgrLZv+nq/9drCZI6Q4SSCzSVyUm1e0U60sqWdj6XhY7wvKmy3RvsSal9h+/vqSWwxxJsm0J4vn/jA==", 9363 + "sha512": "JnBZiGvp2UmmBeZKzTuOZWjcXAb3rmirC+iVHfFJdEYDYaLUbTfRilug5umjcTy4784avvFEuy1o6RUchz/AVA==",
8772 "type": "package", 9364 "type": "package",
8773 "path": "System.Resources.Reader/4.0.0", 9365 "path": "System.Resources.Reader/4.0.0",
8774 "files": [ 9366 "files": [
@@ -8780,7 +9372,7 @@ @@ -8780,7 +9372,7 @@
8780 ] 9372 ]
8781 }, 9373 },
8782 "System.Resources.ResourceManager/4.0.1": { 9374 "System.Resources.ResourceManager/4.0.1": {
8783 - "sha512": "TxwVeUNoTgUOdQ09gfTjvW411MF+w9MBYL7AtNVc+HtBCFlutPLhUCdZjNkjbhj3bNQWMdHboF0KIWEOjJssbA==", 9375 + "sha512": "pCib2XldZjdsDNYYCwtIzPrHN8VkeekFJK/1PUe+v6xoZ27RIjq0HJ+CwLP1CFwuMR2aL/CM4rx9CLX4yL9P+w==",
8784 "type": "package", 9376 "type": "package",
8785 "path": "System.Resources.ResourceManager/4.0.1", 9377 "path": "System.Resources.ResourceManager/4.0.1",
8786 "files": [ 9378 "files": [
@@ -8835,7 +9427,7 @@ @@ -8835,7 +9427,7 @@
8835 ] 9427 ]
8836 }, 9428 },
8837 "System.Runtime/4.1.0": { 9429 "System.Runtime/4.1.0": {
8838 - "sha512": "v6c/4Yaa9uWsq+JMhnOFewrYkgdNHNG2eMKuNqRn8P733rNXeRCGvV5FkkjBXn2dbVkPXOsO0xjsEeM1q2zC0g==", 9430 + "sha512": "WUz1/WOWrr8zNDlCA8NuWh7Osr/wcVrl0yrHVBCmMM/ywMDtEX0baH7NqyJ7miXjzIOf6Oq45zt0ak2cr7OxOA==",
8839 "type": "package", 9431 "type": "package",
8840 "path": "System.Runtime/4.1.0", 9432 "path": "System.Runtime/4.1.0",
8841 "files": [ 9433 "files": [
@@ -8925,7 +9517,7 @@ @@ -8925,7 +9517,7 @@
8925 ] 9517 ]
8926 }, 9518 },
8927 "System.Runtime.Extensions/4.1.0": { 9519 "System.Runtime.Extensions/4.1.0": {
8928 - "sha512": "CUOHjTT/vgP0qGW22U4/hDlOqXmcPq5YicBaXdUR2UiUoLwBT+olO6we4DVbq57jeX5uXH2uerVZhf0qGj+sVQ==", 9520 + "sha512": "AZfJoOC7MNxBcFKLb8GwPs3DyawQH2D8ZWm0xm5sLnL/o5M/F2od/rgPs1VoA4l/yO2+4IXDV06ZvG7wmbTMsA==",
8929 "type": "package", 9521 "type": "package",
8930 "path": "System.Runtime.Extensions/4.1.0", 9522 "path": "System.Runtime.Extensions/4.1.0",
8931 "files": [ 9523 "files": [
@@ -9004,7 +9596,7 @@ @@ -9004,7 +9596,7 @@
9004 ] 9596 ]
9005 }, 9597 },
9006 "System.Runtime.Handles/4.0.1": { 9598 "System.Runtime.Handles/4.0.1": {
9007 - "sha512": "nCJvEKguXEvk2ymk1gqj625vVnlK3/xdGzx0vOKicQkoquaTBJTP13AIYkocSUwHCLNBwUbXTqTWGDxBTWpt7g==", 9599 + "sha512": "7UysTjrieyfbQvAcd597YpqDEdVBVu0ttCN+WKi3RHGAzT/o7iLuAkexzYNlvEO+2XmeD3AxkFPU61Tyw1TRTw==",
9008 "type": "package", 9600 "type": "package",
9009 "path": "System.Runtime.Handles/4.0.1", 9601 "path": "System.Runtime.Handles/4.0.1",
9010 "files": [ 9602 "files": [
@@ -9040,7 +9632,7 @@ @@ -9040,7 +9632,7 @@
9040 ] 9632 ]
9041 }, 9633 },
9042 "System.Runtime.InteropServices/4.1.0": { 9634 "System.Runtime.InteropServices/4.1.0": {
9043 - "sha512": "16eu3kjHS633yYdkjwShDHZLRNMKVi/s0bY8ODiqJ2RfMhDMAwxZaUaWVnZ2P71kr/or+X9o/xFWtNqz8ivieQ==", 9635 + "sha512": "tDv2SgJLjPA2uWH5KH9k5jpgGj7uhKsME2ZsZD3U/bLV6mqSXeFfIvgPjp5Ui2cvExlljvyjU8mkiF7N9LmEOg==",
9044 "type": "package", 9636 "type": "package",
9045 "path": "System.Runtime.InteropServices/4.1.0", 9637 "path": "System.Runtime.InteropServices/4.1.0",
9046 "files": [ 9638 "files": [
@@ -9128,7 +9720,7 @@ @@ -9128,7 +9720,7 @@
9128 ] 9720 ]
9129 }, 9721 },
9130 "System.Runtime.InteropServices.RuntimeInformation/4.0.0": { 9722 "System.Runtime.InteropServices.RuntimeInformation/4.0.0": {
9131 - "sha512": "hWPhJxc453RCa8Z29O91EmfGeZIHX1ZH2A8L6lYQVSaKzku2DfArSfMEb1/MYYzPQRJZeu0c9dmYeJKxW5Fgng==", 9723 + "sha512": "pvD3CCV3o2m/o1BVSworxXlg98VbHf/UAfKe3Okw9PKvNHBDwfIiUMChed7Fc7jfziyQE/4D2YW2yPLBMkkvVw==",
9132 "type": "package", 9724 "type": "package",
9133 "path": "System.Runtime.InteropServices.RuntimeInformation/4.0.0", 9725 "path": "System.Runtime.InteropServices.RuntimeInformation/4.0.0",
9134 "files": [ 9726 "files": [
@@ -9160,7 +9752,7 @@ @@ -9160,7 +9752,7 @@
9160 ] 9752 ]
9161 }, 9753 },
9162 "System.Runtime.Loader/4.0.0": { 9754 "System.Runtime.Loader/4.0.0": {
9163 - "sha512": "4UN78GOVU/mbDFcXkEWtetJT/sJ0yic2gGk1HSlSpWI0TDf421xnrZTDZnwNBapk1GQeYN7U1lTj/aQB1by6ow==", 9755 + "sha512": "w1dhRRDdflaANcxZv3FQ7M8AwsdoYAGZbgZo6EukuCypmYbXIEeu2SEK3TUrR3BWLprS0TevEE7W2GAJXS9CUw==",
9164 "type": "package", 9756 "type": "package",
9165 "path": "System.Runtime.Loader/4.0.0", 9757 "path": "System.Runtime.Loader/4.0.0",
9166 "files": [ 9758 "files": [
@@ -9184,7 +9776,7 @@ @@ -9184,7 +9776,7 @@
9184 ] 9776 ]
9185 }, 9777 },
9186 "System.Runtime.Numerics/4.0.1": { 9778 "System.Runtime.Numerics/4.0.1": {
9187 - "sha512": "+XbKFuzdmLP3d1o9pdHu2nxjNr2OEPqGzKeegPLCUMM71a0t50A/rOcIRmGs9wR7a8KuHX6hYs/7/TymIGLNqg==", 9779 + "sha512": "QNWBlIwgPAscn4hEWnv0Dnnw8UudLiLV2jWI59vVbMka+xAn3ViRilxvTScgpMXj/2IXJJT8+7d4d7CSwjTi3Q==",
9188 "type": "package", 9780 "type": "package",
9189 "path": "System.Runtime.Numerics/4.0.1", 9781 "path": "System.Runtime.Numerics/4.0.1",
9190 "files": [ 9782 "files": [
@@ -9310,7 +9902,7 @@ @@ -9310,7 +9902,7 @@
9310 ] 9902 ]
9311 }, 9903 },
9312 "System.Security.Claims/4.0.1": { 9904 "System.Security.Claims/4.0.1": {
9313 - "sha512": "4Jlp0OgJLS/Voj1kyFP6MJlIYp3crgfH8kNQk2p7+4JYfc1aAmh9PZyAMMbDhuoolGNtux9HqSOazsioRiDvCw==", 9905 + "sha512": "q/S8k4GysxT2f1i4FQaK22mhpjkJP5kBlcN5PSqRIK+PKb7cphzkVMDWH00pEbyqheqRZ5Rfa4jSeP1rnk+UqQ==",
9314 "type": "package", 9906 "type": "package",
9315 "path": "System.Security.Claims/4.0.1", 9907 "path": "System.Security.Claims/4.0.1",
9316 "files": [ 9908 "files": [
@@ -9347,7 +9939,7 @@ @@ -9347,7 +9939,7 @@
9347 ] 9939 ]
9348 }, 9940 },
9349 "System.Security.Cryptography.Algorithms/4.2.0": { 9941 "System.Security.Cryptography.Algorithms/4.2.0": {
9350 - "sha512": "8JQFxbLVdrtIOKMDN38Fn0GWnqYZw/oMlwOUG/qz1jqChvyZlnUmu+0s7wLx7JYua/nAXoESpHA3iw11QFWhXg==", 9942 + "sha512": "+O/aMiXYLbpsbvILMFerj6jFVMi0tgtCAjQxgyZctqqYuWemz4IXlb6IxDL2ItcgTYEoPhfPIIxDXycZcxoPXw==",
9351 "type": "package", 9943 "type": "package",
9352 "path": "System.Security.Cryptography.Algorithms/4.2.0", 9944 "path": "System.Security.Cryptography.Algorithms/4.2.0",
9353 "files": [ 9945 "files": [
@@ -9385,7 +9977,7 @@ @@ -9385,7 +9977,7 @@
9385 ] 9977 ]
9386 }, 9978 },
9387 "System.Security.Cryptography.Cng/4.2.0": { 9979 "System.Security.Cryptography.Cng/4.2.0": {
9388 - "sha512": "cUJ2h+ZvONDe28Szw3st5dOHdjndhJzQ2WObDEXAWRPEQBtVItVoxbXM/OEsTthl3cNn2dk2k0I3y45igCQcLw==", 9980 + "sha512": "hcjXD2osaryaC574dmJuGRZTJgrp77KsQ8ECUf1hdv3xO3jAxv9ZCzdNA0oNdSn3ulk7QZEQSdpnADvqqxYZqA==",
9389 "type": "package", 9981 "type": "package",
9390 "path": "System.Security.Cryptography.Cng/4.2.0", 9982 "path": "System.Security.Cryptography.Cng/4.2.0",
9391 "files": [ 9983 "files": [
@@ -9411,7 +10003,7 @@ @@ -9411,7 +10003,7 @@
9411 ] 10003 ]
9412 }, 10004 },
9413 "System.Security.Cryptography.Csp/4.0.0": { 10005 "System.Security.Cryptography.Csp/4.0.0": {
9414 - "sha512": "/i1Usuo4PgAqgbPNC0NjbO3jPW//BoBlTpcWFD1EHVbidH21y4c1ap5bbEMSGAXjAShhMH4abi/K8fILrnu4BQ==", 10006 + "sha512": "9LAFL/pQhyZl2zV1PCd56h3W3UJfzXIxO83dYoyu7SF/SUZzA2OFgzY5xD51Rj54EIMqTZ+uc3BboLwyq1/vyw==",
9415 "type": "package", 10007 "type": "package",
9416 "path": "System.Security.Cryptography.Csp/4.0.0", 10008 "path": "System.Security.Cryptography.Csp/4.0.0",
9417 "files": [ 10009 "files": [
@@ -9441,7 +10033,7 @@ @@ -9441,7 +10033,7 @@
9441 ] 10033 ]
9442 }, 10034 },
9443 "System.Security.Cryptography.Encoding/4.0.0": { 10035 "System.Security.Cryptography.Encoding/4.0.0": {
9444 - "sha512": "FbKgE5MbxSQMPcSVRgwM6bXN3GtyAh04NkV8E5zKCBE26X0vYW0UtTa2FIgkH33WVqBVxRgxljlVYumWtU+HcQ==", 10036 + "sha512": "OFB74+OHogPsy0IYUKPFOhbQMeY5z0ZkMhXdAW1SQ6IEIEy6N6poCUdEbx0kjXx5mdsdkw1FL04hMveKGBcBaQ==",
9445 "type": "package", 10037 "type": "package",
9446 "path": "System.Security.Cryptography.Encoding/4.0.0", 10038 "path": "System.Security.Cryptography.Encoding/4.0.0",
9447 "files": [ 10039 "files": [
@@ -9480,7 +10072,7 @@ @@ -9480,7 +10072,7 @@
9480 ] 10072 ]
9481 }, 10073 },
9482 "System.Security.Cryptography.OpenSsl/4.0.0": { 10074 "System.Security.Cryptography.OpenSsl/4.0.0": {
9483 - "sha512": "HUG/zNUJwEiLkoURDixzkzZdB5yGA5pQhDP93ArOpDPQMteURIGERRNzzoJlmTreLBWr5lkFSjjMSk8ySEpQMw==", 10075 + "sha512": "I5t0tlvpIROamTn9sQdz8tgJlPA3Mj/qOmTB88rDGovcEs9JiMYaiMeapwQsi2wlJPBaOlPaOLXK3T8n2ogWiQ==",
9484 "type": "package", 10076 "type": "package",
9485 "path": "System.Security.Cryptography.OpenSsl/4.0.0", 10077 "path": "System.Security.Cryptography.OpenSsl/4.0.0",
9486 "files": [ 10078 "files": [
@@ -9494,7 +10086,7 @@ @@ -9494,7 +10086,7 @@
9494 ] 10086 ]
9495 }, 10087 },
9496 "System.Security.Cryptography.Primitives/4.0.0": { 10088 "System.Security.Cryptography.Primitives/4.0.0": {
9497 - "sha512": "Wkd7QryWYjkQclX0bngpntW5HSlMzeJU24UaLJQ7YTfI8ydAVAaU2J+HXLLABOVJlKTVvAeL0Aj39VeTe7L+oA==", 10089 + "sha512": "veO2EZmLGAkh5rLodM8YjaaKnM9AG+l25wWHQFC/7UZ8M0aKGE+AtHigTgmrLnU8JYmvUju9NN1AtT8ShBMVIw==",
9498 "type": "package", 10090 "type": "package",
9499 "path": "System.Security.Cryptography.Primitives/4.0.0", 10091 "path": "System.Security.Cryptography.Primitives/4.0.0",
9500 "files": [ 10092 "files": [
@@ -9521,7 +10113,7 @@ @@ -9521,7 +10113,7 @@
9521 ] 10113 ]
9522 }, 10114 },
9523 "System.Security.Cryptography.X509Certificates/4.1.0": { 10115 "System.Security.Cryptography.X509Certificates/4.1.0": {
9524 - "sha512": "4HEfsQIKAhA1+ApNn729Gi09zh+lYWwyIuViihoMDWp1vQnEkL2ct7mAbhBlLYm+x/L4Rr/pyGge1lIY635e0w==", 10116 + "sha512": "ir7BOSAO6V/bnGbmzuIz0gn8quWeoA/Pz3pwyBS+6hcSVtaFWWXR9b8x+SvvjnR99lwnV53gtVgyqUhzpyr9ug==",
9525 "type": "package", 10117 "type": "package",
9526 "path": "System.Security.Cryptography.X509Certificates/4.1.0", 10118 "path": "System.Security.Cryptography.X509Certificates/4.1.0",
9527 "files": [ 10119 "files": [
@@ -9575,7 +10167,7 @@ @@ -9575,7 +10167,7 @@
9575 ] 10167 ]
9576 }, 10168 },
9577 "System.Security.Principal/4.0.1": { 10169 "System.Security.Principal/4.0.1": {
9578 - "sha512": "On+SKhXY5rzxh/S8wlH1Rm0ogBlu7zyHNxeNBiXauNrhHRXAe9EuX8Yl5IOzLPGU5Z4kLWHMvORDOCG8iu9hww==", 10170 + "sha512": "EW3TIc3FuZ89Dh9EHeZA/eJN5aRSZhDRsJTtAGeYapLcZm5E1q2Abl27/7j+LgOR4TVCzXSsKXmwsI53tfWaew==",
9579 "type": "package", 10171 "type": "package",
9580 "path": "System.Security.Principal/4.0.1", 10172 "path": "System.Security.Principal/4.0.1",
9581 "files": [ 10173 "files": [
@@ -9632,7 +10224,7 @@ @@ -9632,7 +10224,7 @@
9632 ] 10224 ]
9633 }, 10225 },
9634 "System.Security.Principal.Windows/4.0.0": { 10226 "System.Security.Principal.Windows/4.0.0": {
9635 - "sha512": "iFx15AF3RMEPZn3COh8+Bb2Thv2zsmLd93RchS1b8Mj5SNYeGqbYNCSn5AES1+gq56p4ujGZPrl0xN7ngkXOHg==", 10227 + "sha512": "zhGHnzs3wqVdf5VeNnwb+k8MHwjz46I4FvHHJcCJTttx7qKVqC7thE4hYg8kXBBMTLRARDXc0j7Fhlcr+gNT6w==",
9636 "type": "package", 10228 "type": "package",
9637 "path": "System.Security.Principal.Windows/4.0.0", 10229 "path": "System.Security.Principal.Windows/4.0.0",
9638 "files": [ 10230 "files": [
@@ -9659,7 +10251,7 @@ @@ -9659,7 +10251,7 @@
9659 ] 10251 ]
9660 }, 10252 },
9661 "System.Text.Encoding/4.0.11": { 10253 "System.Text.Encoding/4.0.11": {
9662 - "sha512": "U3gGeMlDZXxCEiY4DwVLSacg+DFWCvoiX+JThA/rvw37Sqrku7sEFeVBBBMBnfB6FeZHsyDx85HlKL19x0HtZA==", 10254 + "sha512": "UwIBIlqG2VSGlCneyPP556asrNPI+K/5XI1Mky0u4+4aaNCKhGxxYpKgSEZQHBSxZ2ocjUUoi2p0WcXpAUeNbw==",
9663 "type": "package", 10255 "type": "package",
9664 "path": "System.Text.Encoding/4.0.11", 10256 "path": "System.Text.Encoding/4.0.11",
9665 "files": [ 10257 "files": [
@@ -9725,7 +10317,7 @@ @@ -9725,7 +10317,7 @@
9725 ] 10317 ]
9726 }, 10318 },
9727 "System.Text.Encoding.CodePages/4.0.1": { 10319 "System.Text.Encoding.CodePages/4.0.1": {
9728 - "sha512": "h4z6rrA/hxWf4655D18IIZ0eaLRa3tQC/j+e26W+VinIHY0l07iEXaAvO0YSYq3MvCjMYy8Zs5AdC1sxNQOB7Q==", 10320 + "sha512": "K2jZiXN6xTKOBTd4o76ichwz67QDVKCmH2UbyaMWg2Y3Bm4PznHqpiVwkopW78GIbfh2O6o/LvLOjkLFI2a/3g==",
9729 "type": "package", 10321 "type": "package",
9730 "path": "System.Text.Encoding.CodePages/4.0.1", 10322 "path": "System.Text.Encoding.CodePages/4.0.1",
9731 "files": [ 10323 "files": [
@@ -9762,7 +10354,7 @@ @@ -9762,7 +10354,7 @@
9762 ] 10354 ]
9763 }, 10355 },
9764 "System.Text.Encoding.Extensions/4.0.11": { 10356 "System.Text.Encoding.Extensions/4.0.11": {
9765 - "sha512": "jtbiTDtvfLYgXn8PTfWI+SiBs51rrmO4AAckx4KR6vFK9Wzf6tI8kcRdsYQNwriUeQ1+CtQbM1W4cMbLXnj/OQ==", 10357 + "sha512": "ElF9m3HZW/PA4bLmzExQQi2ERZMjnbqD9GTfBWhlrxGAc7JP4dWGRJHHxC+VXd26hd12GBM/kxK0DJnNAadwrQ==",
9766 "type": "package", 10358 "type": "package",
9767 "path": "System.Text.Encoding.Extensions/4.0.11", 10359 "path": "System.Text.Encoding.Extensions/4.0.11",
9768 "files": [ 10360 "files": [
@@ -9841,7 +10433,7 @@ @@ -9841,7 +10433,7 @@
9841 ] 10433 ]
9842 }, 10434 },
9843 "System.Text.RegularExpressions/4.1.0": { 10435 "System.Text.RegularExpressions/4.1.0": {
9844 - "sha512": "i88YCXpRTjCnoSQZtdlHkAOx4KNNik4hMy83n0+Ftlb7jvV6ZiZWMpnEZHhjBp6hQVh8gWd/iKNPzlPF7iyA2g==", 10436 + "sha512": "FCJI7VzWwFB/eIyrzf64CWCe0mDGLoZkQkT74RtYOVoxCSU7CcTdZZkqmHQp2Td4yerZWQqxLv7LKWVCm8OONQ==",
9845 "type": "package", 10437 "type": "package",
9846 "path": "System.Text.RegularExpressions/4.1.0", 10438 "path": "System.Text.RegularExpressions/4.1.0",
9847 "files": [ 10439 "files": [
@@ -9922,7 +10514,7 @@ @@ -9922,7 +10514,7 @@
9922 ] 10514 ]
9923 }, 10515 },
9924 "System.Threading/4.0.11": { 10516 "System.Threading/4.0.11": {
9925 - "sha512": "N+3xqIcg3VDKyjwwCGaZ9HawG9aC6cSDI+s7ROma310GQo8vilFZa86hqKppwTHleR/G0sfOzhvgnUxWCR/DrQ==", 10517 + "sha512": "xM44aEyEYLSZDbIanlhi1ZKkjGQOy5ee0ufOnl9pt2zqdZxICVnppjBhyXH5Ynloq1Z2Oanc/P3m06SLvqilxQ==",
9926 "type": "package", 10518 "type": "package",
9927 "path": "System.Threading/4.0.11", 10519 "path": "System.Threading/4.0.11",
9928 "files": [ 10520 "files": [
@@ -9991,7 +10583,7 @@ @@ -9991,7 +10583,7 @@
9991 ] 10583 ]
9992 }, 10584 },
9993 "System.Threading.Overlapped/4.0.1": { 10585 "System.Threading.Overlapped/4.0.1": {
9994 - "sha512": "f7aLuLkBoCQM2kng7zqLFBXz9Gk48gDK8lk1ih9rH/1arJJzZK9gJwNvPDhL6Ps/l6rwOr8jw+4FCHL0KKWiEg==", 10586 + "sha512": "dDFbmJDM5ERYfZWTALR2SERrL7gywRCQYZsb4S/MGTVn7s3Awi7yX3nZ6WDIf6wM+7GjCMVN92OCWgzSm9BD6g==",
9995 "type": "package", 10587 "type": "package",
9996 "path": "System.Threading.Overlapped/4.0.1", 10588 "path": "System.Threading.Overlapped/4.0.1",
9997 "files": [ 10589 "files": [
@@ -10019,7 +10611,7 @@ @@ -10019,7 +10611,7 @@
10019 ] 10611 ]
10020 }, 10612 },
10021 "System.Threading.Tasks/4.0.11": { 10613 "System.Threading.Tasks/4.0.11": {
10022 - "sha512": "k1S4Gc6IGwtHGT8188RSeGaX86Qw/wnrgNLshJvsdNUOPP9etMmo8S07c+UlOAx4K/xLuN9ivA1bD0LVurtIxQ==", 10614 + "sha512": "FTCObj31EpuCL/J7ZanGMO0zKulDEj21IPS1JSx9RZhWbt5lfTz0zlBKW5MXb2eNv0TPeDdQ024Y5YukRBatLQ==",
10023 "type": "package", 10615 "type": "package",
10024 "path": "System.Threading.Tasks/4.0.11", 10616 "path": "System.Threading.Tasks/4.0.11",
10025 "files": [ 10617 "files": [
@@ -10085,7 +10677,7 @@ @@ -10085,7 +10677,7 @@
10085 ] 10677 ]
10086 }, 10678 },
10087 "System.Threading.Tasks.Dataflow/4.6.0": { 10679 "System.Threading.Tasks.Dataflow/4.6.0": {
10088 - "sha512": "2hRjGu2r2jxRZ55wmcHO/WbdX+YAOz9x6FE8xqkHZgPaoFMKQZRe9dk8xTZIas8fRjxRmzawnTEWIrhlM+Un7w==", 10680 + "sha512": "ziQTrcYA6Q8VPw+4gYRF5al1TzlGsdBBRMUPKUqg9st4gq97CPNKTZgF4ujmcMpUbUp+ZtHYvxHrJHWVaVHkEA==",
10089 "type": "package", 10681 "type": "package",
10090 "path": "System.Threading.Tasks.Dataflow/4.6.0", 10682 "path": "System.Threading.Tasks.Dataflow/4.6.0",
10091 "files": [ 10683 "files": [
@@ -10100,7 +10692,7 @@ @@ -10100,7 +10692,7 @@
10100 ] 10692 ]
10101 }, 10693 },
10102 "System.Threading.Tasks.Extensions/4.0.0": { 10694 "System.Threading.Tasks.Extensions/4.0.0": {
10103 - "sha512": "pH4FZDsZQ/WmgJtN4LWYmRdJAEeVkyriSwrv2Teoe5FOU0Yxlb6II6GL8dBPOfRmutHGATduj3ooMt7dJ2+i+w==", 10695 + "sha512": "WkM/CiUHQxXH7cQOU5LDbjkrLPI/aXQaVBgRA4PwkxcO7VXm8iTUXJnbQ5WbH97t17a4yy4DQSe56H3cpfdwbA==",
10104 "type": "package", 10696 "type": "package",
10105 "path": "System.Threading.Tasks.Extensions/4.0.0", 10697 "path": "System.Threading.Tasks.Extensions/4.0.0",
10106 "files": [ 10698 "files": [
@@ -10115,7 +10707,7 @@ @@ -10115,7 +10707,7 @@
10115 ] 10707 ]
10116 }, 10708 },
10117 "System.Threading.Tasks.Parallel/4.0.1": { 10709 "System.Threading.Tasks.Parallel/4.0.1": {
10118 - "sha512": "7Pc9t25bcynT9FpMvkUw4ZjYwUiGup/5cJFW72/5MgCG+np2cfVUMdh29u8d7onxX7d8PS3J+wL73zQRqkdrSA==", 10710 + "sha512": "LVTjwyp/OR9eoCT+B+dp5gDyDiyAm5VfcwV7vAzAi0nyBNfTxPLr7BU4vcNZGSvvUMtGhrbR3uYwkgXejFQmJw==",
10119 "type": "package", 10711 "type": "package",
10120 "path": "System.Threading.Tasks.Parallel/4.0.1", 10712 "path": "System.Threading.Tasks.Parallel/4.0.1",
10121 "files": [ 10713 "files": [
@@ -10170,7 +10762,7 @@ @@ -10170,7 +10762,7 @@
10170 ] 10762 ]
10171 }, 10763 },
10172 "System.Threading.Thread/4.0.0": { 10764 "System.Threading.Thread/4.0.0": {
10173 - "sha512": "gIdJqDXlOr5W9zeqFErLw3dsOsiShSCYtF9SEHitACycmvNvY8odf9kiKvp6V7aibc8C4HzzNBkWXjyfn7plbQ==", 10765 + "sha512": "qqec+Hoz/vt1x26rOmRUMUim2DNeOgSWfS5qHBDgWzCRF5d2ENyJzSuQmY5pNOB4wG/kuiuITCkVyM50lbkcag==",
10174 "type": "package", 10766 "type": "package",
10175 "path": "System.Threading.Thread/4.0.0", 10767 "path": "System.Threading.Thread/4.0.0",
10176 "files": [ 10768 "files": [
@@ -10208,7 +10800,7 @@ @@ -10208,7 +10800,7 @@
10208 ] 10800 ]
10209 }, 10801 },
10210 "System.Threading.ThreadPool/4.0.10": { 10802 "System.Threading.ThreadPool/4.0.10": {
10211 - "sha512": "IMXgB5Vf/5Qw1kpoVgJMOvUO1l32aC+qC3OaIZjWJOjvcxuxNWOK2ZTWWYXfij22NHxT2j1yWX5vlAeQWld9vA==", 10803 + "sha512": "X4mb73zGjUGiM4RktK7GWrvWoYtp8lMAVCLB7qRvhQchwMA/gYx7zjPPZ8bdEKAuEZ+fZBNaVT1guVAkrB95GA==",
10212 "type": "package", 10804 "type": "package",
10213 "path": "System.Threading.ThreadPool/4.0.10", 10805 "path": "System.Threading.ThreadPool/4.0.10",
10214 "files": [ 10806 "files": [
@@ -10246,7 +10838,7 @@ @@ -10246,7 +10838,7 @@
10246 ] 10838 ]
10247 }, 10839 },
10248 "System.Threading.Timer/4.0.1": { 10840 "System.Threading.Timer/4.0.1": {
10249 - "sha512": "saGfUV8uqVW6LeURiqxcGhZ24PzuRNaUBtbhVeuUAvky1naH395A/1nY0P2bWvrw/BreRtIB/EzTDkGBpqCwEw==", 10841 + "sha512": "he1u6wTRroKolBGfUNJXXO3dvtZoewwN91cDyc0y84Z03Umx0rImp+d8hvn9VwAHDdB7DVWDnwMBBs7FYilGYA==",
10250 "type": "package", 10842 "type": "package",
10251 "path": "System.Threading.Timer/4.0.1", 10843 "path": "System.Threading.Timer/4.0.1",
10252 "files": [ 10844 "files": [
@@ -10299,7 +10891,7 @@ @@ -10299,7 +10891,7 @@
10299 ] 10891 ]
10300 }, 10892 },
10301 "System.Xml.ReaderWriter/4.0.11": { 10893 "System.Xml.ReaderWriter/4.0.11": {
10302 - "sha512": "ZIiLPsf67YZ9zgr31vzrFaYQqxRPX9cVHjtPSnmx4eN6lbS/yEyYNr2vs1doGDEscF0tjCZFsk9yUg1sC9e8tg==", 10894 + "sha512": "ZmIlenas698bnxSc3gpqWs5pJOm3YTh9Ru00PlLUjYqoG1+H/yjpWpOGchlAhGOUYNL1/m3O5fvCThxI3DGEFQ==",
10303 "type": "package", 10895 "type": "package",
10304 "path": "System.Xml.ReaderWriter/4.0.11", 10896 "path": "System.Xml.ReaderWriter/4.0.11",
10305 "files": [ 10897 "files": [
@@ -10367,7 +10959,7 @@ @@ -10367,7 +10959,7 @@
10367 ] 10959 ]
10368 }, 10960 },
10369 "System.Xml.XDocument/4.0.11": { 10961 "System.Xml.XDocument/4.0.11": {
10370 - "sha512": "Mk2mKmPi0nWaoiYeotq1dgeNK1fqWh61+EK+w4Wu8SWuTYLzpUnschb59bJtGywaPq7SmTuPf44wrXRwbIrukg==", 10962 + "sha512": "6PqZCNkSu8OuAJOP8JmDYSAJkAVYgDNCzv7BB5J2ZDwERG7uvVO8k3QKat29Y3adKDqSZP5D3aPAyJ5csNZMng==",
10371 "type": "package", 10963 "type": "package",
10372 "path": "System.Xml.XDocument/4.0.11", 10964 "path": "System.Xml.XDocument/4.0.11",
10373 "files": [ 10965 "files": [
@@ -10435,7 +11027,7 @@ @@ -10435,7 +11027,7 @@
10435 ] 11027 ]
10436 }, 11028 },
10437 "System.Xml.XmlDocument/4.0.1": { 11029 "System.Xml.XmlDocument/4.0.1": {
10438 - "sha512": "2eZu6IP+etFVBBFUFzw2w6J21DqIN5eL9Y8r8JfJWUmV28Z5P0SNU01oCisVHQgHsDhHPnmq2s1hJrJCFZWloQ==", 11030 + "sha512": "eqJKVyZXli4H6XXRyYPunkOuQQwhQfza68RtMk77SdQRSVtxZjBQ7k/l9k3ecVyMLxCYK9iWQ3zM1EMZwbeWxw==",
10439 "type": "package", 11031 "type": "package",
10440 "path": "System.Xml.XmlDocument/4.0.1", 11032 "path": "System.Xml.XmlDocument/4.0.1",
10441 "files": [ 11033 "files": [
@@ -10472,7 +11064,7 @@ @@ -10472,7 +11064,7 @@
10472 ] 11064 ]
10473 }, 11065 },
10474 "System.Xml.XPath/4.0.1": { 11066 "System.Xml.XPath/4.0.1": {
10475 - "sha512": "UWd1H+1IJ9Wlq5nognZ/XJdyj8qPE4XufBUkAW59ijsCPjZkZe0MUzKKJFBr+ZWBe5Wq1u1d5f2CYgE93uH7DA==", 11067 + "sha512": "3RetVu8mT8HKgKcI1L1xZRyYQ3Eyb0LlJjYc5WSDrb0aCMxRn5rWSTv4d//sn85bNf0yJzFy86bin9cHiA5MLw==",
10476 "type": "package", 11068 "type": "package",
10477 "path": "System.Xml.XPath/4.0.1", 11069 "path": "System.Xml.XPath/4.0.1",
10478 "files": [ 11070 "files": [
@@ -10509,7 +11101,7 @@ @@ -10509,7 +11101,7 @@
10509 ] 11101 ]
10510 }, 11102 },
10511 "System.Xml.XPath.XDocument/4.0.1": { 11103 "System.Xml.XPath.XDocument/4.0.1": {
10512 - "sha512": "FLhdYJx4331oGovQypQ8JIw2kEmNzCsjVOVYY/16kZTUoquZG85oVn7yUhBE2OZt1yGPSXAL0HTEfzjlbNpM7Q==", 11104 + "sha512": "VphHauTwuinITGn2/H7lxkjWNnWbqlemdue67W+Oe9bLaXtKKypY7y0Q0okq3y+LbwBbhHMUIhbthL5sEqKNvA==",
10513 "type": "package", 11105 "type": "package",
10514 "path": "System.Xml.XPath.XDocument/4.0.1", 11106 "path": "System.Xml.XPath.XDocument/4.0.1",
10515 "files": [ 11107 "files": [
@@ -10563,8 +11155,10 @@ @@ -10563,8 +11155,10 @@
10563 "Microsoft.Extensions.Logging.Console >= 1.0.0", 11155 "Microsoft.Extensions.Logging.Console >= 1.0.0",
10564 "Microsoft.Extensions.Logging.Debug >= 1.0.0", 11156 "Microsoft.Extensions.Logging.Debug >= 1.0.0",
10565 "Microsoft.Extensions.Options.ConfigurationExtensions >= 1.0.0", 11157 "Microsoft.Extensions.Options.ConfigurationExtensions >= 1.0.0",
10566 - "Microsoft.NETCore.App >= 1.0.1", 11158 + "Microsoft.NETCore.App >= 1.1.0",
10567 "Microsoft.VisualStudio.Web.BrowserLink.Loader >= 14.0.0", 11159 "Microsoft.VisualStudio.Web.BrowserLink.Loader >= 14.0.0",
  11160 + "Microsoft.VisualStudio.Web.CodeGeneration.Tools >= 1.0.0-preview2-final",
  11161 + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc >= 1.0.0-preview2-final",
10568 "Npgsql.EntityFrameworkCore.PostgreSQL >= 1.0.2", 11162 "Npgsql.EntityFrameworkCore.PostgreSQL >= 1.0.2",
10569 "Npgsql.EntityFrameworkCore.PostgreSQL.Design >= 1.0.2" 11163 "Npgsql.EntityFrameworkCore.PostgreSQL.Design >= 1.0.2"
10570 ], 11164 ],
@@ -10637,6 +11231,19 @@ @@ -10637,6 +11231,19 @@
10637 "runtime": { 11231 "runtime": {
10638 "lib/netcoreapp1.0/dotnet-publish-iis.dll": {} 11232 "lib/netcoreapp1.0/dotnet-publish-iis.dll": {}
10639 } 11233 }
  11234 + },
  11235 + "Microsoft.VisualStudio.Web.CodeGeneration.Tools/1.0.0-preview2-final": {
  11236 + "type": "package",
  11237 + "dependencies": {
  11238 + "Microsoft.NETCore.App": "1.0.0",
  11239 + "Microsoft.VisualStudio.Web.CodeGeneration": "1.0.0-preview2-final"
  11240 + },
  11241 + "compile": {
  11242 + "lib/netcoreapp1.0/dotnet-aspnet-codegenerator.dll": {}
  11243 + },
  11244 + "runtime": {
  11245 + "lib/netcoreapp1.0/dotnet-aspnet-codegenerator.dll": {}
  11246 + }
10640 } 11247 }
10641 } 11248 }
10642 }, 11249 },
@@ -10645,7 +11252,8 @@ @@ -10645,7 +11252,8 @@
10645 "BundlerMinifier.Core >= 2.0.238", 11252 "BundlerMinifier.Core >= 2.0.238",
10646 "Microsoft.AspNetCore.Razor.Tools >= 1.0.0-preview2-final", 11253 "Microsoft.AspNetCore.Razor.Tools >= 1.0.0-preview2-final",
10647 "Microsoft.AspNetCore.Server.IISIntegration.Tools >= 1.0.0-preview2-final", 11254 "Microsoft.AspNetCore.Server.IISIntegration.Tools >= 1.0.0-preview2-final",
10648 - "Microsoft.EntityFrameworkCore.Tools >= 1.0.0-preview2-final" 11255 + "Microsoft.EntityFrameworkCore.Tools >= 1.0.0-preview2-final",
  11256 + "Microsoft.VisualStudio.Web.CodeGeneration.Tools >= 1.0.0-preview2-final"
10649 ] 11257 ]
10650 } 11258 }
10651 } 11259 }
10652 \ No newline at end of file 11260 \ No newline at end of file