diff --git a/.vs/RESTAPI/FileContentIndex/read.lock b/.vs/RESTAPI/FileContentIndex/read.lock new file mode 100644 index 0000000..e69de29 diff --git a/.vs/slnx.sqlite b/.vs/slnx.sqlite new file mode 100644 index 0000000..af7c572 Binary files /dev/null and b/.vs/slnx.sqlite differ diff --git a/Controllers/BuildingsController.cs b/Controllers/BuildingsController.cs new file mode 100644 index 0000000..5cbd8e6 --- /dev/null +++ b/Controllers/BuildingsController.cs @@ -0,0 +1,58 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using Rocket_Elevators_Rest_API.Models; + +namespace Rocket_Elevators_Rest_API.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class BuildingsController : ControllerBase + { + private readonly RocketElevatorsContext _context; + + public BuildingsController(RocketElevatorsContext context) + { + _context = context; + } + + // GET: api/ + [HttpGet] + public async Task>> GetBuildings() + { + return await _context.buildings.ToListAsync(); + } + + // GET api/Buildings/id + [HttpGet("{id}")] + public async Task> Get(int id) + { + var building = await _context.buildings.FindAsync(id); + if (building == null) return NotFound(); + return building; + } + + // PUT api/buildings/id/status/status + //[HttpPut("{id}/status/{status}")] + // public async Task> Put(int id, string status) + //{ + // grab buildings with id id + // var building = await _context.buildings.FindAsync(id); + + //if (building == null) + //{ + // return NotFound(); + //} + // change status of buildings + // building.status = status; + // _context.SaveChanges(); + + // return building; + // } + + // DELETE api//5 + [HttpDelete("{id}")] + public void Delete(int id) + { + } + } +} diff --git a/Controllers/ColumnsController.cs b/Controllers/ColumnsController.cs new file mode 100644 index 0000000..9407adc --- /dev/null +++ b/Controllers/ColumnsController.cs @@ -0,0 +1,58 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using Rocket_Elevators_Rest_API.Models; + +namespace Rocket_Elevators_Rest_API.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class ColumnsController : ControllerBase + { + private readonly RocketElevatorsContext _context; + + public ColumnsController(RocketElevatorsContext context) + { + _context = context; + } + + // GET: api/ + [HttpGet] + public async Task>> GetColumns() + { + return await _context.columns.ToListAsync(); + } + + // GET api/Columns/id + [HttpGet("{id}")] + public async Task> Get(int id) + { + var column = await _context.columns.FindAsync(id); + if (column == null) return NotFound(); + return column; + } + + // PUT api/columns/id/status/status + [HttpPut("{id}/status/{status}")] + public async Task> Put(int id, string status) + { + // grab columns with id id + var column = await _context.columns.FindAsync(id); + + if (column == null) + { + return NotFound(); + } + // change status of columns + column.status = status; + _context.SaveChanges(); + + return column; + } + + // DELETE api//5 + [HttpDelete("{id}")] + public void Delete(int id) + { + } + } +} diff --git a/Controllers/ElevatorsController.cs b/Controllers/ElevatorsController.cs new file mode 100644 index 0000000..faab2e1 --- /dev/null +++ b/Controllers/ElevatorsController.cs @@ -0,0 +1,58 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using Rocket_Elevators_Rest_API.Models; + +namespace Rocket_Elevators_Rest_API.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class ElevatorsController : ControllerBase + { + private readonly RocketElevatorsContext _context; + + public ElevatorsController(RocketElevatorsContext context) + { + _context = context; + } + + // GET: api/ + [HttpGet] + public async Task>> GetElevators() + { + return await _context.elevators.ToListAsync(); + } + + // GET api/Elevators/id + [HttpGet("{id}")] + public async Task> Get(int id) + { + var elevator = await _context.elevators.FindAsync(id); + if (elevator == null) return NotFound(); + return elevator; + } + + // PUT api/elevators/id/status/status + [HttpPut("{id}/status/{status}")] + public async Task> Put(int id, string elevator_status) + { + // grab elevators with id id + var elevator = await _context.elevators.FindAsync(id); + + if (elevator == null) + { + return NotFound(); + } + // change status of elevators + elevator.elevator_status = elevator_status; + _context.SaveChanges(); + + return elevator; + } + + // DELETE api//5 + [HttpDelete("{id}")] + public void Delete(int id) + { + } + } +} diff --git a/Controllers/LeadsController.cs b/Controllers/LeadsController.cs new file mode 100644 index 0000000..8700e6a --- /dev/null +++ b/Controllers/LeadsController.cs @@ -0,0 +1,58 @@ +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using Rocket_Elevators_Rest_API.Models; + +namespace Rocket_Elevators_Rest_API.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class LeadsController : ControllerBase + { + private readonly RocketElevatorsContext _context; + + public LeadsController(RocketElevatorsContext context) + { + _context = context; + } + + // GET: api/ + [HttpGet] + public async Task>> GetLeads() + { + return await _context.leads.ToListAsync(); + } + + // GET api/Leads/id + [HttpGet("{id}")] + public async Task> Get(int id) + { + var leads = await _context.leads.FindAsync(id); + if (leads == null) return NotFound(); + return leads; + } + + // PUT api/leads/id/status/status + [HttpPut("{id}/status/{status}")] + public async Task> Put(int id, string status) + { + // grab leads with id id + var leads = await _context.leads.FindAsync(id); + + if (leads == null) + { + return NotFound(); + } + // change status of leads + leads.status = status; + _context.SaveChanges(); + + return leads; + } + + // DELETE api//5 + [HttpDelete("{id}")] + public void Delete(int id) + { + } + } +} diff --git a/Controllers/WeatherForecastController.cs b/Controllers/WeatherForecastController.cs deleted file mode 100644 index aaf753c..0000000 --- a/Controllers/WeatherForecastController.cs +++ /dev/null @@ -1,33 +0,0 @@ -using Microsoft.AspNetCore.Mvc; - -namespace Rocket_Elevators_Rest_API.Controllers -{ - [ApiController] - [Route("[controller]")] - public class WeatherForecastController : ControllerBase - { - private static readonly string[] Summaries = new[] - { - "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" - }; - - private readonly ILogger _logger; - - public WeatherForecastController(ILogger logger) - { - _logger = logger; - } - - [HttpGet(Name = "GetWeatherForecast")] - public IEnumerable Get() - { - return Enumerable.Range(1, 5).Select(index => new WeatherForecast - { - Date = DateTime.Now.AddDays(index), - TemperatureC = Random.Shared.Next(-20, 55), - Summary = Summaries[Random.Shared.Next(Summaries.Length)] - }) - .ToArray(); - } - } -} \ No newline at end of file diff --git a/Models/Battery.cs b/Models/Battery.cs index 822412f..9ebf0b7 100644 --- a/Models/Battery.cs +++ b/Models/Battery.cs @@ -8,10 +8,21 @@ namespace Rocket_Elevators_Rest_API.Models public class Battery { - + [Key] public int id { get; set; } + public long building_id { get; set; } + public string? battery_type { get; set; } public string? status { get; set; } + public long employee_id { get; set; } + public DateTime date_commissioning { get; set; } + public DateTime date_last_inspection { get; set; } + public string? certificate_operations { get; set; } + public string? information { get; set; } + public string? notes { get; set; } + public DateTime created_at { get; set; } + public DateTime updated_at { get; set; } + } } diff --git a/Models/Buildings.cs b/Models/Buildings.cs new file mode 100644 index 0000000..b9ff1c4 --- /dev/null +++ b/Models/Buildings.cs @@ -0,0 +1,27 @@ +using Microsoft.EntityFrameworkCore.Metadata.Internal; +using System.Diagnostics.CodeAnalysis; +using System.ComponentModel.DataAnnotations; + + +namespace Rocket_Elevators_Rest_API.Models +{ + public class Buildings + { + + + [Key] + public long id { get; set; } + public long customer_id { get; set; } + public long address_id { get; set; } + public string? addressBuilding { get; set; } + public string? FullNameBuildingAdmin { get; set; } + public string? EmailAdminBuilding { get; set; } + public string? PhoneNumberBuildingAdmin { get; set; } + public string? FullNameTechContact { get; set; } + public string? TechContactEmail { get; set; } + public string? TechContactPhone { get; set; } + public DateTime created_at { get; set; } + public DateTime updated_at { get; set; } + + } +} diff --git a/Models/Columns.cs b/Models/Columns.cs new file mode 100644 index 0000000..e188a42 --- /dev/null +++ b/Models/Columns.cs @@ -0,0 +1,21 @@ +using Microsoft.EntityFrameworkCore.Metadata.Internal; +using System.Diagnostics.CodeAnalysis; +using System.ComponentModel.DataAnnotations; + + +namespace Rocket_Elevators_Rest_API.Models +{ + public class Columns + { + [Key] + public int id { get; set; } + public long battery_id { get; set; } + public string? column_type { get; set; } + public int served_floors_nb { get; set; } + public string? status { get; set; } + public string? information { get; set; } + public string? notes { get; set; } + + + } +} diff --git a/Models/Elevators.cs b/Models/Elevators.cs new file mode 100644 index 0000000..fb3de7b --- /dev/null +++ b/Models/Elevators.cs @@ -0,0 +1,28 @@ +using Microsoft.EntityFrameworkCore.Metadata.Internal; +using System.Diagnostics.CodeAnalysis; +using System.ComponentModel.DataAnnotations; + + +namespace Rocket_Elevators_Rest_API.Models +{ + public class Elevators + { + + + [Key] + public int id { get; set; } + public long column_id { get; set; } + public int serial_nb { get; set; } + public string? model { get; set; } + public string? elevator_type { get; set; } + public string? elevator_status { get; set; } + public DateTime date_commissioning { get; set; } + public DateTime date_last_inspection { get; set; } + public string? certificate_inspection { get; set; } + public string? information { get; set; } + public string? notes { get; set; } + public DateTime created_at { get; set; } + public DateTime updated_at { get; set; } + + } +} diff --git a/Models/Lead.cs b/Models/Lead.cs new file mode 100644 index 0000000..2a4a6b8 --- /dev/null +++ b/Models/Lead.cs @@ -0,0 +1,28 @@ +using Microsoft.EntityFrameworkCore.Metadata.Internal; +using System.Diagnostics.CodeAnalysis; +using System.ComponentModel.DataAnnotations; + + +namespace Rocket_Elevators_Rest_API.Models +{ + public class Lead + { + + + [Key] + public long id { get; set; } + public string? contactName { get; set; } + public string? contactBusinessName { get; set; } + public string? contactEmail { get; set; } + public string? contactPhone { get; set; } + public string? projectName { get; set; } + public string? projectDescription { get; set; } + public string? contactDepartement { get; set; } + public string? message { get; set; } + public DateOnly contactDate { get; set; } + public DateTime created_at { get; set; } + public DateTime updated_at { get; set; } + public string? status { get; set; } + + } +} diff --git a/Models/RocketElevatorsContext.cs b/Models/RocketElevatorsContext.cs index 5276b28..0abbdd7 100644 --- a/Models/RocketElevatorsContext.cs +++ b/Models/RocketElevatorsContext.cs @@ -10,6 +10,10 @@ public RocketElevatorsContext(DbContextOptions options) } public DbSet batteries { get; set; } = null!; + public DbSet columns { get; set; } = null!; + public DbSet elevators { get; set; } = null!; + public DbSet leads { get; set; } = null!; + public DbSet buildings { get; set; } = null!; diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json index ef94598..2218407 100644 --- a/Properties/launchSettings.json +++ b/Properties/launchSettings.json @@ -14,7 +14,7 @@ "dotnetRunMessages": true, "launchBrowser": true, "launchUrl": "swagger", - "applicationUrl": "https://localhost:7234;http://localhost:5213", + "applicationUrl": "https://localhost:7234;http://localhost:5213;https://localhost:3306", "environmentVariables": { "ASPNETCORE_ENVIRONMENT": "Development" } diff --git a/Rocket_Elevators_Rest_API.csproj b/Rocket_Elevators_Rest_API.csproj index c8ad50b..f7f99fe 100644 --- a/Rocket_Elevators_Rest_API.csproj +++ b/Rocket_Elevators_Rest_API.csproj @@ -6,6 +6,7 @@ enable + diff --git a/appsettings.Development.json b/appsettings.Development.json index d17f4c9..8f752ab 100644 --- a/appsettings.Development.json +++ b/appsettings.Development.json @@ -7,6 +7,6 @@ }, "AllowedHosts": "*", "ConnectionStrings": { - "DefaultConnection": "server=localhost;port=3306;database=Rocket_Elevators_Information_System;uid=mlouellette;password=Iloverails1!" + "DefaultConnection": "server=localhost;port=3306;database=rocketElevatorGroupWebsite_development;uid=root;password=password" } } diff --git a/appsettings.json b/appsettings.json index ffe27f9..eb2f605 100644 --- a/appsettings.json +++ b/appsettings.json @@ -7,7 +7,7 @@ }, "AllowedHosts": "*", "ConnectionStrings": { - "DefaultConnection": "server=localhost;port=3306;database=Rocket_Elevators_Information_System;uid=mlouellette;password=Iloverails1!" + "DefaultConnection": "server=localhost;port=3306;database=rocketElevatorGroupWebsite_development;uid=root;password=password" } } diff --git a/bin/Debug/net6.0/BouncyCastle.Crypto.dll b/bin/Debug/net6.0/BouncyCastle.Crypto.dll new file mode 100644 index 0000000..b811138 Binary files /dev/null and b/bin/Debug/net6.0/BouncyCastle.Crypto.dll differ diff --git a/bin/Debug/net6.0/Google.Protobuf.dll b/bin/Debug/net6.0/Google.Protobuf.dll new file mode 100644 index 0000000..cf2e030 Binary files /dev/null and b/bin/Debug/net6.0/Google.Protobuf.dll differ diff --git a/bin/Debug/net6.0/K4os.Compression.LZ4.Streams.dll b/bin/Debug/net6.0/K4os.Compression.LZ4.Streams.dll new file mode 100644 index 0000000..42f55d6 Binary files /dev/null and b/bin/Debug/net6.0/K4os.Compression.LZ4.Streams.dll differ diff --git a/bin/Debug/net6.0/K4os.Compression.LZ4.dll b/bin/Debug/net6.0/K4os.Compression.LZ4.dll new file mode 100644 index 0000000..718ebb3 Binary files /dev/null and b/bin/Debug/net6.0/K4os.Compression.LZ4.dll differ diff --git a/bin/Debug/net6.0/K4os.Hash.xxHash.dll b/bin/Debug/net6.0/K4os.Hash.xxHash.dll new file mode 100644 index 0000000..4179a29 Binary files /dev/null and b/bin/Debug/net6.0/K4os.Hash.xxHash.dll differ diff --git a/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll b/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..e27fe8d Binary files /dev/null and b/bin/Debug/net6.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/bin/Debug/net6.0/MySql.Data.dll b/bin/Debug/net6.0/MySql.Data.dll new file mode 100644 index 0000000..e30e3f4 Binary files /dev/null and b/bin/Debug/net6.0/MySql.Data.dll differ diff --git a/bin/Debug/net6.0/Rocket_Elevators_Rest_API.deps.json b/bin/Debug/net6.0/Rocket_Elevators_Rest_API.deps.json index 8bfe00b..9c696a5 100644 --- a/bin/Debug/net6.0/Rocket_Elevators_Rest_API.deps.json +++ b/bin/Debug/net6.0/Rocket_Elevators_Rest_API.deps.json @@ -8,6 +8,7 @@ ".NETCoreApp,Version=v6.0": { "Rocket_Elevators_Rest_API/1.0.0": { "dependencies": { + "MySql.Data": "8.0.31", "Pomelo.EntityFrameworkCore.MySql.Design": "1.1.2", "Pomelo.EntityFrameworkCore.MySql.Json.Microsoft": "6.0.2", "Swashbuckle.AspNetCore": "5.6.3" @@ -16,6 +17,48 @@ "Rocket_Elevators_Rest_API.dll": {} } }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, "Microsoft.EntityFrameworkCore/6.0.7": { "dependencies": { "Microsoft.EntityFrameworkCore.Abstractions": "6.0.7", @@ -127,7 +170,7 @@ "System.Runtime.CompilerServices.Unsafe": "6.0.0" } }, - "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.NETCore.Platforms/3.1.0": {}, "Microsoft.NETCore.Targets/1.1.0": {}, "Microsoft.OpenApi/1.2.3": { "runtime": { @@ -139,11 +182,52 @@ }, "Microsoft.Win32.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "MySql.Data/8.0.31": { + "dependencies": { + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "Portable.BouncyCastle": "1.9.0", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.4.1", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.4.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.31.0", + "fileVersion": "8.0.31.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, "MySqlConnector/2.1.2": { "runtime": { "lib/net6.0/MySqlConnector.dll": { @@ -154,7 +238,7 @@ }, "NETStandard.Library/1.6.1": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.Win32.Primitives": "4.3.0", "System.AppContext": "4.3.0", "System.Collections": "4.3.0", @@ -243,24 +327,32 @@ } } }, + "Portable.BouncyCastle/1.9.0": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.9.0.0", + "fileVersion": "1.9.0.1" + } + } + }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, "runtime.native.System/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, "runtime.native.System.IO.Compression/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, "runtime.native.System.Net.Http/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, @@ -334,18 +426,10 @@ "System.Runtime": "4.3.0" } }, - "System.Buffers/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, + "System.Buffers/4.5.1": {}, "System.Collections/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -369,9 +453,20 @@ "System.Runtime.CompilerServices.Unsafe": "6.0.0" } }, + "System.Configuration.ConfigurationManager/4.4.1": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.4.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.25921.2" + } + } + }, "System.Console/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Runtime": "4.3.0", @@ -380,7 +475,7 @@ }, "System.Diagnostics.Debug/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -392,28 +487,54 @@ }, "System.Diagnostics.Tools/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Diagnostics.Tracing/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, + "System.Drawing.Common/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": { + "assemblyVersion": "4.0.0.1", + "fileVersion": "4.6.26919.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.700.19.56404" + } + } + }, "System.Globalization/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Globalization.Calendars/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Globalization": "4.3.0", "System.Runtime": "4.3.0" @@ -421,7 +542,7 @@ }, "System.Globalization.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "System.Globalization": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", @@ -431,7 +552,7 @@ }, "System.IO/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Text.Encoding": "4.3.0", @@ -440,8 +561,8 @@ }, "System.IO.Compression/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", - "System.Buffers": "4.3.0", + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Buffers": "4.5.1", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", "System.IO": "4.3.0", @@ -459,7 +580,7 @@ }, "System.IO.Compression.ZipFile/4.3.0": { "dependencies": { - "System.Buffers": "4.3.0", + "System.Buffers": "4.5.1", "System.IO": "4.3.0", "System.IO.Compression": "4.3.0", "System.IO.FileSystem": "4.3.0", @@ -472,7 +593,7 @@ }, "System.IO.FileSystem/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.IO.FileSystem.Primitives": "4.3.0", @@ -517,9 +638,10 @@ "System.Threading": "4.3.0" } }, + "System.Memory/4.5.4": {}, "System.Net.Http/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", "System.Diagnostics.DiagnosticSource": "6.0.0", @@ -549,7 +671,7 @@ }, "System.Net.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Runtime.Handles": "4.3.0" @@ -557,7 +679,7 @@ }, "System.Net.Sockets/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Net.Primitives": "4.3.0", @@ -576,7 +698,7 @@ }, "System.Reflection/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.IO": "4.3.0", "System.Reflection.Primitives": "4.3.0", @@ -609,7 +731,7 @@ }, "System.Reflection.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Reflection": "4.3.0", "System.Runtime": "4.3.0" @@ -617,7 +739,7 @@ }, "System.Reflection.Primitives/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -630,7 +752,7 @@ }, "System.Resources.ResourceManager/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Globalization": "4.3.0", "System.Reflection": "4.3.0", @@ -639,28 +761,28 @@ }, "System.Runtime/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0" } }, "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, "System.Runtime.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Runtime.Handles/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, "System.Runtime.InteropServices/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Reflection": "4.3.0", "System.Reflection.Primitives": "4.3.0", @@ -687,9 +809,15 @@ "System.Runtime.Extensions": "4.3.0" } }, + "System.Security.AccessControl/4.7.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + } + }, "System.Security.Cryptography.Algorithms/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "System.Collections": "4.3.0", "System.IO": "4.3.0", "System.Resources.ResourceManager": "4.3.0", @@ -707,7 +835,7 @@ }, "System.Security.Cryptography.Cng/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "System.IO": "4.3.0", "System.Resources.ResourceManager": "4.3.0", "System.Runtime": "4.3.0", @@ -722,7 +850,7 @@ }, "System.Security.Cryptography.Csp/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "System.IO": "4.3.0", "System.Reflection": "4.3.0", "System.Resources.ResourceManager": "4.3.0", @@ -739,7 +867,7 @@ }, "System.Security.Cryptography.Encoding/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "System.Collections": "4.3.0", "System.Collections.Concurrent": "4.3.0", "System.Linq": "4.3.0", @@ -781,9 +909,25 @@ "System.Threading.Tasks": "4.3.0" } }, + "System.Security.Cryptography.ProtectedData/4.4.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.25519.3" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.2.0", + "fileVersion": "4.6.25519.3" + } + } + }, "System.Security.Cryptography.X509Certificates/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "System.Collections": "4.3.0", "System.Diagnostics.Debug": "4.3.0", "System.Globalization": "4.3.0", @@ -810,16 +954,34 @@ "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" } }, + "System.Security.Permissions/4.7.0": { + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.700.19.56404" + } + } + }, + "System.Security.Principal.Windows/4.7.0": {}, "System.Text.Encoding/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, + "System.Text.Encoding.CodePages/4.4.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + } + }, "System.Text.Encoding.Extensions/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0", "System.Text.Encoding": "4.3.0" @@ -855,7 +1017,7 @@ }, "System.Threading.Tasks/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } @@ -869,11 +1031,30 @@ }, "System.Threading.Timer/4.3.0": { "dependencies": { - "Microsoft.NETCore.Platforms": "1.1.0", + "Microsoft.NETCore.Platforms": "3.1.0", "Microsoft.NETCore.Targets": "1.1.0", "System.Runtime": "4.3.0" } }, + "System.Windows.Extensions/4.7.0": { + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.1.0", + "fileVersion": "4.700.19.56404" + } + } + }, "System.Xml.ReaderWriter/4.3.0": { "dependencies": { "System.Collections": "4.3.0", @@ -917,6 +1098,34 @@ "serviceable": false, "sha512": "" }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, "Microsoft.EntityFrameworkCore/6.0.7": { "type": "package", "serviceable": true, @@ -1029,12 +1238,12 @@ "path": "microsoft.extensions.primitives/6.0.0", "hashPath": "microsoft.extensions.primitives.6.0.0.nupkg.sha512" }, - "Microsoft.NETCore.Platforms/1.1.0": { + "Microsoft.NETCore.Platforms/3.1.0": { "type": "package", "serviceable": true, - "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", - "path": "microsoft.netcore.platforms/1.1.0", - "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + "sha512": "sha512-z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", + "path": "microsoft.netcore.platforms/3.1.0", + "hashPath": "microsoft.netcore.platforms.3.1.0.nupkg.sha512" }, "Microsoft.NETCore.Targets/1.1.0": { "type": "package", @@ -1057,6 +1266,20 @@ "path": "microsoft.win32.primitives/4.3.0", "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "path": "microsoft.win32.systemevents/4.7.0", + "hashPath": "microsoft.win32.systemevents.4.7.0.nupkg.sha512" + }, + "MySql.Data/8.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVcctmag6cX0DtDxWh3fhBlSdZfGHKIUIodl7QtjZKupSgbCT0X+bO1Faw/NfUR2VfoxB/L9WzLfeCvki65qVg==", + "path": "mysql.data/8.0.31", + "hashPath": "mysql.data.8.0.31.nupkg.sha512" + }, "MySqlConnector/2.1.2": { "type": "package", "serviceable": true, @@ -1092,6 +1315,13 @@ "path": "pomelo.entityframeworkcore.mysql.json.microsoft/6.0.2", "hashPath": "pomelo.entityframeworkcore.mysql.json.microsoft.6.0.2.nupkg.sha512" }, + "Portable.BouncyCastle/1.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==", + "path": "portable.bouncycastle/1.9.0", + "hashPath": "portable.bouncycastle.1.9.0.nupkg.sha512" + }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "type": "package", "serviceable": true, @@ -1239,12 +1469,12 @@ "path": "system.appcontext/4.3.0", "hashPath": "system.appcontext.4.3.0.nupkg.sha512" }, - "System.Buffers/4.3.0": { + "System.Buffers/4.5.1": { "type": "package", "serviceable": true, - "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", - "path": "system.buffers/4.3.0", - "hashPath": "system.buffers.4.3.0.nupkg.sha512" + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" }, "System.Collections/4.3.0": { "type": "package", @@ -1267,6 +1497,13 @@ "path": "system.collections.immutable/6.0.0", "hashPath": "system.collections.immutable.6.0.0.nupkg.sha512" }, + "System.Configuration.ConfigurationManager/4.4.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==", + "path": "system.configuration.configurationmanager/4.4.1", + "hashPath": "system.configuration.configurationmanager.4.4.1.nupkg.sha512" + }, "System.Console/4.3.0": { "type": "package", "serviceable": true, @@ -1302,6 +1539,13 @@ "path": "system.diagnostics.tracing/4.3.0", "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "path": "system.drawing.common/4.7.0", + "hashPath": "system.drawing.common.4.7.0.nupkg.sha512" + }, "System.Globalization/4.3.0": { "type": "package", "serviceable": true, @@ -1372,6 +1616,13 @@ "path": "system.linq.expressions/4.3.0", "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, "System.Net.Http/4.3.0": { "type": "package", "serviceable": true, @@ -1505,6 +1756,13 @@ "path": "system.runtime.numerics/4.3.0", "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "path": "system.security.accesscontrol/4.7.0", + "hashPath": "system.security.accesscontrol.4.7.0.nupkg.sha512" + }, "System.Security.Cryptography.Algorithms/4.3.0": { "type": "package", "serviceable": true, @@ -1547,6 +1805,13 @@ "path": "system.security.cryptography.primitives/4.3.0", "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" }, + "System.Security.Cryptography.ProtectedData/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==", + "path": "system.security.cryptography.protecteddata/4.4.0", + "hashPath": "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512" + }, "System.Security.Cryptography.X509Certificates/4.3.0": { "type": "package", "serviceable": true, @@ -1554,6 +1819,20 @@ "path": "system.security.cryptography.x509certificates/4.3.0", "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "path": "system.security.permissions/4.7.0", + "hashPath": "system.security.permissions.4.7.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "path": "system.security.principal.windows/4.7.0", + "hashPath": "system.security.principal.windows.4.7.0.nupkg.sha512" + }, "System.Text.Encoding/4.3.0": { "type": "package", "serviceable": true, @@ -1561,6 +1840,13 @@ "path": "system.text.encoding/4.3.0", "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" }, + "System.Text.Encoding.CodePages/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==", + "path": "system.text.encoding.codepages/4.4.0", + "hashPath": "system.text.encoding.codepages.4.4.0.nupkg.sha512" + }, "System.Text.Encoding.Extensions/4.3.0": { "type": "package", "serviceable": true, @@ -1617,6 +1903,13 @@ "path": "system.threading.timer/4.3.0", "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "path": "system.windows.extensions/4.7.0", + "hashPath": "system.windows.extensions.4.7.0.nupkg.sha512" + }, "System.Xml.ReaderWriter/4.3.0": { "type": "package", "serviceable": true, diff --git a/bin/Debug/net6.0/Rocket_Elevators_Rest_API.dll b/bin/Debug/net6.0/Rocket_Elevators_Rest_API.dll index db1d452..d7ec16f 100644 Binary files a/bin/Debug/net6.0/Rocket_Elevators_Rest_API.dll and b/bin/Debug/net6.0/Rocket_Elevators_Rest_API.dll differ diff --git a/bin/Debug/net6.0/Rocket_Elevators_Rest_API.exe b/bin/Debug/net6.0/Rocket_Elevators_Rest_API.exe index dd96dd3..d693b08 100644 Binary files a/bin/Debug/net6.0/Rocket_Elevators_Rest_API.exe and b/bin/Debug/net6.0/Rocket_Elevators_Rest_API.exe differ diff --git a/bin/Debug/net6.0/Rocket_Elevators_Rest_API.pdb b/bin/Debug/net6.0/Rocket_Elevators_Rest_API.pdb index 0bb586e..1c95dfc 100644 Binary files a/bin/Debug/net6.0/Rocket_Elevators_Rest_API.pdb and b/bin/Debug/net6.0/Rocket_Elevators_Rest_API.pdb differ diff --git a/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll b/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..8f9fd3c Binary files /dev/null and b/bin/Debug/net6.0/System.Configuration.ConfigurationManager.dll differ diff --git a/bin/Debug/net6.0/System.Drawing.Common.dll b/bin/Debug/net6.0/System.Drawing.Common.dll new file mode 100644 index 0000000..69e5f5c Binary files /dev/null and b/bin/Debug/net6.0/System.Drawing.Common.dll differ diff --git a/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll b/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..2c177d4 Binary files /dev/null and b/bin/Debug/net6.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/bin/Debug/net6.0/System.Security.Permissions.dll b/bin/Debug/net6.0/System.Security.Permissions.dll new file mode 100644 index 0000000..76faf41 Binary files /dev/null and b/bin/Debug/net6.0/System.Security.Permissions.dll differ diff --git a/bin/Debug/net6.0/System.Windows.Extensions.dll b/bin/Debug/net6.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..7f075b2 Binary files /dev/null and b/bin/Debug/net6.0/System.Windows.Extensions.dll differ diff --git a/bin/Debug/net6.0/ZstdNet.dll b/bin/Debug/net6.0/ZstdNet.dll new file mode 100644 index 0000000..bc60788 Binary files /dev/null and b/bin/Debug/net6.0/ZstdNet.dll differ diff --git a/bin/Debug/net6.0/appsettings.Development.json b/bin/Debug/net6.0/appsettings.Development.json index d17f4c9..8f752ab 100644 --- a/bin/Debug/net6.0/appsettings.Development.json +++ b/bin/Debug/net6.0/appsettings.Development.json @@ -7,6 +7,6 @@ }, "AllowedHosts": "*", "ConnectionStrings": { - "DefaultConnection": "server=localhost;port=3306;database=Rocket_Elevators_Information_System;uid=mlouellette;password=Iloverails1!" + "DefaultConnection": "server=localhost;port=3306;database=rocketElevatorGroupWebsite_development;uid=root;password=password" } } diff --git a/bin/Debug/net6.0/appsettings.json b/bin/Debug/net6.0/appsettings.json index ffe27f9..eb2f605 100644 --- a/bin/Debug/net6.0/appsettings.json +++ b/bin/Debug/net6.0/appsettings.json @@ -7,7 +7,7 @@ }, "AllowedHosts": "*", "ConnectionStrings": { - "DefaultConnection": "server=localhost;port=3306;database=Rocket_Elevators_Information_System;uid=mlouellette;password=Iloverails1!" + "DefaultConnection": "server=localhost;port=3306;database=rocketElevatorGroupWebsite_development;uid=root;password=password" } } diff --git a/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll b/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..3a19d3d Binary files /dev/null and b/bin/Debug/net6.0/runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll b/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..c49c358 Binary files /dev/null and b/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll b/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll new file mode 100644 index 0000000..9a04b68 Binary files /dev/null and b/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll differ diff --git a/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll b/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..3fb4939 Binary files /dev/null and b/bin/Debug/net6.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll differ diff --git a/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..df95234 Binary files /dev/null and b/bin/Debug/net6.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/obj/Debug/net6.0/Rocket_Elevators_Rest_API.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net6.0/Rocket_Elevators_Rest_API.GeneratedMSBuildEditorConfig.editorconfig index 1fb7977..1b6f06a 100644 --- a/obj/Debug/net6.0/Rocket_Elevators_Rest_API.GeneratedMSBuildEditorConfig.editorconfig +++ b/obj/Debug/net6.0/Rocket_Elevators_Rest_API.GeneratedMSBuildEditorConfig.editorconfig @@ -5,12 +5,13 @@ build_property.UsingMicrosoftNETSdkWeb = true build_property.ProjectTypeGuids = build_property.InvariantGlobalization = build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = Rocket_Elevators_Rest_API build_property.RootNamespace = Rocket_Elevators_Rest_API -build_property.ProjectDir = C:\Users\Michael\OneDrive\Bureau\Rocket_Elevators_RestAPI\ +build_property.ProjectDir = C:\Users\yasmi\source\repos\RESTAPI\ build_property.RazorLangVersion = 6.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = C:\Users\Michael\OneDrive\Bureau\Rocket_Elevators_RestAPI +build_property.MSBuildProjectDirectory = C:\Users\yasmi\source\repos\RESTAPI build_property._RazorSourceGeneratorDebug = diff --git a/obj/Debug/net6.0/Rocket_Elevators_Rest_API.assets.cache b/obj/Debug/net6.0/Rocket_Elevators_Rest_API.assets.cache index bdb48ba..971b2d2 100644 Binary files a/obj/Debug/net6.0/Rocket_Elevators_Rest_API.assets.cache and b/obj/Debug/net6.0/Rocket_Elevators_Rest_API.assets.cache differ diff --git a/obj/Debug/net6.0/Rocket_Elevators_Rest_API.csproj.AssemblyReference.cache b/obj/Debug/net6.0/Rocket_Elevators_Rest_API.csproj.AssemblyReference.cache index 3af522c..5d68bc9 100644 Binary files a/obj/Debug/net6.0/Rocket_Elevators_Rest_API.csproj.AssemblyReference.cache and b/obj/Debug/net6.0/Rocket_Elevators_Rest_API.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net6.0/Rocket_Elevators_Rest_API.csproj.CoreCompileInputs.cache b/obj/Debug/net6.0/Rocket_Elevators_Rest_API.csproj.CoreCompileInputs.cache index bea46e4..7e135e6 100644 --- a/obj/Debug/net6.0/Rocket_Elevators_Rest_API.csproj.CoreCompileInputs.cache +++ b/obj/Debug/net6.0/Rocket_Elevators_Rest_API.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -e762d02312173c1832a2ed92787780afdccac17f +30195186073edd58f39ef97cc7f73db18342d80f diff --git a/obj/Debug/net6.0/Rocket_Elevators_Rest_API.csproj.FileListAbsolute.txt b/obj/Debug/net6.0/Rocket_Elevators_Rest_API.csproj.FileListAbsolute.txt index 34f9fb7..95ea6ad 100644 --- a/obj/Debug/net6.0/Rocket_Elevators_Rest_API.csproj.FileListAbsolute.txt +++ b/obj/Debug/net6.0/Rocket_Elevators_Rest_API.csproj.FileListAbsolute.txt @@ -165,3 +165,107 @@ C:\Users\Michael\OneDrive\Bureau\Rocket_Elevators_RestAPI\obj\Debug\net6.0\refin C:\Users\Michael\OneDrive\Bureau\Rocket_Elevators_RestAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.pdb C:\Users\Michael\OneDrive\Bureau\Rocket_Elevators_RestAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.genruntimeconfig.cache C:\Users\Michael\OneDrive\Bureau\Rocket_Elevators_RestAPI\obj\Debug\net6.0\ref\Rocket_Elevators_Rest_API.dll +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.csproj.AssemblyReference.cache +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.AssemblyInfoInputs.cache +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.AssemblyInfo.cs +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.csproj.CoreCompileInputs.cache +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.MvcApplicationPartsAssemblyInfo.cs +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.MvcApplicationPartsAssemblyInfo.cache +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\EFCoreMySqlJsonMicrosoft.cs +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\appsettings.Development.json +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\appsettings.json +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\Rocket_Elevators_Rest_API.exe +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\Rocket_Elevators_Rest_API.deps.json +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\Rocket_Elevators_Rest_API.runtimeconfig.json +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\Rocket_Elevators_Rest_API.dll +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\Rocket_Elevators_Rest_API.pdb +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.dll +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Relational.Design.dll +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\Microsoft.Extensions.Caching.Memory.dll +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\Microsoft.OpenApi.dll +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\MySqlConnector.dll +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\Pomelo.EntityFrameworkCore.MySql.dll +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\Pomelo.EntityFrameworkCore.MySql.Design.dll +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\Pomelo.EntityFrameworkCore.MySql.Json.Microsoft.dll +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll +C:\Users\yasmi\RESTAPI\bin\Debug\net6.0\System.Text.Json.dll +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\staticwebassets\msbuild.Rocket_Elevators_Rest_API.Microsoft.AspNetCore.StaticWebAssets.props +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\staticwebassets\msbuild.build.Rocket_Elevators_Rest_API.props +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\staticwebassets\msbuild.buildMultiTargeting.Rocket_Elevators_Rest_API.props +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\staticwebassets\msbuild.buildTransitive.Rocket_Elevators_Rest_API.props +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\staticwebassets.pack.json +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\staticwebassets.build.json +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\staticwebassets.development.json +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\scopedcss\bundle\Rocket_Elevators_Rest_API.styles.css +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.csproj.CopyComplete +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.dll +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\refint\Rocket_Elevators_Rest_API.dll +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.pdb +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.genruntimeconfig.cache +C:\Users\yasmi\RESTAPI\obj\Debug\net6.0\ref\Rocket_Elevators_Rest_API.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\appsettings.Development.json +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\appsettings.json +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Rocket_Elevators_Rest_API.exe +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Rocket_Elevators_Rest_API.deps.json +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Rocket_Elevators_Rest_API.runtimeconfig.json +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Rocket_Elevators_Rest_API.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Rocket_Elevators_Rest_API.pdb +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Microsoft.EntityFrameworkCore.Relational.Design.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Microsoft.Extensions.Caching.Memory.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Microsoft.OpenApi.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\MySqlConnector.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Pomelo.EntityFrameworkCore.MySql.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Pomelo.EntityFrameworkCore.MySql.Design.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Pomelo.EntityFrameworkCore.MySql.Json.Microsoft.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Swashbuckle.AspNetCore.Swagger.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerGen.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Swashbuckle.AspNetCore.SwaggerUI.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\System.Text.Json.dll +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.csproj.AssemblyReference.cache +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.AssemblyInfoInputs.cache +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.AssemblyInfo.cs +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.csproj.CoreCompileInputs.cache +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.MvcApplicationPartsAssemblyInfo.cs +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.MvcApplicationPartsAssemblyInfo.cache +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\EFCoreMySqlJsonMicrosoft.cs +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\staticwebassets\msbuild.Rocket_Elevators_Rest_API.Microsoft.AspNetCore.StaticWebAssets.props +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\staticwebassets\msbuild.build.Rocket_Elevators_Rest_API.props +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\staticwebassets\msbuild.buildMultiTargeting.Rocket_Elevators_Rest_API.props +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\staticwebassets\msbuild.buildTransitive.Rocket_Elevators_Rest_API.props +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\staticwebassets.pack.json +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\staticwebassets.build.json +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\staticwebassets.development.json +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\scopedcss\bundle\Rocket_Elevators_Rest_API.styles.css +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.csproj.CopyComplete +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.dll +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\refint\Rocket_Elevators_Rest_API.dll +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.pdb +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\Rocket_Elevators_Rest_API.genruntimeconfig.cache +C:\Users\yasmi\source\repos\RESTAPI\obj\Debug\net6.0\ref\Rocket_Elevators_Rest_API.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Google.Protobuf.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\K4os.Compression.LZ4.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\K4os.Compression.LZ4.Streams.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\K4os.Hash.xxHash.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\Microsoft.Win32.SystemEvents.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\MySql.Data.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\ZstdNet.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\BouncyCastle.Crypto.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\System.Configuration.ConfigurationManager.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\System.Drawing.Common.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\System.Security.Permissions.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\System.Windows.Extensions.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\Microsoft.Win32.SystemEvents.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\runtimes\unix\lib\netcoreapp3.0\System.Drawing.Common.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Drawing.Common.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +C:\Users\yasmi\source\repos\RESTAPI\bin\Debug\net6.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll diff --git a/obj/Debug/net6.0/Rocket_Elevators_Rest_API.dll b/obj/Debug/net6.0/Rocket_Elevators_Rest_API.dll index db1d452..d7ec16f 100644 Binary files a/obj/Debug/net6.0/Rocket_Elevators_Rest_API.dll and b/obj/Debug/net6.0/Rocket_Elevators_Rest_API.dll differ diff --git a/obj/Debug/net6.0/Rocket_Elevators_Rest_API.genruntimeconfig.cache b/obj/Debug/net6.0/Rocket_Elevators_Rest_API.genruntimeconfig.cache index b9d56e1..0f96a84 100644 --- a/obj/Debug/net6.0/Rocket_Elevators_Rest_API.genruntimeconfig.cache +++ b/obj/Debug/net6.0/Rocket_Elevators_Rest_API.genruntimeconfig.cache @@ -1 +1 @@ -7a3e1a38dc87df3e139d4767e794adb60a18164d +353c5cbf153102fb35863e3a047991f860e818cd diff --git a/obj/Debug/net6.0/Rocket_Elevators_Rest_API.pdb b/obj/Debug/net6.0/Rocket_Elevators_Rest_API.pdb index 0bb586e..1c95dfc 100644 Binary files a/obj/Debug/net6.0/Rocket_Elevators_Rest_API.pdb and b/obj/Debug/net6.0/Rocket_Elevators_Rest_API.pdb differ diff --git a/obj/Debug/net6.0/apphost.exe b/obj/Debug/net6.0/apphost.exe index dd96dd3..d693b08 100644 Binary files a/obj/Debug/net6.0/apphost.exe and b/obj/Debug/net6.0/apphost.exe differ diff --git a/obj/Debug/net6.0/project.razor.json b/obj/Debug/net6.0/project.razor.json index 8b09af9..e2e09a7 100644 --- a/obj/Debug/net6.0/project.razor.json +++ b/obj/Debug/net6.0/project.razor.json @@ -1,5 +1,5 @@ { - "FilePath": "c:\\Users\\Michael\\OneDrive\\Bureau\\Rocket_Elevators_RestAPI\\Rocket_Elevators_Rest_API.csproj", + "FilePath": "c:\\Users\\yasmi\\source\\repos\\RESTAPI\\Rocket_Elevators_Rest_API.csproj", "Configuration": { "ConfigurationName": "MVC-3.0", "LanguageVersion": "6.0", @@ -12,7 +12,7 @@ "ProjectWorkspaceState": { "TagHelpers": [ { - "HashCode": 2143359970, + "HashCode": 790989411, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -89,7 +89,7 @@ } }, { - "HashCode": 697627997, + "HashCode": 1783828923, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -167,7 +167,7 @@ } }, { - "HashCode": 474216564, + "HashCode": 1068624436, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -198,7 +198,7 @@ } }, { - "HashCode": 654168149, + "HashCode": 1268354207, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.NotAuthorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -230,7 +230,7 @@ } }, { - "HashCode": -611085264, + "HashCode": -321042549, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -249,7 +249,7 @@ } }, { - "HashCode": -2126753749, + "HashCode": 1263053182, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeRouteView.Authorizing", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -269,7 +269,7 @@ } }, { - "HashCode": 688828291, + "HashCode": 1067433108, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -365,7 +365,7 @@ } }, { - "HashCode": 100410682, + "HashCode": -960858047, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -462,7 +462,7 @@ } }, { - "HashCode": -101264908, + "HashCode": 1551460913, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -493,7 +493,7 @@ } }, { - "HashCode": 1093105523, + "HashCode": 582848370, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -525,7 +525,7 @@ } }, { - "HashCode": -1061960081, + "HashCode": -1169982021, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -556,7 +556,7 @@ } }, { - "HashCode": -124006714, + "HashCode": -1857027766, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.NotAuthorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -588,7 +588,7 @@ } }, { - "HashCode": -1285387717, + "HashCode": 19141079, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -619,7 +619,7 @@ } }, { - "HashCode": 669329766, + "HashCode": 1017446457, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorized", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -651,7 +651,7 @@ } }, { - "HashCode": 1837326321, + "HashCode": -2129515870, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -670,7 +670,7 @@ } }, { - "HashCode": 958178688, + "HashCode": 211913494, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.AuthorizeView.Authorizing", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -690,7 +690,7 @@ } }, { - "HashCode": -969544526, + "HashCode": -1867719949, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -718,7 +718,7 @@ } }, { - "HashCode": 1368760471, + "HashCode": -2084880567, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -747,7 +747,7 @@ } }, { - "HashCode": -1216864963, + "HashCode": 48317910, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -766,7 +766,7 @@ } }, { - "HashCode": 394888967, + "HashCode": 1075184411, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Authorization.CascadingAuthenticationState.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Authorization", @@ -786,7 +786,7 @@ } }, { - "HashCode": -1334632542, + "HashCode": -1121963079, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.CascadingValue", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -855,7 +855,7 @@ } }, { - "HashCode": -600872807, + "HashCode": -621959924, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.CascadingValue", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -925,7 +925,7 @@ } }, { - "HashCode": 362559908, + "HashCode": 736876081, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -944,7 +944,7 @@ } }, { - "HashCode": -177788662, + "HashCode": 335608046, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.CascadingValue.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -964,7 +964,7 @@ } }, { - "HashCode": -37824313, + "HashCode": -1948489117, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.DynamicComponent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1002,7 +1002,7 @@ } }, { - "HashCode": 1199815750, + "HashCode": -1105991257, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.DynamicComponent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1041,7 +1041,7 @@ } }, { - "HashCode": -1194647754, + "HashCode": 149861440, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.LayoutView", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1079,7 +1079,7 @@ } }, { - "HashCode": 1421946322, + "HashCode": -272143845, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.LayoutView", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1118,7 +1118,7 @@ } }, { - "HashCode": 392640940, + "HashCode": -430530341, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1137,7 +1137,7 @@ } }, { - "HashCode": 2017054446, + "HashCode": 1164087817, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.LayoutView.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1157,7 +1157,7 @@ } }, { - "HashCode": 1208105772, + "HashCode": 1761531631, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.RouteView", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1195,7 +1195,7 @@ } }, { - "HashCode": -2122562621, + "HashCode": -1409252162, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.RouteView", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1234,7 +1234,7 @@ } }, { - "HashCode": 744735533, + "HashCode": -753939968, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.Router", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1333,7 +1333,7 @@ } }, { - "HashCode": 1046103356, + "HashCode": 1620881656, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.Router", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1433,7 +1433,7 @@ } }, { - "HashCode": 34484508, + "HashCode": -1716066488, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1452,7 +1452,7 @@ } }, { - "HashCode": 696726083, + "HashCode": -1735644515, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.NotFound", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1472,7 +1472,7 @@ } }, { - "HashCode": -2000887616, + "HashCode": -1344697580, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1503,7 +1503,7 @@ } }, { - "HashCode": -1379727935, + "HashCode": 1327229895, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.Found", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1535,7 +1535,7 @@ } }, { - "HashCode": 268595407, + "HashCode": 1996536885, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1554,7 +1554,7 @@ } }, { - "HashCode": -919321180, + "HashCode": 1551324697, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.Router.Navigating", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -1574,7 +1574,7 @@ } }, { - "HashCode": -1797139378, + "HashCode": -1019336568, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", "AssemblyName": "Microsoft.AspNetCore.Components.Forms", @@ -1591,7 +1591,7 @@ } }, { - "HashCode": 344190670, + "HashCode": 1120350054, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.DataAnnotationsValidator", "AssemblyName": "Microsoft.AspNetCore.Components.Forms", @@ -1609,7 +1609,7 @@ } }, { - "HashCode": -778348136, + "HashCode": -1816118623, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.EditForm", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -1705,7 +1705,7 @@ } }, { - "HashCode": 1415237599, + "HashCode": 1565886273, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.EditForm", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -1802,7 +1802,7 @@ } }, { - "HashCode": 1849935933, + "HashCode": -1552737986, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -1833,7 +1833,7 @@ } }, { - "HashCode": -1013547425, + "HashCode": 1545496159, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.EditForm.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -1865,7 +1865,7 @@ } }, { - "HashCode": 1491927399, + "HashCode": 460281499, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -1930,7 +1930,7 @@ } }, { - "HashCode": 1441191844, + "HashCode": 1367776081, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -1996,7 +1996,7 @@ } }, { - "HashCode": 722394449, + "HashCode": 982484500, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2095,7 +2095,7 @@ } }, { - "HashCode": -1088647745, + "HashCode": -668585483, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2195,7 +2195,7 @@ } }, { - "HashCode": -783823113, + "HashCode": 1572205910, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputFile", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2233,7 +2233,7 @@ } }, { - "HashCode": 1701652971, + "HashCode": 189889914, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputFile", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2272,7 +2272,7 @@ } }, { - "HashCode": 712304393, + "HashCode": 1571078599, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2361,7 +2361,7 @@ } }, { - "HashCode": -906466066, + "HashCode": -319895556, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2451,7 +2451,7 @@ } }, { - "HashCode": -213632035, + "HashCode": 1887447416, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadio", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2510,7 +2510,7 @@ } }, { - "HashCode": 1827692605, + "HashCode": -347800960, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadio", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2570,7 +2570,7 @@ } }, { - "HashCode": -361748202, + "HashCode": -350382733, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2669,7 +2669,7 @@ } }, { - "HashCode": -2062061154, + "HashCode": -2133218294, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2769,7 +2769,7 @@ } }, { - "HashCode": -1645399262, + "HashCode": -694414303, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2788,7 +2788,7 @@ } }, { - "HashCode": 1975335432, + "HashCode": -2103050188, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2808,7 +2808,7 @@ } }, { - "HashCode": -63985731, + "HashCode": -856221757, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2898,7 +2898,7 @@ } }, { - "HashCode": -1714577060, + "HashCode": -148016871, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -2989,7 +2989,7 @@ } }, { - "HashCode": -1113203422, + "HashCode": -1806316690, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3008,7 +3008,7 @@ } }, { - "HashCode": -534084327, + "HashCode": -1270140217, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3028,7 +3028,7 @@ } }, { - "HashCode": 1075706763, + "HashCode": -1195849714, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3093,7 +3093,7 @@ } }, { - "HashCode": -1250476012, + "HashCode": 1898306400, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3159,7 +3159,7 @@ } }, { - "HashCode": 284951586, + "HashCode": 1863539881, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3224,7 +3224,7 @@ } }, { - "HashCode": 1340943121, + "HashCode": -1299535857, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3290,7 +3290,7 @@ } }, { - "HashCode": -2033061433, + "HashCode": -2051207314, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3340,7 +3340,7 @@ } }, { - "HashCode": 751690824, + "HashCode": -668689537, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.ValidationMessage", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3391,7 +3391,7 @@ } }, { - "HashCode": 1749549197, + "HashCode": -1148636054, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3428,7 +3428,7 @@ } }, { - "HashCode": -527636121, + "HashCode": -1710697570, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Forms.ValidationSummary", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3466,7 +3466,7 @@ } }, { - "HashCode": 725486950, + "HashCode": 43902358, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3503,7 +3503,7 @@ } }, { - "HashCode": 1364524235, + "HashCode": 1249888389, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.FocusOnNavigate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3541,7 +3541,7 @@ } }, { - "HashCode": 1961155463, + "HashCode": 1611772364, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.NavLink", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3598,7 +3598,7 @@ } }, { - "HashCode": 1816184151, + "HashCode": -1570509837, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Routing.NavLink", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3656,7 +3656,7 @@ } }, { - "HashCode": -1488785362, + "HashCode": -1690061711, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3675,7 +3675,7 @@ } }, { - "HashCode": 1813325470, + "HashCode": -81442852, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Routing.NavLink.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3695,7 +3695,7 @@ } }, { - "HashCode": -184200552, + "HashCode": 1654881449, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.HeadContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3724,7 +3724,7 @@ } }, { - "HashCode": 1007333023, + "HashCode": 266513816, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.HeadContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3754,7 +3754,7 @@ } }, { - "HashCode": -1762762919, + "HashCode": 1351740304, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3773,7 +3773,7 @@ } }, { - "HashCode": -1230569932, + "HashCode": -1892713600, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.HeadContent.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3793,7 +3793,7 @@ } }, { - "HashCode": 642616137, + "HashCode": 2124074000, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3810,7 +3810,7 @@ } }, { - "HashCode": -1862318106, + "HashCode": -1370840360, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.HeadOutlet", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3828,7 +3828,7 @@ } }, { - "HashCode": -2080895458, + "HashCode": -81684460, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.PageTitle", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3857,7 +3857,7 @@ } }, { - "HashCode": -222159711, + "HashCode": -966589712, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.PageTitle", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3887,7 +3887,7 @@ } }, { - "HashCode": -1492268310, + "HashCode": 572169647, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3906,7 +3906,7 @@ } }, { - "HashCode": -1001240973, + "HashCode": -1406911931, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.PageTitle.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3926,7 +3926,7 @@ } }, { - "HashCode": 241538001, + "HashCode": -710084180, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -3984,7 +3984,7 @@ } }, { - "HashCode": -905224903, + "HashCode": 566718421, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4043,7 +4043,7 @@ } }, { - "HashCode": -617379120, + "HashCode": 198577135, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4062,7 +4062,7 @@ } }, { - "HashCode": -765278443, + "HashCode": -364020978, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4082,7 +4082,7 @@ } }, { - "HashCode": 1389856051, + "HashCode": 64985196, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4113,7 +4113,7 @@ } }, { - "HashCode": -92658327, + "HashCode": -2135639023, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.ErrorBoundary.ErrorContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4145,7 +4145,7 @@ } }, { - "HashCode": 1287411583, + "HashCode": 1554416561, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4257,7 +4257,7 @@ } }, { - "HashCode": 398395796, + "HashCode": 1942297510, "Kind": "Components.Component", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4370,7 +4370,7 @@ } }, { - "HashCode": 435952447, + "HashCode": 1045044931, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4401,7 +4401,7 @@ } }, { - "HashCode": -1250516064, + "HashCode": -1227231513, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ChildContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4433,7 +4433,7 @@ } }, { - "HashCode": 2009550719, + "HashCode": 900915042, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4464,7 +4464,7 @@ } }, { - "HashCode": 1104185912, + "HashCode": 332810283, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.ItemContent", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4496,7 +4496,7 @@ } }, { - "HashCode": 86663558, + "HashCode": 68628629, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4527,7 +4527,7 @@ } }, { - "HashCode": -690704420, + "HashCode": -207394040, "Kind": "Components.ChildContent", "Name": "Microsoft.AspNetCore.Components.Web.Virtualization.Virtualize.Placeholder", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -4559,7 +4559,7 @@ } }, { - "HashCode": 236205933, + "HashCode": 1549154690, "Kind": "Components.EventHandler", "Name": "onfocus", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -4640,7 +4640,7 @@ } }, { - "HashCode": 871403812, + "HashCode": 925318761, "Kind": "Components.EventHandler", "Name": "onblur", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -4721,7 +4721,7 @@ } }, { - "HashCode": 1869708420, + "HashCode": 1034206928, "Kind": "Components.EventHandler", "Name": "onfocusin", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -4802,7 +4802,7 @@ } }, { - "HashCode": -188324651, + "HashCode": -1248659255, "Kind": "Components.EventHandler", "Name": "onfocusout", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -4883,7 +4883,7 @@ } }, { - "HashCode": -1091889309, + "HashCode": -1385320584, "Kind": "Components.EventHandler", "Name": "onmouseover", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -4964,7 +4964,7 @@ } }, { - "HashCode": 2020383103, + "HashCode": 1131428031, "Kind": "Components.EventHandler", "Name": "onmouseout", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5045,7 +5045,7 @@ } }, { - "HashCode": 40098853, + "HashCode": 57393154, "Kind": "Components.EventHandler", "Name": "onmousemove", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5126,7 +5126,7 @@ } }, { - "HashCode": 1187933142, + "HashCode": 1445346257, "Kind": "Components.EventHandler", "Name": "onmousedown", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5207,7 +5207,7 @@ } }, { - "HashCode": 2082587476, + "HashCode": -1898418025, "Kind": "Components.EventHandler", "Name": "onmouseup", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5288,7 +5288,7 @@ } }, { - "HashCode": 2088145685, + "HashCode": 118937121, "Kind": "Components.EventHandler", "Name": "onclick", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5369,7 +5369,7 @@ } }, { - "HashCode": -1898719579, + "HashCode": -2078402384, "Kind": "Components.EventHandler", "Name": "ondblclick", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5450,7 +5450,7 @@ } }, { - "HashCode": -1950922547, + "HashCode": -495600343, "Kind": "Components.EventHandler", "Name": "onwheel", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5531,7 +5531,7 @@ } }, { - "HashCode": -2095321646, + "HashCode": 1078150685, "Kind": "Components.EventHandler", "Name": "onmousewheel", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5612,7 +5612,7 @@ } }, { - "HashCode": -1198897133, + "HashCode": 658685358, "Kind": "Components.EventHandler", "Name": "oncontextmenu", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5693,7 +5693,7 @@ } }, { - "HashCode": 1150544419, + "HashCode": 235200012, "Kind": "Components.EventHandler", "Name": "ondrag", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5774,7 +5774,7 @@ } }, { - "HashCode": 783424342, + "HashCode": 41174592, "Kind": "Components.EventHandler", "Name": "ondragend", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5855,7 +5855,7 @@ } }, { - "HashCode": -1890572483, + "HashCode": -1233103843, "Kind": "Components.EventHandler", "Name": "ondragenter", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -5936,7 +5936,7 @@ } }, { - "HashCode": 1596179566, + "HashCode": 2061058308, "Kind": "Components.EventHandler", "Name": "ondragleave", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6017,7 +6017,7 @@ } }, { - "HashCode": 138287660, + "HashCode": 889708759, "Kind": "Components.EventHandler", "Name": "ondragover", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6098,7 +6098,7 @@ } }, { - "HashCode": -174715577, + "HashCode": 892488849, "Kind": "Components.EventHandler", "Name": "ondragstart", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6179,7 +6179,7 @@ } }, { - "HashCode": 2103700160, + "HashCode": -1141796672, "Kind": "Components.EventHandler", "Name": "ondrop", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6260,7 +6260,7 @@ } }, { - "HashCode": -1804478674, + "HashCode": 597668031, "Kind": "Components.EventHandler", "Name": "onkeydown", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6341,7 +6341,7 @@ } }, { - "HashCode": 1518655023, + "HashCode": -1665626178, "Kind": "Components.EventHandler", "Name": "onkeyup", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6422,7 +6422,7 @@ } }, { - "HashCode": -578076063, + "HashCode": -2094302716, "Kind": "Components.EventHandler", "Name": "onkeypress", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6503,7 +6503,7 @@ } }, { - "HashCode": 618996713, + "HashCode": 1571094560, "Kind": "Components.EventHandler", "Name": "onchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6584,7 +6584,7 @@ } }, { - "HashCode": -1443214285, + "HashCode": 358014616, "Kind": "Components.EventHandler", "Name": "oninput", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6665,7 +6665,7 @@ } }, { - "HashCode": -978407961, + "HashCode": 437174112, "Kind": "Components.EventHandler", "Name": "oninvalid", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6746,7 +6746,7 @@ } }, { - "HashCode": 391527798, + "HashCode": -1297217554, "Kind": "Components.EventHandler", "Name": "onreset", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6827,7 +6827,7 @@ } }, { - "HashCode": 1453833621, + "HashCode": 974709906, "Kind": "Components.EventHandler", "Name": "onselect", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6908,7 +6908,7 @@ } }, { - "HashCode": 6942125, + "HashCode": 831442887, "Kind": "Components.EventHandler", "Name": "onselectstart", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -6989,7 +6989,7 @@ } }, { - "HashCode": 504510138, + "HashCode": -1747086254, "Kind": "Components.EventHandler", "Name": "onselectionchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7070,7 +7070,7 @@ } }, { - "HashCode": 833565453, + "HashCode": -17019781, "Kind": "Components.EventHandler", "Name": "onsubmit", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7151,7 +7151,7 @@ } }, { - "HashCode": -909574877, + "HashCode": -1777092848, "Kind": "Components.EventHandler", "Name": "onbeforecopy", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7232,7 +7232,7 @@ } }, { - "HashCode": 428097617, + "HashCode": -169722467, "Kind": "Components.EventHandler", "Name": "onbeforecut", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7313,7 +7313,7 @@ } }, { - "HashCode": 1326832408, + "HashCode": 1512202844, "Kind": "Components.EventHandler", "Name": "onbeforepaste", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7394,7 +7394,7 @@ } }, { - "HashCode": -1966747220, + "HashCode": -1832549913, "Kind": "Components.EventHandler", "Name": "oncopy", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7475,7 +7475,7 @@ } }, { - "HashCode": 730899335, + "HashCode": 1519043394, "Kind": "Components.EventHandler", "Name": "oncut", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7556,7 +7556,7 @@ } }, { - "HashCode": 297927037, + "HashCode": 730497725, "Kind": "Components.EventHandler", "Name": "onpaste", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7637,7 +7637,7 @@ } }, { - "HashCode": 948656243, + "HashCode": 106414774, "Kind": "Components.EventHandler", "Name": "ontouchcancel", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7718,7 +7718,7 @@ } }, { - "HashCode": 914906330, + "HashCode": 708141879, "Kind": "Components.EventHandler", "Name": "ontouchend", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7799,7 +7799,7 @@ } }, { - "HashCode": -786240199, + "HashCode": -165977492, "Kind": "Components.EventHandler", "Name": "ontouchmove", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7880,7 +7880,7 @@ } }, { - "HashCode": 757636301, + "HashCode": -755922577, "Kind": "Components.EventHandler", "Name": "ontouchstart", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -7961,7 +7961,7 @@ } }, { - "HashCode": -1006793067, + "HashCode": -2016756697, "Kind": "Components.EventHandler", "Name": "ontouchenter", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8042,7 +8042,7 @@ } }, { - "HashCode": -522468824, + "HashCode": -1078980543, "Kind": "Components.EventHandler", "Name": "ontouchleave", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8123,7 +8123,7 @@ } }, { - "HashCode": -725829226, + "HashCode": 747218880, "Kind": "Components.EventHandler", "Name": "ongotpointercapture", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8204,7 +8204,7 @@ } }, { - "HashCode": 320923604, + "HashCode": 60129791, "Kind": "Components.EventHandler", "Name": "onlostpointercapture", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8285,7 +8285,7 @@ } }, { - "HashCode": 975499243, + "HashCode": -410229480, "Kind": "Components.EventHandler", "Name": "onpointercancel", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8366,7 +8366,7 @@ } }, { - "HashCode": 653959699, + "HashCode": 1511827284, "Kind": "Components.EventHandler", "Name": "onpointerdown", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8447,7 +8447,7 @@ } }, { - "HashCode": -900909756, + "HashCode": 677265705, "Kind": "Components.EventHandler", "Name": "onpointerenter", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8528,7 +8528,7 @@ } }, { - "HashCode": 26932517, + "HashCode": -2118573031, "Kind": "Components.EventHandler", "Name": "onpointerleave", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8609,7 +8609,7 @@ } }, { - "HashCode": 175846148, + "HashCode": -1645656943, "Kind": "Components.EventHandler", "Name": "onpointermove", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8690,7 +8690,7 @@ } }, { - "HashCode": -1074649696, + "HashCode": -1589714832, "Kind": "Components.EventHandler", "Name": "onpointerout", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8771,7 +8771,7 @@ } }, { - "HashCode": 61468017, + "HashCode": -1053297648, "Kind": "Components.EventHandler", "Name": "onpointerover", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8852,7 +8852,7 @@ } }, { - "HashCode": 1996055925, + "HashCode": -518932480, "Kind": "Components.EventHandler", "Name": "onpointerup", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -8933,7 +8933,7 @@ } }, { - "HashCode": 335311870, + "HashCode": 57517667, "Kind": "Components.EventHandler", "Name": "oncanplay", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9014,7 +9014,7 @@ } }, { - "HashCode": 349297689, + "HashCode": 488772151, "Kind": "Components.EventHandler", "Name": "oncanplaythrough", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9095,7 +9095,7 @@ } }, { - "HashCode": -265359462, + "HashCode": -537983765, "Kind": "Components.EventHandler", "Name": "oncuechange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9176,7 +9176,7 @@ } }, { - "HashCode": 306995501, + "HashCode": 2089513118, "Kind": "Components.EventHandler", "Name": "ondurationchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9257,7 +9257,7 @@ } }, { - "HashCode": -890477597, + "HashCode": -254508057, "Kind": "Components.EventHandler", "Name": "onemptied", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9338,7 +9338,7 @@ } }, { - "HashCode": 1212988379, + "HashCode": 1703436206, "Kind": "Components.EventHandler", "Name": "onpause", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9419,7 +9419,7 @@ } }, { - "HashCode": -52323393, + "HashCode": -602023051, "Kind": "Components.EventHandler", "Name": "onplay", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9500,7 +9500,7 @@ } }, { - "HashCode": 518379541, + "HashCode": -872917469, "Kind": "Components.EventHandler", "Name": "onplaying", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9581,7 +9581,7 @@ } }, { - "HashCode": 1623473790, + "HashCode": 456615781, "Kind": "Components.EventHandler", "Name": "onratechange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9662,7 +9662,7 @@ } }, { - "HashCode": -983836400, + "HashCode": 10934826, "Kind": "Components.EventHandler", "Name": "onseeked", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9743,7 +9743,7 @@ } }, { - "HashCode": 410707362, + "HashCode": 625308653, "Kind": "Components.EventHandler", "Name": "onseeking", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9824,7 +9824,7 @@ } }, { - "HashCode": 1641270371, + "HashCode": -980772500, "Kind": "Components.EventHandler", "Name": "onstalled", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9905,7 +9905,7 @@ } }, { - "HashCode": -424627384, + "HashCode": 1129292850, "Kind": "Components.EventHandler", "Name": "onstop", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -9986,7 +9986,7 @@ } }, { - "HashCode": -181461045, + "HashCode": 1834549311, "Kind": "Components.EventHandler", "Name": "onsuspend", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10067,7 +10067,7 @@ } }, { - "HashCode": -330277612, + "HashCode": 1421653056, "Kind": "Components.EventHandler", "Name": "ontimeupdate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10148,7 +10148,7 @@ } }, { - "HashCode": -860371521, + "HashCode": -2118070148, "Kind": "Components.EventHandler", "Name": "onvolumechange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10229,7 +10229,7 @@ } }, { - "HashCode": -1237941461, + "HashCode": 8201902, "Kind": "Components.EventHandler", "Name": "onwaiting", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10310,7 +10310,7 @@ } }, { - "HashCode": -1257074372, + "HashCode": 1250173993, "Kind": "Components.EventHandler", "Name": "onloadstart", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10391,7 +10391,7 @@ } }, { - "HashCode": -1368334117, + "HashCode": -1620752588, "Kind": "Components.EventHandler", "Name": "ontimeout", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10472,7 +10472,7 @@ } }, { - "HashCode": -1288090324, + "HashCode": -1537167985, "Kind": "Components.EventHandler", "Name": "onabort", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10553,7 +10553,7 @@ } }, { - "HashCode": -485377866, + "HashCode": 629075389, "Kind": "Components.EventHandler", "Name": "onload", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10634,7 +10634,7 @@ } }, { - "HashCode": -17205996, + "HashCode": -1860829320, "Kind": "Components.EventHandler", "Name": "onloadend", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10715,7 +10715,7 @@ } }, { - "HashCode": 40277468, + "HashCode": 1193034726, "Kind": "Components.EventHandler", "Name": "onprogress", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10796,7 +10796,7 @@ } }, { - "HashCode": -1837097645, + "HashCode": 1644695073, "Kind": "Components.EventHandler", "Name": "onerror", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10877,7 +10877,7 @@ } }, { - "HashCode": 89193520, + "HashCode": -1684650356, "Kind": "Components.EventHandler", "Name": "onactivate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -10958,7 +10958,7 @@ } }, { - "HashCode": 1476863362, + "HashCode": -255191278, "Kind": "Components.EventHandler", "Name": "onbeforeactivate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11039,7 +11039,7 @@ } }, { - "HashCode": -1572731421, + "HashCode": 922116160, "Kind": "Components.EventHandler", "Name": "onbeforedeactivate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11120,7 +11120,7 @@ } }, { - "HashCode": 1052227238, + "HashCode": 329293209, "Kind": "Components.EventHandler", "Name": "ondeactivate", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11201,7 +11201,7 @@ } }, { - "HashCode": -659240601, + "HashCode": 937798119, "Kind": "Components.EventHandler", "Name": "onended", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11282,7 +11282,7 @@ } }, { - "HashCode": 697365307, + "HashCode": -27982180, "Kind": "Components.EventHandler", "Name": "onfullscreenchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11363,7 +11363,7 @@ } }, { - "HashCode": -1714782794, + "HashCode": -480652499, "Kind": "Components.EventHandler", "Name": "onfullscreenerror", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11444,7 +11444,7 @@ } }, { - "HashCode": 2114339209, + "HashCode": 1780172528, "Kind": "Components.EventHandler", "Name": "onloadeddata", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11525,7 +11525,7 @@ } }, { - "HashCode": 1642862632, + "HashCode": 164078542, "Kind": "Components.EventHandler", "Name": "onloadedmetadata", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11606,7 +11606,7 @@ } }, { - "HashCode": 1865143040, + "HashCode": -863939857, "Kind": "Components.EventHandler", "Name": "onpointerlockchange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11687,7 +11687,7 @@ } }, { - "HashCode": 662381547, + "HashCode": -964943418, "Kind": "Components.EventHandler", "Name": "onpointerlockerror", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11768,7 +11768,7 @@ } }, { - "HashCode": -1537996751, + "HashCode": -527300572, "Kind": "Components.EventHandler", "Name": "onreadystatechange", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11849,7 +11849,7 @@ } }, { - "HashCode": 300605615, + "HashCode": -1566824968, "Kind": "Components.EventHandler", "Name": "onscroll", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -11930,7 +11930,7 @@ } }, { - "HashCode": -1396122925, + "HashCode": -2036738953, "Kind": "Components.EventHandler", "Name": "ontoggle", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -12011,7 +12011,7 @@ } }, { - "HashCode": -1085978373, + "HashCode": -428749052, "Kind": "Components.Splat", "Name": "Attributes", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -12050,7 +12050,7 @@ } }, { - "HashCode": -241815969, + "HashCode": 1528854954, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.Razor.TagHelpers.UrlResolutionTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.Razor", @@ -12365,7 +12365,7 @@ } }, { - "HashCode": -608262944, + "HashCode": 127009552, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.AnchorTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -12562,7 +12562,7 @@ } }, { - "HashCode": 1156617958, + "HashCode": 1772772585, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.CacheTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -12689,7 +12689,7 @@ } }, { - "HashCode": -994705734, + "HashCode": 838891857, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ComponentTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -12744,7 +12744,7 @@ } }, { - "HashCode": -493696211, + "HashCode": -1206956972, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.DistributedCacheTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -12876,7 +12876,7 @@ } }, { - "HashCode": -1943106180, + "HashCode": -1008692163, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.EnvironmentTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -12922,7 +12922,7 @@ } }, { - "HashCode": -236923252, + "HashCode": -500351036, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormActionTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13339,7 +13339,7 @@ } }, { - "HashCode": 903498230, + "HashCode": -1511857815, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.FormTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13441,7 +13441,7 @@ } }, { - "HashCode": 1361290777, + "HashCode": -957687051, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ImageTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13487,7 +13487,7 @@ } }, { - "HashCode": 982235731, + "HashCode": -88595354, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.InputTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13557,7 +13557,7 @@ } }, { - "HashCode": -1392305630, + "HashCode": 2010582772, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LabelTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13590,7 +13590,7 @@ } }, { - "HashCode": -1362178368, + "HashCode": 1562768187, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.LinkTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13786,7 +13786,7 @@ } }, { - "HashCode": -303689003, + "HashCode": -1538690160, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.OptionTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13814,7 +13814,7 @@ } }, { - "HashCode": -1182499639, + "HashCode": 589162261, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PartialTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13895,7 +13895,7 @@ } }, { - "HashCode": -909318691, + "HashCode": 202670661, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.PersistComponentStateTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -13924,7 +13924,7 @@ } }, { - "HashCode": -1060612909, + "HashCode": 113881596, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ScriptTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -14077,7 +14077,7 @@ } }, { - "HashCode": -355607171, + "HashCode": -2046681413, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.SelectTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -14136,7 +14136,7 @@ } }, { - "HashCode": 2062527807, + "HashCode": 1410096142, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.TextAreaTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -14178,7 +14178,7 @@ } }, { - "HashCode": 2080624529, + "HashCode": -2022596210, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationMessageTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -14211,7 +14211,7 @@ } }, { - "HashCode": 1168343838, + "HashCode": 1198454564, "Kind": "ITagHelper", "Name": "Microsoft.AspNetCore.Mvc.TagHelpers.ValidationSummaryTagHelper", "AssemblyName": "Microsoft.AspNetCore.Mvc.TagHelpers", @@ -14245,7 +14245,7 @@ } }, { - "HashCode": 1675359837, + "HashCode": 1409300845, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14314,7 +14314,7 @@ } }, { - "HashCode": -409021667, + "HashCode": 1825618645, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14392,7 +14392,7 @@ } }, { - "HashCode": -1788927673, + "HashCode": 988392530, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14470,7 +14470,7 @@ } }, { - "HashCode": -720563077, + "HashCode": -1573644711, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14554,7 +14554,7 @@ } }, { - "HashCode": 973669985, + "HashCode": 1917367184, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14638,7 +14638,7 @@ } }, { - "HashCode": 778335817, + "HashCode": 1627273742, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14722,7 +14722,7 @@ } }, { - "HashCode": 1015335966, + "HashCode": 232868688, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14806,7 +14806,7 @@ } }, { - "HashCode": -1765612136, + "HashCode": 2042147760, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14890,7 +14890,7 @@ } }, { - "HashCode": 751900837, + "HashCode": 736335727, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -14974,7 +14974,7 @@ } }, { - "HashCode": 1191935304, + "HashCode": 782052995, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -15058,7 +15058,7 @@ } }, { - "HashCode": 1834699957, + "HashCode": 1186219934, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -15142,7 +15142,7 @@ } }, { - "HashCode": 1323262010, + "HashCode": 959294274, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -15226,7 +15226,7 @@ } }, { - "HashCode": -532652949, + "HashCode": 1798707070, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -15310,7 +15310,7 @@ } }, { - "HashCode": 1025465859, + "HashCode": 127752135, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -15394,7 +15394,7 @@ } }, { - "HashCode": -446274977, + "HashCode": 598677460, "Kind": "Components.Bind", "Name": "Bind_value", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -15478,7 +15478,7 @@ } }, { - "HashCode": 847738599, + "HashCode": -1721329414, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -15556,7 +15556,7 @@ } }, { - "HashCode": 2057453545, + "HashCode": 1693916026, "Kind": "Components.Bind", "Name": "Bind", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -15634,7 +15634,7 @@ } }, { - "HashCode": 2040153355, + "HashCode": 1750556603, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -15675,7 +15675,7 @@ } }, { - "HashCode": 1331914075, + "HashCode": -1682568934, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputCheckbox", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -15717,7 +15717,7 @@ } }, { - "HashCode": 1220110910, + "HashCode": 1866629354, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -15758,7 +15758,7 @@ } }, { - "HashCode": -868045340, + "HashCode": 369092772, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputDate", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -15800,7 +15800,7 @@ } }, { - "HashCode": 1483100119, + "HashCode": -614284288, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -15841,7 +15841,7 @@ } }, { - "HashCode": -148520049, + "HashCode": -671444652, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputNumber", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -15883,7 +15883,7 @@ } }, { - "HashCode": 637297726, + "HashCode": -477757519, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -15924,7 +15924,7 @@ } }, { - "HashCode": -321769879, + "HashCode": -768113042, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputRadioGroup", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -15966,7 +15966,7 @@ } }, { - "HashCode": -1150522795, + "HashCode": -1774535476, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -16007,7 +16007,7 @@ } }, { - "HashCode": -1287348628, + "HashCode": 2029809674, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputSelect", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -16049,7 +16049,7 @@ } }, { - "HashCode": -1459218317, + "HashCode": 1313680904, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -16090,7 +16090,7 @@ } }, { - "HashCode": -1320041937, + "HashCode": 416073747, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputText", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -16132,7 +16132,7 @@ } }, { - "HashCode": 808152483, + "HashCode": -48558185, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -16173,7 +16173,7 @@ } }, { - "HashCode": -911648998, + "HashCode": -1993297330, "Kind": "Components.Bind", "Name": "Microsoft.AspNetCore.Components.Forms.InputTextArea", "AssemblyName": "Microsoft.AspNetCore.Components.Web", @@ -16215,7 +16215,7 @@ } }, { - "HashCode": -1265904935, + "HashCode": 827374641, "Kind": "Components.Ref", "Name": "Ref", "AssemblyName": "Microsoft.AspNetCore.Components", @@ -16254,7 +16254,7 @@ } }, { - "HashCode": -1425747662, + "HashCode": 363864427, "Kind": "Components.Key", "Name": "Key", "AssemblyName": "Microsoft.AspNetCore.Components", diff --git a/obj/Debug/net6.0/ref/Rocket_Elevators_Rest_API.dll b/obj/Debug/net6.0/ref/Rocket_Elevators_Rest_API.dll index 39face5..4d882d9 100644 Binary files a/obj/Debug/net6.0/ref/Rocket_Elevators_Rest_API.dll and b/obj/Debug/net6.0/ref/Rocket_Elevators_Rest_API.dll differ diff --git a/obj/Debug/net6.0/refint/Rocket_Elevators_Rest_API.dll b/obj/Debug/net6.0/refint/Rocket_Elevators_Rest_API.dll index 39face5..4d882d9 100644 Binary files a/obj/Debug/net6.0/refint/Rocket_Elevators_Rest_API.dll and b/obj/Debug/net6.0/refint/Rocket_Elevators_Rest_API.dll differ diff --git a/obj/Release/net6.0/Rocket_Elevators_Rest_API.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net6.0/Rocket_Elevators_Rest_API.GeneratedMSBuildEditorConfig.editorconfig index 1b0eae6..1b6f06a 100644 --- a/obj/Release/net6.0/Rocket_Elevators_Rest_API.GeneratedMSBuildEditorConfig.editorconfig +++ b/obj/Release/net6.0/Rocket_Elevators_Rest_API.GeneratedMSBuildEditorConfig.editorconfig @@ -9,9 +9,9 @@ build_property.EnforceExtendedAnalyzerRules = build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = Rocket_Elevators_Rest_API build_property.RootNamespace = Rocket_Elevators_Rest_API -build_property.ProjectDir = C:\Users\caroj\Documents\Codeboxx\repos\Rocket_Elevators_RestAPI\Rocket_Elevators_Rest_API\ +build_property.ProjectDir = C:\Users\yasmi\source\repos\RESTAPI\ build_property.RazorLangVersion = 6.0 build_property.SupportLocalizedComponentNames = build_property.GenerateRazorMetadataSourceChecksumAttributes = -build_property.MSBuildProjectDirectory = C:\Users\caroj\Documents\Codeboxx\repos\Rocket_Elevators_RestAPI\Rocket_Elevators_Rest_API +build_property.MSBuildProjectDirectory = C:\Users\yasmi\source\repos\RESTAPI build_property._RazorSourceGeneratorDebug = diff --git a/obj/Release/net6.0/Rocket_Elevators_Rest_API.assets.cache b/obj/Release/net6.0/Rocket_Elevators_Rest_API.assets.cache index f4812db..6fb1a7c 100644 Binary files a/obj/Release/net6.0/Rocket_Elevators_Rest_API.assets.cache and b/obj/Release/net6.0/Rocket_Elevators_Rest_API.assets.cache differ diff --git a/obj/Release/net6.0/Rocket_Elevators_Rest_API.csproj.AssemblyReference.cache b/obj/Release/net6.0/Rocket_Elevators_Rest_API.csproj.AssemblyReference.cache index 1f3de7a..aefeec8 100644 Binary files a/obj/Release/net6.0/Rocket_Elevators_Rest_API.csproj.AssemblyReference.cache and b/obj/Release/net6.0/Rocket_Elevators_Rest_API.csproj.AssemblyReference.cache differ diff --git a/obj/Rocket_Elevators_Rest_API.csproj.nuget.dgspec.json b/obj/Rocket_Elevators_Rest_API.csproj.nuget.dgspec.json index 732eccd..8519aa9 100644 --- a/obj/Rocket_Elevators_Rest_API.csproj.nuget.dgspec.json +++ b/obj/Rocket_Elevators_Rest_API.csproj.nuget.dgspec.json @@ -1,25 +1,32 @@ { "format": 1, "restore": { - "C:\\Users\\Michael\\OneDrive\\Bureau\\Rocket_Elevators_RestAPI\\Rocket_Elevators_Rest_API.csproj": {} + "C:\\Users\\yasmi\\source\\repos\\RESTAPI\\Rocket_Elevators_Rest_API.csproj": {} }, "projects": { - "C:\\Users\\Michael\\OneDrive\\Bureau\\Rocket_Elevators_RestAPI\\Rocket_Elevators_Rest_API.csproj": { + "C:\\Users\\yasmi\\source\\repos\\RESTAPI\\Rocket_Elevators_Rest_API.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Michael\\OneDrive\\Bureau\\Rocket_Elevators_RestAPI\\Rocket_Elevators_Rest_API.csproj", + "projectUniqueName": "C:\\Users\\yasmi\\source\\repos\\RESTAPI\\Rocket_Elevators_Rest_API.csproj", "projectName": "Rocket_Elevators_Rest_API", - "projectPath": "C:\\Users\\Michael\\OneDrive\\Bureau\\Rocket_Elevators_RestAPI\\Rocket_Elevators_Rest_API.csproj", - "packagesPath": "C:\\Users\\Michael\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Michael\\OneDrive\\Bureau\\Rocket_Elevators_RestAPI\\obj\\", + "projectPath": "C:\\Users\\yasmi\\source\\repos\\RESTAPI\\Rocket_Elevators_Rest_API.csproj", + "packagesPath": "C:\\Users\\yasmi\\.nuget\\packages\\", + "outputPath": "C:\\Users\\yasmi\\source\\repos\\RESTAPI\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\Michael\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\yasmi\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -38,6 +45,10 @@ "net6.0": { "targetAlias": "net6.0", "dependencies": { + "MySql.Data": { + "target": "Package", + "version": "[8.0.31, )" + }, "Pomelo.EntityFrameworkCore.MySql.Design": { "target": "Package", "version": "[1.1.2, )" @@ -70,7 +81,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.402\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json" } } } diff --git a/obj/Rocket_Elevators_Rest_API.csproj.nuget.g.props b/obj/Rocket_Elevators_Rest_API.csproj.nuget.g.props index 64ee8a4..74c38b5 100644 --- a/obj/Rocket_Elevators_Rest_API.csproj.nuget.g.props +++ b/obj/Rocket_Elevators_Rest_API.csproj.nuget.g.props @@ -5,12 +5,13 @@ NuGet $(MSBuildThisFileDirectory)project.assets.json $(UserProfile)\.nuget\packages\ - C:\Users\Michael\.nuget\packages\ + C:\Users\yasmi\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.3.1 + 6.4.0 - + + @@ -18,6 +19,6 @@ - C:\Users\Michael\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0 + C:\Users\yasmi\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0 \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json index f3a515e..01844af 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -2,6 +2,68 @@ "version": 3, "targets": { "net6.0": { + "Google.Protobuf/3.19.4": { + "type": "package", + "compile": { + "lib/net5.0/Google.Protobuf.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "related": ".pdb;.xml" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "related": ".xml" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "compile": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "related": ".xml" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "related": ".xml" + } + } + }, "Microsoft.EntityFrameworkCore/6.0.7": { "type": "package", "dependencies": { @@ -272,7 +334,7 @@ "buildTransitive/netcoreapp3.1/_._": {} } }, - "Microsoft.NETCore.Platforms/1.1.0": { + "Microsoft.NETCore.Platforms/3.1.0": { "type": "package", "compile": { "lib/netstandard1.0/_._": {} @@ -316,6 +378,53 @@ } } }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0" + }, + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "MySql.Data/8.0.31": { + "type": "package", + "dependencies": { + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "Portable.BouncyCastle": "1.9.0", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "4.4.1", + "System.Runtime.CompilerServices.Unsafe": "5.0.0", + "System.Security.Permissions": "4.7.0", + "System.Text.Encoding.CodePages": "4.4.0" + }, + "compile": { + "lib/net6.0/MySql.Data.dll": { + "related": ".xml" + }, + "lib/net6.0/ZstdNet.dll": {} + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "related": ".xml" + }, + "lib/net6.0/ZstdNet.dll": {} + } + }, "MySqlConnector/2.1.2": { "type": "package", "compile": { @@ -435,6 +544,19 @@ "build/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.Json.Microsoft.targets": {} } }, + "Portable.BouncyCastle/1.9.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "related": ".xml" + } + } + }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "type": "package", "runtimeTargets": { @@ -686,20 +808,13 @@ "lib/netstandard1.6/System.AppContext.dll": {} } }, - "System.Buffers/4.3.0": { + "System.Buffers/4.5.1": { "type": "package", - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - }, "compile": { - "lib/netstandard1.1/_._": {} + "ref/netcoreapp2.0/_._": {} }, "runtime": { - "lib/netstandard1.1/System.Buffers.dll": {} + "lib/netcoreapp2.0/_._": {} } }, "System.Collections/4.3.0": { @@ -757,6 +872,20 @@ "buildTransitive/netcoreapp3.1/_._": {} } }, + "System.Configuration.ConfigurationManager/4.4.1": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "4.4.0" + }, + "compile": { + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": {} + } + }, "System.Console/4.3.0": { "type": "package", "dependencies": { @@ -830,6 +959,31 @@ } } }, + "System.Drawing.Common/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "Microsoft.Win32.SystemEvents": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Drawing.Common.dll": {} + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "System.Globalization/4.3.0": { "type": "package", "dependencies": { @@ -1035,6 +1189,15 @@ "lib/netstandard1.6/System.Linq.Expressions.dll": {} } }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, "System.Net.Http/4.3.0": { "type": "package", "dependencies": { @@ -1365,6 +1528,29 @@ "lib/netstandard1.3/System.Runtime.Numerics.dll": {} } }, + "System.Security.AccessControl/4.7.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "3.1.0", + "System.Security.Principal.Windows": "4.7.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "System.Security.Cryptography.Algorithms/4.3.0": { "type": "package", "dependencies": { @@ -1541,6 +1727,23 @@ "lib/netstandard1.3/System.Security.Cryptography.Primitives.dll": {} } }, + "System.Security.Cryptography.ProtectedData/4.4.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "System.Security.Cryptography.X509Certificates/4.3.0": { "type": "package", "dependencies": { @@ -1586,6 +1789,46 @@ } } }, + "System.Security.Permissions/4.7.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "4.7.0", + "System.Windows.Extensions": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Permissions.dll": { + "related": ".xml" + } + } + }, + "System.Security.Principal.Windows/4.7.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "System.Text.Encoding/4.3.0": { "type": "package", "dependencies": { @@ -1599,6 +1842,26 @@ } } }, + "System.Text.Encoding.CodePages/4.4.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "2.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "System.Text.Encoding.Extensions/4.3.0": { "type": "package", "dependencies": { @@ -1729,6 +1992,28 @@ } } }, + "System.Windows.Extensions/4.7.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "4.7.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, "System.Xml.ReaderWriter/4.3.0": { "type": "package", "dependencies": { @@ -1785,6 +2070,88 @@ } }, "libraries": { + "Google.Protobuf/3.19.4": { + "sha512": "fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "type": "package", + "path": "google.protobuf/3.19.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "google.protobuf.3.19.4.nupkg.sha512", + "google.protobuf.nuspec", + "lib/net45/Google.Protobuf.dll", + "lib/net45/Google.Protobuf.pdb", + "lib/net45/Google.Protobuf.xml", + "lib/net5.0/Google.Protobuf.dll", + "lib/net5.0/Google.Protobuf.pdb", + "lib/net5.0/Google.Protobuf.xml", + "lib/netstandard1.1/Google.Protobuf.dll", + "lib/netstandard1.1/Google.Protobuf.pdb", + "lib/netstandard1.1/Google.Protobuf.xml", + "lib/netstandard2.0/Google.Protobuf.dll", + "lib/netstandard2.0/Google.Protobuf.pdb", + "lib/netstandard2.0/Google.Protobuf.xml" + ] + }, + "K4os.Compression.LZ4/1.2.6": { + "sha512": "4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "type": "package", + "path": "k4os.compression.lz4/1.2.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.1.2.6.nupkg.sha512", + "k4os.compression.lz4.nuspec", + "lib/net45/K4os.Compression.LZ4.dll", + "lib/net45/K4os.Compression.LZ4.xml", + "lib/net46/K4os.Compression.LZ4.dll", + "lib/net46/K4os.Compression.LZ4.xml", + "lib/netstandard1.6/K4os.Compression.LZ4.dll", + "lib/netstandard1.6/K4os.Compression.LZ4.xml", + "lib/netstandard2.0/K4os.Compression.LZ4.dll", + "lib/netstandard2.0/K4os.Compression.LZ4.xml" + ] + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "sha512": "5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "type": "package", + "path": "k4os.compression.lz4.streams/1.2.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.compression.lz4.streams.1.2.6.nupkg.sha512", + "k4os.compression.lz4.streams.nuspec", + "lib/net45/K4os.Compression.LZ4.Streams.dll", + "lib/net45/K4os.Compression.LZ4.Streams.xml", + "lib/net46/K4os.Compression.LZ4.Streams.dll", + "lib/net46/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard1.6/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard1.6/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard2.0/K4os.Compression.LZ4.Streams.xml", + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll", + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.xml" + ] + }, + "K4os.Hash.xxHash/1.0.6": { + "sha512": "jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "type": "package", + "path": "k4os.hash.xxhash/1.0.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "k4os.hash.xxhash.1.0.6.nupkg.sha512", + "k4os.hash.xxhash.nuspec", + "lib/net45/K4os.Hash.xxHash.dll", + "lib/net45/K4os.Hash.xxHash.xml", + "lib/net46/K4os.Hash.xxHash.dll", + "lib/net46/K4os.Hash.xxHash.xml", + "lib/netstandard1.6/K4os.Hash.xxHash.dll", + "lib/netstandard1.6/K4os.Hash.xxHash.xml", + "lib/netstandard2.0/K4os.Hash.xxHash.dll", + "lib/netstandard2.0/K4os.Hash.xxHash.xml" + ] + }, "Microsoft.EntityFrameworkCore/6.0.7": { "sha512": "9BsvGSpTzxvqnxH19wLBFivK5TzWmsHZQc/1cQ4b2e+k85aIG9R4FYewQLHZdPrAxNQImXjTyW5nRI3s1rpt6A==", "type": "package", @@ -2125,19 +2492,21 @@ "useSharedDesignerContext.txt" ] }, - "Microsoft.NETCore.Platforms/1.1.0": { - "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "Microsoft.NETCore.Platforms/3.1.0": { + "sha512": "z7aeg8oHln2CuNulfhiLYxCVMPEwBl3rzicjvIX+4sUuCwvXw5oXQEtbiU2c0z4qYL5L3Kmx0mMA/+t/SbY67w==", "type": "package", - "path": "microsoft.netcore.platforms/1.1.0", + "path": "microsoft.netcore.platforms/3.1.0", "files": [ ".nupkg.metadata", ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", "lib/netstandard1.0/_._", - "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.3.1.0.nupkg.sha512", "microsoft.netcore.platforms.nuspec", - "runtime.json" + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" ] }, "Microsoft.NETCore.Targets/1.1.0": { @@ -2210,6 +2579,67 @@ "ref/xamarinwatchos10/_._" ] }, + "Microsoft.Win32.SystemEvents/4.7.0": { + "sha512": "mtVirZr++rq+XCDITMUdnETD59XoeMxSpLRIII7JRI6Yj0LEDiO1pPn0ktlnIj12Ix8bfvQqQDMMIF9wC98oCA==", + "type": "package", + "path": "microsoft.win32.systemevents/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/Microsoft.Win32.SystemEvents.dll", + "lib/net461/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "ref/net461/Microsoft.Win32.SystemEvents.dll", + "ref/net461/Microsoft.Win32.SystemEvents.xml", + "ref/net472/Microsoft.Win32.SystemEvents.dll", + "ref/net472/Microsoft.Win32.SystemEvents.xml", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "ref/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp2.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/netcoreapp3.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "MySql.Data/8.0.31": { + "sha512": "ZVcctmag6cX0DtDxWh3fhBlSdZfGHKIUIodl7QtjZKupSgbCT0X+bO1Faw/NfUR2VfoxB/L9WzLfeCvki65qVg==", + "type": "package", + "path": "mysql.data/8.0.31", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net452/MySql.Data.dll", + "lib/net452/MySql.Data.xml", + "lib/net452/ZstdNet.dll", + "lib/net48/MySql.Data.dll", + "lib/net48/MySql.Data.xml", + "lib/net48/ZstdNet.dll", + "lib/net5.0/MySql.Data.dll", + "lib/net5.0/MySql.Data.xml", + "lib/net5.0/ZstdNet.dll", + "lib/net6.0/MySql.Data.dll", + "lib/net6.0/MySql.Data.xml", + "lib/net6.0/ZstdNet.dll", + "lib/net7.0/MySql.Data.dll", + "lib/net7.0/MySql.Data.xml", + "lib/net7.0/ZstdNet.dll", + "lib/netstandard2.0/MySql.Data.dll", + "lib/netstandard2.0/MySql.Data.xml", + "lib/netstandard2.0/ZstdNet.dll", + "lib/netstandard2.1/MySql.Data.dll", + "lib/netstandard2.1/MySql.Data.xml", + "lib/netstandard2.1/ZstdNet.dll", + "mysql.data.8.0.31.nupkg.sha512", + "mysql.data.nuspec" + ] + }, "MySqlConnector/2.1.2": { "sha512": "JVokQTUNN3WHAu9Vw8ieeq1dXTFokJiig5P0VJ4f439UxRrsPo6SaVWC8Zdm6mkPeQFhZ0/9afdWa02EY/1j/w==", "type": "package", @@ -2294,6 +2724,21 @@ "pomelo.entityframeworkcore.mysql.json.microsoft.nuspec" ] }, + "Portable.BouncyCastle/1.9.0": { + "sha512": "eZZBCABzVOek+id9Xy04HhmgykF0wZg9wpByzrWN7q8qEI0Qen9b7tfd7w8VA3dOeesumMG7C5ZPy0jk7PSRHw==", + "type": "package", + "path": "portable.bouncycastle/1.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net40/BouncyCastle.Crypto.dll", + "lib/net40/BouncyCastle.Crypto.xml", + "lib/netstandard2.0/BouncyCastle.Crypto.dll", + "lib/netstandard2.0/BouncyCastle.Crypto.xml", + "portable.bouncycastle.1.9.0.nupkg.sha512", + "portable.bouncycastle.nuspec" + ] + }, "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { "sha512": "HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", "type": "package", @@ -2636,19 +3081,35 @@ "system.appcontext.nuspec" ] }, - "System.Buffers/4.3.0": { - "sha512": "ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "System.Buffers/4.5.1": { + "sha512": "Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", "type": "package", - "path": "system.buffers/4.3.0", + "path": "system.buffers/4.5.1", "files": [ ".nupkg.metadata", ".signature.p7s", - "ThirdPartyNotices.txt", - "dotnet_library_license.txt", - "lib/netstandard1.1/.xml", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Buffers.dll", + "lib/net461/System.Buffers.xml", + "lib/netcoreapp2.0/_._", "lib/netstandard1.1/System.Buffers.dll", - "system.buffers.4.3.0.nupkg.sha512", - "system.buffers.nuspec" + "lib/netstandard1.1/System.Buffers.xml", + "lib/netstandard2.0/System.Buffers.dll", + "lib/netstandard2.0/System.Buffers.xml", + "lib/uap10.0.16299/_._", + "ref/net45/System.Buffers.dll", + "ref/net45/System.Buffers.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.1/System.Buffers.dll", + "ref/netstandard1.1/System.Buffers.xml", + "ref/netstandard2.0/System.Buffers.dll", + "ref/netstandard2.0/System.Buffers.xml", + "ref/uap10.0.16299/_._", + "system.buffers.4.5.1.nupkg.sha512", + "system.buffers.nuspec", + "useSharedDesignerContext.txt", + "version.txt" ] }, "System.Collections/4.3.0": { @@ -2810,6 +3271,27 @@ "useSharedDesignerContext.txt" ] }, + "System.Configuration.ConfigurationManager/4.4.1": { + "sha512": "jz3TWKMAeuDEyrPCK5Jyt4bzQcmzUIMcY9Ud6PkElFxTfnsihV+9N/UCqvxe1z5gc7jMYAnj7V1COMS9QKIuHQ==", + "type": "package", + "path": "system.configuration.configurationmanager/4.4.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.dll", + "ref/net461/System.Configuration.ConfigurationManager.xml", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "ref/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.4.4.1.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Console/4.3.0": { "sha512": "DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", "type": "package", @@ -3088,6 +3570,45 @@ "system.diagnostics.tracing.nuspec" ] }, + "System.Drawing.Common/4.7.0": { + "sha512": "v+XbyYHaZjDfn0ENmJEV1VYLgGgCTx1gnfOBcppowbpOAriglYgGCvFCPr2EEZyBvXlpxbEsTwkOlInl107ahA==", + "type": "package", + "path": "system.drawing.common/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net461/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.dll", + "ref/netcoreapp3.0/System.Drawing.Common.xml", + "ref/netstandard2.0/System.Drawing.Common.dll", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/unix/lib/netcoreapp3.0/System.Drawing.Common.xml", + "runtimes/win/lib/netcoreapp2.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.dll", + "runtimes/win/lib/netcoreapp3.0/System.Drawing.Common.xml", + "system.drawing.common.4.7.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Globalization/4.3.0": { "sha512": "kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", "type": "package", @@ -3659,6 +4180,29 @@ "system.linq.expressions.nuspec" ] }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Net.Http/4.3.0": { "sha512": "sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", "type": "package", @@ -4781,6 +5325,52 @@ "system.runtime.numerics.nuspec" ] }, + "System.Security.AccessControl/4.7.0": { + "sha512": "JECvTt5aFF3WT3gHpfofL2MNNP6v84sxtXxpqhLBCcDRzqsPBmHhQ6shv4DwwN2tRlzsUxtb3G9M3763rbXKDg==", + "type": "package", + "path": "system.security.accesscontrol/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.4.7.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Security.Cryptography.Algorithms/4.3.0": { "sha512": "W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", "type": "package", @@ -4968,6 +5558,47 @@ "system.security.cryptography.primitives.nuspec" ] }, + "System.Security.Cryptography.ProtectedData/4.4.0": { + "sha512": "cJV7ScGW7EhatRsjehfvvYVBvtiSMKgN8bOVI0bQhnF5bU7vnHVIsH49Kva7i7GWaWYvmEzkYVk1TC+gZYBEog==", + "type": "package", + "path": "system.security.cryptography.protecteddata/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.ProtectedData.dll", + "lib/net461/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.dll", + "ref/net461/System.Security.Cryptography.ProtectedData.xml", + "ref/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "ref/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard1.3/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "system.security.cryptography.protecteddata.4.4.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Security.Cryptography.X509Certificates/4.3.0": { "sha512": "t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", "type": "package", @@ -5024,6 +5655,87 @@ "system.security.cryptography.x509certificates.nuspec" ] }, + "System.Security.Permissions/4.7.0": { + "sha512": "dkOV6YYVBnYRa15/yv004eCGRBVADXw8qRbbNiCn/XpdJSUXkkUeIvdvFHkvnko4CdKMqG8yRHC4ox83LSlMsQ==", + "type": "package", + "path": "system.security.permissions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Security.Permissions.dll", + "lib/net461/System.Security.Permissions.xml", + "lib/netcoreapp3.0/System.Security.Permissions.dll", + "lib/netcoreapp3.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "ref/net461/System.Security.Permissions.dll", + "ref/net461/System.Security.Permissions.xml", + "ref/netcoreapp3.0/System.Security.Permissions.dll", + "ref/netcoreapp3.0/System.Security.Permissions.xml", + "ref/netstandard2.0/System.Security.Permissions.dll", + "ref/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.4.7.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Principal.Windows/4.7.0": { + "sha512": "ojD0PX0XhneCsUbAZVKdb7h/70vyYMDYs85lwEI+LngEONe/17A0cFaRFqZU+sOEidcVswYWikYOQ9PPfjlbtQ==", + "type": "package", + "path": "system.security.principal.windows/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.4.7.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Text.Encoding/4.3.0": { "sha512": "BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", "type": "package", @@ -5092,6 +5804,54 @@ "system.text.encoding.nuspec" ] }, + "System.Text.Encoding.CodePages/4.4.0": { + "sha512": "6JX7ZdaceBiLKLkYt8zJcp4xTJd1uYyXXEkPw6mnlUIjh1gZPIVKPtRXPmY5kLf6DwZmf5YLwR3QUrRonl7l0A==", + "type": "package", + "path": "system.text.encoding.codepages/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netstandard1.3/System.Text.Encoding.CodePages.dll", + "ref/netstandard1.3/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/de/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/es/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/fr/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/it/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ja/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ko/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/ru/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hans/System.Text.Encoding.CodePages.xml", + "ref/netstandard1.3/zh-hant/System.Text.Encoding.CodePages.xml", + "ref/netstandard2.0/System.Text.Encoding.CodePages.dll", + "ref/netstandard2.0/System.Text.Encoding.CodePages.xml", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard1.3/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "system.text.encoding.codepages.4.4.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Text.Encoding.Extensions/4.3.0": { "sha512": "YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", "type": "package", @@ -5536,6 +6296,27 @@ "system.threading.timer.nuspec" ] }, + "System.Windows.Extensions/4.7.0": { + "sha512": "CeWTdRNfRaSh0pm2gDTJFwVaXfTq6Xwv/sA887iwPTneW7oMtMlpvDIO+U60+3GWTB7Aom6oQwv5VZVUhQRdPQ==", + "type": "package", + "path": "system.windows.extensions/4.7.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp3.0/System.Windows.Extensions.dll", + "lib/netcoreapp3.0/System.Windows.Extensions.xml", + "ref/netcoreapp3.0/System.Windows.Extensions.dll", + "ref/netcoreapp3.0/System.Windows.Extensions.xml", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll", + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.xml", + "system.windows.extensions.4.7.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "System.Xml.ReaderWriter/4.3.0": { "sha512": "GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", "type": "package", @@ -5681,30 +6462,39 @@ }, "projectFileDependencyGroups": { "net6.0": [ + "MySql.Data >= 8.0.31", "Pomelo.EntityFrameworkCore.MySql.Design >= 1.1.2", "Pomelo.EntityFrameworkCore.MySql.Json.Microsoft >= 6.0.2", "Swashbuckle.AspNetCore >= 5.6.3" ] }, "packageFolders": { - "C:\\Users\\Michael\\.nuget\\packages\\": {} + "C:\\Users\\yasmi\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Michael\\OneDrive\\Bureau\\Rocket_Elevators_RestAPI\\Rocket_Elevators_Rest_API.csproj", + "projectUniqueName": "C:\\Users\\yasmi\\source\\repos\\RESTAPI\\Rocket_Elevators_Rest_API.csproj", "projectName": "Rocket_Elevators_Rest_API", - "projectPath": "C:\\Users\\Michael\\OneDrive\\Bureau\\Rocket_Elevators_RestAPI\\Rocket_Elevators_Rest_API.csproj", - "packagesPath": "C:\\Users\\Michael\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Michael\\OneDrive\\Bureau\\Rocket_Elevators_RestAPI\\obj\\", + "projectPath": "C:\\Users\\yasmi\\source\\repos\\RESTAPI\\Rocket_Elevators_Rest_API.csproj", + "packagesPath": "C:\\Users\\yasmi\\.nuget\\packages\\", + "outputPath": "C:\\Users\\yasmi\\source\\repos\\RESTAPI\\obj\\", "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], "configFilePaths": [ - "C:\\Users\\Michael\\AppData\\Roaming\\NuGet\\NuGet.Config" + "C:\\Users\\yasmi\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ "net6.0" ], "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, "https://api.nuget.org/v3/index.json": {} }, "frameworks": { @@ -5723,6 +6513,10 @@ "net6.0": { "targetAlias": "net6.0", "dependencies": { + "MySql.Data": { + "target": "Package", + "version": "[8.0.31, )" + }, "Pomelo.EntityFrameworkCore.MySql.Design": { "target": "Package", "version": "[1.1.2, )" @@ -5755,7 +6549,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\6.0.402\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json" } } } diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache index d14389e..c3844d6 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,111 +1,127 @@ { "version": 2, - "dgSpecHash": "c9zFUsfQJZLVFzmpM0gU6GmaISJL1howv1qPpwt1rlzBis1wuAB8NNPQEg3z9hcsphKR0W3hxQ60vHbinRTGbw==", + "dgSpecHash": "0N6EoorD0OFjkW/3xmtalS8/X0mEqcc0VvjOoIHd8w7/GOUS0X8hEpfObeiuzTom41qFxdmmY1ZDazKYVhF38g==", "success": true, - "projectFilePath": "C:\\Users\\Michael\\OneDrive\\Bureau\\Rocket_Elevators_RestAPI\\Rocket_Elevators_Rest_API.csproj", + "projectFilePath": "C:\\Users\\yasmi\\source\\repos\\RESTAPI\\Rocket_Elevators_Rest_API.csproj", "expectedPackageFiles": [ - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.entityframeworkcore\\6.0.7\\microsoft.entityframeworkcore.6.0.7.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\6.0.7\\microsoft.entityframeworkcore.abstractions.6.0.7.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\6.0.7\\microsoft.entityframeworkcore.analyzers.6.0.7.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\6.0.7\\microsoft.entityframeworkcore.relational.6.0.7.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.entityframeworkcore.relational.design\\1.1.1\\microsoft.entityframeworkcore.relational.design.1.1.1.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\6.0.0\\microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.extensions.caching.memory\\6.0.1\\microsoft.extensions.caching.memory.6.0.1.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0\\microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0\\microsoft.extensions.logging.6.0.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0\\microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.extensions.logging.console\\1.1.1\\microsoft.extensions.logging.console.1.1.1.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\mysqlconnector\\2.1.2\\mysqlconnector.2.1.2.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\pomelo.entityframeworkcore.mysql\\6.0.2\\pomelo.entityframeworkcore.mysql.6.0.2.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\pomelo.entityframeworkcore.mysql.design\\1.1.2\\pomelo.entityframeworkcore.mysql.design.1.1.2.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\pomelo.entityframeworkcore.mysql.json.microsoft\\6.0.2\\pomelo.entityframeworkcore.mysql.json.microsoft.6.0.2.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\swashbuckle.aspnetcore\\5.6.3\\swashbuckle.aspnetcore.5.6.3.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.6.3\\swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.6.3\\swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\5.6.3\\swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.buffers\\4.3.0\\system.buffers.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.text.json\\6.0.5\\system.text.json.6.0.5.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", - "C:\\Users\\Michael\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512" + "C:\\Users\\yasmi\\.nuget\\packages\\google.protobuf\\3.19.4\\google.protobuf.3.19.4.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\k4os.compression.lz4\\1.2.6\\k4os.compression.lz4.1.2.6.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\k4os.compression.lz4.streams\\1.2.6\\k4os.compression.lz4.streams.1.2.6.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\k4os.hash.xxhash\\1.0.6\\k4os.hash.xxhash.1.0.6.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.entityframeworkcore\\6.0.7\\microsoft.entityframeworkcore.6.0.7.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\6.0.7\\microsoft.entityframeworkcore.abstractions.6.0.7.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\6.0.7\\microsoft.entityframeworkcore.analyzers.6.0.7.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\6.0.7\\microsoft.entityframeworkcore.relational.6.0.7.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.entityframeworkcore.relational.design\\1.1.1\\microsoft.entityframeworkcore.relational.design.1.1.1.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\6.0.0\\microsoft.extensions.caching.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.extensions.caching.memory\\6.0.1\\microsoft.extensions.caching.memory.6.0.1.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\6.0.0\\microsoft.extensions.configuration.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\6.0.0\\microsoft.extensions.dependencyinjection.6.0.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\6.0.0\\microsoft.extensions.dependencyinjection.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.extensions.logging\\6.0.0\\microsoft.extensions.logging.6.0.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\6.0.0\\microsoft.extensions.logging.abstractions.6.0.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.extensions.logging.console\\1.1.1\\microsoft.extensions.logging.console.1.1.1.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.extensions.options\\6.0.0\\microsoft.extensions.options.6.0.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.extensions.primitives\\6.0.0\\microsoft.extensions.primitives.6.0.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.netcore.platforms\\3.1.0\\microsoft.netcore.platforms.3.1.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\microsoft.win32.systemevents\\4.7.0\\microsoft.win32.systemevents.4.7.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\mysql.data\\8.0.31\\mysql.data.8.0.31.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\mysqlconnector\\2.1.2\\mysqlconnector.2.1.2.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\pomelo.entityframeworkcore.mysql\\6.0.2\\pomelo.entityframeworkcore.mysql.6.0.2.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\pomelo.entityframeworkcore.mysql.design\\1.1.2\\pomelo.entityframeworkcore.mysql.design.1.1.2.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\pomelo.entityframeworkcore.mysql.json.microsoft\\6.0.2\\pomelo.entityframeworkcore.mysql.json.microsoft.6.0.2.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\portable.bouncycastle\\1.9.0\\portable.bouncycastle.1.9.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\swashbuckle.aspnetcore\\5.6.3\\swashbuckle.aspnetcore.5.6.3.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.6.3\\swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.6.3\\swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\5.6.3\\swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.collections.immutable\\6.0.0\\system.collections.immutable.6.0.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.configuration.configurationmanager\\4.4.1\\system.configuration.configurationmanager.4.4.1.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.drawing.common\\4.7.0\\system.drawing.common.4.7.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.security.accesscontrol\\4.7.0\\system.security.accesscontrol.4.7.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.security.cryptography.cng\\4.3.0\\system.security.cryptography.cng.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.security.cryptography.protecteddata\\4.4.0\\system.security.cryptography.protecteddata.4.4.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.security.permissions\\4.7.0\\system.security.permissions.4.7.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.security.principal.windows\\4.7.0\\system.security.principal.windows.4.7.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.text.encoding.codepages\\4.4.0\\system.text.encoding.codepages.4.4.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.text.encodings.web\\6.0.0\\system.text.encodings.web.6.0.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.text.json\\6.0.5\\system.text.json.6.0.5.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.threading.tasks.extensions\\4.3.0\\system.threading.tasks.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.windows.extensions\\4.7.0\\system.windows.extensions.4.7.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\yasmi\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512" ], "logs": [] } \ No newline at end of file