diff --git a/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 b/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 index bce2dd3..ecc9b43 100644 Binary files a/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 and b/.vs/AlfaPrentice/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/AlfaPrentice/v16/.suo b/.vs/AlfaPrentice/v16/.suo index 0f922e9..696b31d 100644 Binary files a/.vs/AlfaPrentice/v16/.suo and b/.vs/AlfaPrentice/v16/.suo differ diff --git a/AlfaPrentice/AlfaPrentice.csproj.user b/AlfaPrentice/AlfaPrentice.csproj.user index 3226be5..f3a4c02 100644 --- a/AlfaPrentice/AlfaPrentice.csproj.user +++ b/AlfaPrentice/AlfaPrentice.csproj.user @@ -2,6 +2,9 @@ AlfaPrentice + MvcControllerWithActionsScaffolder + root/Common/MVC/Controller + 600 ProjectDebugger diff --git a/AlfaPrentice/Controllers/BedrijfController.cs b/AlfaPrentice/Controllers/BedrijfController.cs new file mode 100644 index 0000000..f0d88a4 --- /dev/null +++ b/AlfaPrentice/Controllers/BedrijfController.cs @@ -0,0 +1,53 @@ +using AlfaPrentice.Data; +using AlfaPrentice.Models; +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 + +namespace AlfaPrentice.Controllers +{ + [Route("api/[controller]")] + [ApiController] + public class BedrijfController : ControllerBase + { + //constructor + public readonly AlfaPrenticeContext _context; + public BedrijfController(AlfaPrenticeContext context) + { + _context = context; + } + + //getbedrijf + [HttpGet("{Bedrijf_ID}")] + public async Task> GetBedrijf(int Bedrijf_ID) + { + return await _context.Bedrijf.Where(B => B.Bedrijf_ID == Bedrijf_ID).ToListAsync(); + // return getBedrijf; + } + + // GET: api/ + /* [HttpGet] + public IEnumerable Get() + { + return new string[] { "value1", "value2" }; + } + + // GET api//5 + [HttpGet("{id}")] + public string Get(int id) + { + return "value"; + } + + // POST api/ + [HttpPost] + public void Post([FromBody] string value) + { + }*/ + } +} diff --git a/AlfaPrentice/Startup.cs b/AlfaPrentice/Startup.cs index f4e1c74..bcb4650 100644 --- a/AlfaPrentice/Startup.cs +++ b/AlfaPrentice/Startup.cs @@ -1,7 +1,7 @@ +using AlfaPrentice.Data; using Microsoft.AspNetCore.Builder; using Microsoft.AspNetCore.Hosting; -using Microsoft.AspNetCore.HttpsPolicy; -using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Configuration; using Microsoft.Extensions.DependencyInjection; using Microsoft.Extensions.Hosting; @@ -27,7 +27,7 @@ namespace AlfaPrentice public void ConfigureServices(IServiceCollection services) { services.Configure(Configuration); - services.AddDbContext(options => options.UseMySql(Configuration.GetConnectionString("AlfaPrentice"))); + services.AddDbContext(options => options.UseMySql(Configuration.GetConnectionString("AlfaPrentice"))); services.AddControllers(); services.AddSwaggerGen(c => { diff --git a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.deps.json b/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.deps.json index f3c24b0..7892db6 100644 --- a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.deps.json +++ b/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.deps.json @@ -27,7 +27,14 @@ "dependencies": { "Microsoft.AspNetCore.Authentication.JwtBearer": "5.0.1", "Microsoft.AspNetCore.Authentication.OpenIdConnect": "5.0.1", + "Microsoft.EntityFrameworkCore": "5.0.1", + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Debug": "5.0.0", "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": "1.10.9", + "Microsoft.VisualStudio.Web.CodeGeneration.Design": "5.0.1", + "Newtonsoft.Json": "12.0.3", + "Pomelo.EntityFrameworkCore.MySql": "3.2.4", "Swashbuckle.AspNetCore": "5.6.3", "Microsoft.AspNetCore.Antiforgery": "5.0.0.0", "Microsoft.AspNetCore.Authentication.Abstractions": "5.0.0.0", @@ -58,7 +65,7 @@ "Microsoft.AspNetCore.Hosting.Abstractions": "5.0.0.0", "Microsoft.AspNetCore.Hosting": "5.0.0.0", "Microsoft.AspNetCore.Hosting.Server.Abstractions": "5.0.0.0", - "Microsoft.AspNetCore.Html.Abstractions": "5.0.0.0", + "Microsoft.AspNetCore.Html.Abstractions.Reference": "5.0.0.0", "Microsoft.AspNetCore.Http.Abstractions": "5.0.0.0", "Microsoft.AspNetCore.Http.Connections.Common": "5.0.0.0", "Microsoft.AspNetCore.Http.Connections": "5.0.0.0", @@ -84,8 +91,8 @@ "Microsoft.AspNetCore.Mvc.RazorPages": "5.0.0.0", "Microsoft.AspNetCore.Mvc.TagHelpers": "5.0.0.0", "Microsoft.AspNetCore.Mvc.ViewFeatures": "5.0.0.0", - "Microsoft.AspNetCore.Razor": "5.0.0.0", - "Microsoft.AspNetCore.Razor.Runtime": "5.0.0.0", + "Microsoft.AspNetCore.Razor.Reference": "5.0.0.0", + "Microsoft.AspNetCore.Razor.Runtime.Reference": "5.0.0.0", "Microsoft.AspNetCore.ResponseCaching.Abstractions": "5.0.0.0", "Microsoft.AspNetCore.ResponseCaching": "5.0.0.0", "Microsoft.AspNetCore.ResponseCompression": "5.0.0.0", @@ -107,8 +114,8 @@ "Microsoft.AspNetCore.WebSockets": "5.0.0.0", "Microsoft.AspNetCore.WebUtilities": "5.0.0.0", "Microsoft.CSharp.Reference": "5.0.0.0", - "Microsoft.Extensions.Caching.Abstractions": "5.0.0.0", - "Microsoft.Extensions.Caching.Memory": "5.0.0.0", + "Microsoft.Extensions.Caching.Abstractions.Reference": "5.0.0.0", + "Microsoft.Extensions.Caching.Memory.Reference": "5.0.0.0", "Microsoft.Extensions.Configuration.Abstractions": "5.0.0.0", "Microsoft.Extensions.Configuration.Binder": "5.0.0.0", "Microsoft.Extensions.Configuration.CommandLine": "5.0.0.0", @@ -120,8 +127,7 @@ "Microsoft.Extensions.Configuration.KeyPerFile": "5.0.0.0", "Microsoft.Extensions.Configuration.UserSecrets": "5.0.0.0", "Microsoft.Extensions.Configuration.Xml": "5.0.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0.0", - "Microsoft.Extensions.DependencyInjection": "5.0.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference": "5.0.0.0", "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "5.0.0.0", "Microsoft.Extensions.Diagnostics.HealthChecks": "5.0.0.0", "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0.0", @@ -136,98 +142,98 @@ "Microsoft.Extensions.Identity.Stores": "5.0.0.0", "Microsoft.Extensions.Localization.Abstractions": "5.0.0.0", "Microsoft.Extensions.Localization": "5.0.0.0", - "Microsoft.Extensions.Logging.Abstractions": "5.0.0.0", + "Microsoft.Extensions.Logging.Abstractions.Reference": "5.0.0.0", "Microsoft.Extensions.Logging.Configuration": "5.0.0.0", "Microsoft.Extensions.Logging.Console": "5.0.0.0", - "Microsoft.Extensions.Logging.Debug": "5.0.0.0", - "Microsoft.Extensions.Logging": "5.0.0.0", + "Microsoft.Extensions.Logging.Debug.Reference": "5.0.0.0", + "Microsoft.Extensions.Logging.Reference": "5.0.0.0", "Microsoft.Extensions.Logging.EventLog": "5.0.0.0", "Microsoft.Extensions.Logging.EventSource": "5.0.0.0", "Microsoft.Extensions.Logging.TraceSource": "5.0.0.0", "Microsoft.Extensions.ObjectPool": "5.0.0.0", "Microsoft.Extensions.Options.ConfigurationExtensions": "5.0.0.0", "Microsoft.Extensions.Options.DataAnnotations": "5.0.0.0", - "Microsoft.Extensions.Options": "5.0.0.0", - "Microsoft.Extensions.Primitives": "5.0.0.0", + "Microsoft.Extensions.Options.Reference": "5.0.0.0", + "Microsoft.Extensions.Primitives.Reference": "5.0.0.0", "Microsoft.Extensions.WebEncoders": "5.0.0.0", "Microsoft.JSInterop": "5.0.0.0", "Microsoft.Net.Http.Headers": "5.0.0.0", "Microsoft.VisualBasic.Core": "10.0.6.0", "Microsoft.VisualBasic": "10.0.0.0", - "Microsoft.Win32.Primitives": "5.0.0.0", + "Microsoft.Win32.Primitives.Reference": "5.0.0.0", "Microsoft.Win32.Registry": "5.0.0.0", "mscorlib": "4.0.0.0", "netstandard": "2.1.0.0", - "System.AppContext": "5.0.0.0", - "System.Buffers": "5.0.0.0", - "System.Collections.Concurrent": "5.0.0.0", - "System.Collections": "5.0.0.0", - "System.Collections.Immutable": "5.0.0.0", + "System.AppContext.Reference": "5.0.0.0", + "System.Buffers.Reference": "5.0.0.0", + "System.Collections.Concurrent.Reference": "5.0.0.0", + "System.Collections.Reference": "5.0.0.0", + "System.Collections.Immutable.Reference": "5.0.0.0", "System.Collections.NonGeneric": "5.0.0.0", "System.Collections.Specialized": "5.0.0.0", - "System.ComponentModel.Annotations": "5.0.0.0", + "System.ComponentModel.Annotations.Reference": "5.0.0.0", "System.ComponentModel.DataAnnotations": "4.0.0.0", "System.ComponentModel": "5.0.0.0", "System.ComponentModel.EventBasedAsync": "5.0.0.0", "System.ComponentModel.Primitives": "5.0.0.0", "System.ComponentModel.TypeConverter": "5.0.0.0", "System.Configuration": "4.0.0.0", - "System.Console": "5.0.0.0", + "System.Console.Reference": "5.0.0.0", "System.Core": "4.0.0.0", "System.Data.Common": "5.0.0.0", "System.Data.DataSetExtensions": "4.0.0.0", "System.Data": "4.0.0.0", "System.Diagnostics.Contracts": "5.0.0.0", - "System.Diagnostics.Debug": "5.0.0.0", - "System.Diagnostics.DiagnosticSource": "5.0.0.0", + "System.Diagnostics.Debug.Reference": "5.0.0.0", + "System.Diagnostics.DiagnosticSource.Reference": "5.0.0.0", "System.Diagnostics.EventLog": "5.0.0.0", "System.Diagnostics.FileVersionInfo": "5.0.0.0", "System.Diagnostics.Process": "5.0.0.0", "System.Diagnostics.StackTrace": "5.0.0.0", "System.Diagnostics.TextWriterTraceListener": "5.0.0.0", - "System.Diagnostics.Tools": "5.0.0.0", + "System.Diagnostics.Tools.Reference": "5.0.0.0", "System.Diagnostics.TraceSource": "5.0.0.0", - "System.Diagnostics.Tracing": "5.0.0.0", + "System.Diagnostics.Tracing.Reference": "5.0.0.0", "System": "4.0.0.0", "System.Drawing": "4.0.0.0", "System.Drawing.Primitives": "5.0.0.0", "System.Dynamic.Runtime": "5.0.0.0", "System.Formats.Asn1": "5.0.0.0", - "System.Globalization.Calendars": "5.0.0.0", - "System.Globalization": "5.0.0.0", - "System.Globalization.Extensions": "5.0.0.0", + "System.Globalization.Calendars.Reference": "5.0.0.0", + "System.Globalization.Reference": "5.0.0.0", + "System.Globalization.Extensions.Reference": "5.0.0.0", "System.IO.Compression.Brotli": "5.0.0.0", - "System.IO.Compression": "5.0.0.0", + "System.IO.Compression.Reference": "5.0.0.0", "System.IO.Compression.FileSystem": "4.0.0.0", - "System.IO.Compression.ZipFile": "5.0.0.0", - "System.IO": "5.0.0.0", - "System.IO.FileSystem": "5.0.0.0", + "System.IO.Compression.ZipFile.Reference": "5.0.0.0", + "System.IO.Reference": "5.0.0.0", + "System.IO.FileSystem.Reference": "5.0.0.0", "System.IO.FileSystem.DriveInfo": "5.0.0.0", - "System.IO.FileSystem.Primitives": "5.0.0.0", + "System.IO.FileSystem.Primitives.Reference": "5.0.0.0", "System.IO.FileSystem.Watcher": "5.0.0.0", "System.IO.IsolatedStorage": "5.0.0.0", "System.IO.MemoryMappedFiles": "5.0.0.0", "System.IO.Pipelines": "5.0.0.0", "System.IO.Pipes": "5.0.0.0", "System.IO.UnmanagedMemoryStream": "5.0.0.0", - "System.Linq": "5.0.0.0", - "System.Linq.Expressions": "5.0.0.0", + "System.Linq.Reference": "5.0.0.0", + "System.Linq.Expressions.Reference": "5.0.0.0", "System.Linq.Parallel": "5.0.0.0", "System.Linq.Queryable": "5.0.0.0", - "System.Memory": "5.0.0.0", + "System.Memory.Reference": "5.0.0.0", "System.Net": "4.0.0.0", - "System.Net.Http": "5.0.0.0", + "System.Net.Http.Reference": "5.0.0.0", "System.Net.Http.Json": "5.0.0.0", "System.Net.HttpListener": "5.0.0.0", "System.Net.Mail": "5.0.0.0", "System.Net.NameResolution": "5.0.0.0", "System.Net.NetworkInformation": "5.0.0.0", "System.Net.Ping": "5.0.0.0", - "System.Net.Primitives": "5.0.0.0", + "System.Net.Primitives.Reference": "5.0.0.0", "System.Net.Requests": "5.0.0.0", "System.Net.Security": "5.0.0.0", "System.Net.ServicePoint": "5.0.0.0", - "System.Net.Sockets": "5.0.0.0", + "System.Net.Sockets.Reference": "5.0.0.0", "System.Net.WebClient": "5.0.0.0", "System.Net.WebHeaderCollection": "5.0.0.0", "System.Net.WebProxy": "5.0.0.0", @@ -235,29 +241,29 @@ "System.Net.WebSockets": "5.0.0.0", "System.Numerics": "4.0.0.0", "System.Numerics.Vectors": "5.0.0.0", - "System.ObjectModel": "5.0.0.0", + "System.ObjectModel.Reference": "5.0.0.0", "System.Reflection.DispatchProxy": "5.0.0.0", - "System.Reflection": "5.0.0.0", - "System.Reflection.Emit": "5.0.0.0", - "System.Reflection.Emit.ILGeneration": "5.0.0.0", - "System.Reflection.Emit.Lightweight": "5.0.0.0", - "System.Reflection.Extensions": "5.0.0.0", - "System.Reflection.Metadata": "5.0.0.0", - "System.Reflection.Primitives": "5.0.0.0", - "System.Reflection.TypeExtensions": "5.0.0.0", + "System.Reflection.Reference": "5.0.0.0", + "System.Reflection.Emit.Reference": "5.0.0.0", + "System.Reflection.Emit.ILGeneration.Reference": "5.0.0.0", + "System.Reflection.Emit.Lightweight.Reference": "5.0.0.0", + "System.Reflection.Extensions.Reference": "5.0.0.0", + "System.Reflection.Metadata.Reference": "5.0.0.0", + "System.Reflection.Primitives.Reference": "5.0.0.0", + "System.Reflection.TypeExtensions.Reference": "5.0.0.0", "System.Resources.Reader": "5.0.0.0", - "System.Resources.ResourceManager": "5.0.0.0", + "System.Resources.ResourceManager.Reference": "5.0.0.0", "System.Resources.Writer": "5.0.0.0", - "System.Runtime.CompilerServices.Unsafe": "5.0.0.0", + "System.Runtime.CompilerServices.Unsafe.Reference": "5.0.0.0", "System.Runtime.CompilerServices.VisualC": "5.0.0.0", - "System.Runtime": "5.0.0.0", - "System.Runtime.Extensions": "5.0.0.0", - "System.Runtime.Handles": "5.0.0.0", - "System.Runtime.InteropServices": "5.0.0.0", - "System.Runtime.InteropServices.RuntimeInformation": "5.0.0.0", + "System.Runtime.Reference": "5.0.0.0", + "System.Runtime.Extensions.Reference": "5.0.0.0", + "System.Runtime.Handles.Reference": "5.0.0.0", + "System.Runtime.InteropServices.Reference": "5.0.0.0", + "System.Runtime.InteropServices.RuntimeInformation.Reference": "5.0.0.0", "System.Runtime.Intrinsics": "5.0.0.0", "System.Runtime.Loader": "5.0.0.0", - "System.Runtime.Numerics": "5.0.0.0", + "System.Runtime.Numerics.Reference": "5.0.0.0", "System.Runtime.Serialization": "4.0.0.0", "System.Runtime.Serialization.Formatters": "5.0.0.0", "System.Runtime.Serialization.Json": "5.0.0.0", @@ -265,12 +271,12 @@ "System.Runtime.Serialization.Xml": "5.0.0.0", "System.Security.AccessControl": "5.0.0.0", "System.Security.Claims": "5.0.0.0", - "System.Security.Cryptography.Algorithms": "5.0.0.0", + "System.Security.Cryptography.Algorithms.Reference": "5.0.0.0", "System.Security.Cryptography.Cng.Reference": "5.0.0.0", - "System.Security.Cryptography.Csp": "5.0.0.0", - "System.Security.Cryptography.Encoding": "5.0.0.0", - "System.Security.Cryptography.Primitives": "5.0.0.0", - "System.Security.Cryptography.X509Certificates": "5.0.0.0", + "System.Security.Cryptography.Csp.Reference": "5.0.0.0", + "System.Security.Cryptography.Encoding.Reference": "5.0.0.0", + "System.Security.Cryptography.Primitives.Reference": "5.0.0.0", + "System.Security.Cryptography.X509Certificates.Reference": "5.0.0.0", "System.Security.Cryptography.Xml": "5.0.0.0", "System.Security": "4.0.0.0", "System.Security.Permissions": "5.0.0.0", @@ -279,22 +285,22 @@ "System.Security.SecureString": "5.0.0.0", "System.ServiceModel.Web": "4.0.0.0", "System.ServiceProcess": "4.0.0.0", - "System.Text.Encoding.CodePages": "5.0.0.0", - "System.Text.Encoding": "5.0.0.0", - "System.Text.Encoding.Extensions": "5.0.0.0", - "System.Text.Encodings.Web": "5.0.0.0", + "System.Text.Encoding.CodePages.Reference": "5.0.0.0", + "System.Text.Encoding.Reference": "5.0.0.0", + "System.Text.Encoding.Extensions.Reference": "5.0.0.0", + "System.Text.Encodings.Web.Reference": "5.0.0.0", "System.Text.Json": "5.0.0.0", - "System.Text.RegularExpressions": "5.0.0.0", + "System.Text.RegularExpressions.Reference": "5.0.0.0", "System.Threading.Channels": "5.0.0.0", - "System.Threading": "5.0.0.0", + "System.Threading.Reference": "5.0.0.0", "System.Threading.Overlapped": "5.0.0.0", "System.Threading.Tasks.Dataflow": "5.0.0.0", - "System.Threading.Tasks": "5.0.0.0", - "System.Threading.Tasks.Extensions": "5.0.0.0", + "System.Threading.Tasks.Reference": "5.0.0.0", + "System.Threading.Tasks.Extensions.Reference": "5.0.0.0", "System.Threading.Tasks.Parallel": "5.0.0.0", "System.Threading.Thread": "5.0.0.0", "System.Threading.ThreadPool": "5.0.0.0", - "System.Threading.Timer": "5.0.0.0", + "System.Threading.Timer.Reference": "5.0.0.0", "System.Transactions": "4.0.0.0", "System.Transactions.Local": "5.0.0.0", "System.ValueTuple": "4.0.3.0", @@ -304,9 +310,9 @@ "System.Windows.Extensions": "5.0.0.0", "System.Xml": "4.0.0.0", "System.Xml.Linq": "4.0.0.0", - "System.Xml.ReaderWriter": "5.0.0.0", + "System.Xml.ReaderWriter.Reference": "5.0.0.0", "System.Xml.Serialization": "4.0.0.0", - "System.Xml.XDocument": "5.0.0.0", + "System.Xml.XDocument.Reference": "5.0.0.0", "System.Xml.XmlDocument": "5.0.0.0", "System.Xml.XmlSerializer": "5.0.0.0", "System.Xml.XPath": "5.0.0.0", @@ -320,6 +326,17 @@ "AlfaPrentice.dll": {} } }, + "Humanizer.Core/2.2.0": { + "dependencies": { + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.0/Humanizer.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.0" + } + } + }, "Microsoft.AspNetCore.Authentication.JwtBearer/5.0.1": { "dependencies": { "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.7.1" @@ -348,8 +365,393 @@ "lib/net5.0/Microsoft.AspNetCore.Authentication.OpenIdConnect.dll": {} } }, + "Microsoft.AspNetCore.Html.Abstractions/2.2.0": { + "dependencies": { + "System.Text.Encodings.Web": "4.5.0" + } + }, + "Microsoft.AspNetCore.Razor/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Html.Abstractions": "2.2.0" + } + }, + "Microsoft.AspNetCore.Razor.Language/5.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.52605" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.AspNetCore.Razor.Runtime/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Html.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Razor": "2.2.0" + } + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "4.700.20.21406" + } + }, + "compile": { + "ref/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.0.0": {}, + "Microsoft.CodeAnalysis.Common/3.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.0.0", + "System.Collections.Immutable": "5.0.0", + "System.Memory": "4.5.4", + "System.Reflection.Metadata": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "4.7.1", + "System.Text.Encoding.CodePages": "4.5.1", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "3.8.0.0", + "fileVersion": "3.800.20.56202" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/3.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "3.8.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "3.8.0.0", + "fileVersion": "3.800.20.56202" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/3.8.0": { + "dependencies": { + "Humanizer.Core": "2.2.0", + "Microsoft.CodeAnalysis.CSharp": "3.8.0", + "Microsoft.CodeAnalysis.Common": "3.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "3.8.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "3.8.0.0", + "fileVersion": "3.800.20.56202" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} + } + }, + "Microsoft.CodeAnalysis.Razor/5.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "5.0.0", + "Microsoft.CodeAnalysis.CSharp": "3.8.0", + "Microsoft.CodeAnalysis.Common": "3.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.52605" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/3.8.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.1", + "Microsoft.CodeAnalysis.Common": "3.8.0", + "System.Composition": "1.0.31" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "3.8.0.0", + "fileVersion": "3.800.20.56202" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.CodeAnalysis.Workspaces.dll": {} + } + }, "Microsoft.CSharp/4.5.0": {}, + "Microsoft.EntityFrameworkCore/5.0.1": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "5.0.1", + "Microsoft.EntityFrameworkCore.Analyzers": "5.0.1", + "Microsoft.Extensions.Caching.Memory": "5.0.0", + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.Extensions.Logging": "5.0.0", + "System.Collections.Immutable": "5.0.0", + "System.ComponentModel.Annotations": "5.0.0", + "System.Diagnostics.DiagnosticSource": "5.0.0" + }, + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "5.0.1.0", + "fileVersion": "5.0.120.57509" + } + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.1": { + "runtime": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "5.0.1.0", + "fileVersion": "5.0.120.57509" + } + }, + "compile": { + "lib/netstandard2.1/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.1": {}, + "Microsoft.EntityFrameworkCore.Relational/3.1.8": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "5.0.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "3.1.8.0", + "fileVersion": "3.100.820.42012" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Relational.dll": {} + } + }, "Microsoft.Extensions.ApiDescription.Server/3.0.0": {}, + "Microsoft.Extensions.Caching.Abstractions/5.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "5.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "5.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" + }, + "runtime": { + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "5.0.0.1", + "fileVersion": "5.0.120.57516" + } + }, + "compile": { + "lib/net5.0/Microsoft.Extensions.DependencyInjection.dll": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": {}, + "Microsoft.Extensions.Logging/5.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0", + "Microsoft.Extensions.Options": "5.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": {}, + "Microsoft.Extensions.Logging.Debug/5.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Logging": "5.0.0", + "Microsoft.Extensions.Logging.Abstractions": "5.0.0" + } + }, + "Microsoft.Extensions.Options/5.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0", + "Microsoft.Extensions.Primitives": "5.0.0" + } + }, + "Microsoft.Extensions.Primitives/5.0.0": {}, "Microsoft.IdentityModel.JsonWebTokens/6.7.1": { "dependencies": { "Microsoft.IdentityModel.Tokens": "6.7.1" @@ -421,6 +823,8 @@ "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": {} } }, + "Microsoft.NETCore.Platforms/2.1.2": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, "Microsoft.OpenApi/1.2.3": { "runtime": { "lib/netstandard2.0/Microsoft.OpenApi.dll": { @@ -433,6 +837,296 @@ } }, "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.10.9": {}, + "Microsoft.VisualStudio.Web.CodeGeneration/5.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "5.0.1" + }, + "runtime": { + "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { + "assemblyVersion": "5.0.1.0", + "fileVersion": "5.0.120.60303" + } + }, + "compile": { + "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/5.0.1": { + "dependencies": { + "Newtonsoft.Json": "12.0.3", + "System.Collections.Immutable": "5.0.0" + }, + "runtime": { + "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": { + "assemblyVersion": "5.0.1.0", + "fileVersion": "5.0.120.60303" + } + }, + "compile": { + "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/5.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "5.0.1", + "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "5.0.1", + "Newtonsoft.Json": "12.0.3" + }, + "runtime": { + "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { + "assemblyVersion": "5.0.1.0", + "fileVersion": "5.0.120.60303" + } + }, + "compile": { + "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/5.0.1": { + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "5.0.1" + }, + "runtime": { + "lib/net5.0/dotnet-aspnet-codegenerator-design.dll": { + "assemblyVersion": "5.0.1.0", + "fileVersion": "5.0.120.60303" + } + }, + "runtimeTargets": { + "runtimes/win-arm/lib/net5.0/dotnet-aspnet-codegenerator-design.exe": { + "rid": "win-arm", + "assetType": "runtime", + "fileVersion": "5.0.120.60303" + }, + "runtimes/win-arm64/lib/net5.0/dotnet-aspnet-codegenerator-design.exe": { + "rid": "win-arm64", + "assetType": "runtime", + "fileVersion": "5.0.120.60303" + } + }, + "compile": { + "lib/net5.0/dotnet-aspnet-codegenerator-design.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/5.0.1": { + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration.Core": "5.0.1" + }, + "runtime": { + "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { + "assemblyVersion": "5.0.1.0", + "fileVersion": "5.0.120.60303" + } + }, + "compile": { + "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/5.0.1": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "5.0.0", + "Microsoft.AspNetCore.Razor.Runtime": "2.2.0", + "Microsoft.CodeAnalysis.CSharp": "3.8.0", + "Microsoft.CodeAnalysis.Razor": "5.0.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "5.0.1" + }, + "runtime": { + "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { + "assemblyVersion": "5.0.1.0", + "fileVersion": "5.0.120.60303" + } + }, + "compile": { + "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/5.0.1": { + "dependencies": { + "Microsoft.CodeAnalysis.CSharp.Workspaces": "3.8.0", + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts": "5.0.1", + "Newtonsoft.Json": "12.0.3" + }, + "runtime": { + "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { + "assemblyVersion": "5.0.1.0", + "fileVersion": "5.0.120.60303" + } + }, + "compile": { + "lib/net5.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": {} + } + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/5.0.1": { + "dependencies": { + "Microsoft.VisualStudio.Web.CodeGeneration": "5.0.1" + }, + "runtime": { + "lib/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { + "assemblyVersion": "5.0.1.0", + "fileVersion": "5.0.120.60303" + } + }, + "compile": { + "lib/net5.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": {} + } + }, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "MySqlConnector/0.69.9": { + "runtime": { + "lib/netcoreapp3.0/MySqlConnector.dll": { + "assemblyVersion": "0.69.9.0", + "fileVersion": "0.69.9.0" + } + }, + "compile": { + "lib/netcoreapp3.0/MySqlConnector.dll": {} + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/12.0.3": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "12.0.0.0", + "fileVersion": "12.0.3.23909" + } + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "Pomelo.EntityFrameworkCore.MySql/3.2.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "3.1.8", + "MySqlConnector": "0.69.9", + "Pomelo.JsonObject": "2.2.1" + }, + "runtime": { + "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll": { + "assemblyVersion": "3.2.4.0", + "fileVersion": "3.2.4.0" + } + }, + "compile": { + "lib/netstandard2.0/Pomelo.EntityFrameworkCore.MySql.dll": {} + } + }, + "Pomelo.JsonObject/2.2.1": { + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Newtonsoft.Json": "12.0.3" + }, + "runtime": { + "lib/netstandard2.0/Pomelo.JsonObject.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + }, + "compile": { + "lib/netstandard2.0/Pomelo.JsonObject.dll": {} + } + }, + "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": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, "Swashbuckle.AspNetCore/5.6.3": { "dependencies": { "Microsoft.Extensions.ApiDescription.Server": "3.0.0", @@ -480,6 +1174,234 @@ "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} } }, + "System.AppContext/4.3.0": { + "dependencies": { + "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.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.Immutable/5.0.0": { + "compile": { + "lib/netstandard2.0/System.Collections.Immutable.dll": {} + } + }, + "System.ComponentModel.Annotations/5.0.0": { + "compile": { + "ref/netstandard2.1/System.ComponentModel.Annotations.dll": {} + } + }, + "System.Composition/1.0.31": { + "dependencies": { + "System.Composition.AttributedModel": "1.0.31", + "System.Composition.Convention": "1.0.31", + "System.Composition.Hosting": "1.0.31", + "System.Composition.Runtime": "1.0.31", + "System.Composition.TypedParts": "1.0.31" + } + }, + "System.Composition.AttributedModel/1.0.31": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + }, + "compile": { + "lib/netstandard1.0/System.Composition.AttributedModel.dll": {} + } + }, + "System.Composition.Convention/1.0.31": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.AttributedModel": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Convention.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + }, + "compile": { + "lib/netstandard1.0/System.Composition.Convention.dll": {} + } + }, + "System.Composition.Hosting/1.0.31": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.Runtime": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Hosting.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + }, + "compile": { + "lib/netstandard1.0/System.Composition.Hosting.dll": {} + } + }, + "System.Composition.Runtime/1.0.31": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.Runtime.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + }, + "compile": { + "lib/netstandard1.0/System.Composition.Runtime.dll": {} + } + }, + "System.Composition.TypedParts/1.0.31": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Composition.AttributedModel": "1.0.31", + "System.Composition.Hosting": "1.0.31", + "System.Composition.Runtime": "1.0.31", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + }, + "runtime": { + "lib/netstandard1.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "1.0.31.0", + "fileVersion": "4.6.24705.1" + } + }, + "compile": { + "lib/netstandard1.0/System.Composition.TypedParts.dll": {} + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/5.0.0": { + "compile": { + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll": {} + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, "System.IdentityModel.Tokens.Jwt/6.7.1": { "dependencies": { "Microsoft.IdentityModel.JsonWebTokens": "6.7.1", @@ -495,7 +1417,462 @@ "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": {} } }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Buffers": "4.3.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.4": {}, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "5.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/5.0.0": { + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": {} + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/4.7.1": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "4.5.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/4.5.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "System.Runtime.CompilerServices.Unsafe": "4.7.1" + } + }, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/4.5.0": {}, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "2.1.2", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.5.4" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, "Microsoft.AspNetCore.Antiforgery/5.0.0.0": { "compile": { "Microsoft.AspNetCore.Antiforgery.dll": {} @@ -670,7 +2047,7 @@ }, "compileOnly": true }, - "Microsoft.AspNetCore.Html.Abstractions/5.0.0.0": { + "Microsoft.AspNetCore.Html.Abstractions.Reference/5.0.0.0": { "compile": { "Microsoft.AspNetCore.Html.Abstractions.dll": {} }, @@ -826,13 +2203,13 @@ }, "compileOnly": true }, - "Microsoft.AspNetCore.Razor/5.0.0.0": { + "Microsoft.AspNetCore.Razor.Reference/5.0.0.0": { "compile": { "Microsoft.AspNetCore.Razor.dll": {} }, "compileOnly": true }, - "Microsoft.AspNetCore.Razor.Runtime/5.0.0.0": { + "Microsoft.AspNetCore.Razor.Runtime.Reference/5.0.0.0": { "compile": { "Microsoft.AspNetCore.Razor.Runtime.dll": {} }, @@ -964,13 +2341,13 @@ }, "compileOnly": true }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0.0": { + "Microsoft.Extensions.Caching.Abstractions.Reference/5.0.0.0": { "compile": { "Microsoft.Extensions.Caching.Abstractions.dll": {} }, "compileOnly": true }, - "Microsoft.Extensions.Caching.Memory/5.0.0.0": { + "Microsoft.Extensions.Caching.Memory.Reference/5.0.0.0": { "compile": { "Microsoft.Extensions.Caching.Memory.dll": {} }, @@ -1042,18 +2419,12 @@ }, "compileOnly": true }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0.0": { + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/5.0.0.0": { "compile": { "Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} }, "compileOnly": true }, - "Microsoft.Extensions.DependencyInjection/5.0.0.0": { - "compile": { - "Microsoft.Extensions.DependencyInjection.dll": {} - }, - "compileOnly": true - }, "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/5.0.0.0": { "compile": { "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} @@ -1138,7 +2509,7 @@ }, "compileOnly": true }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0.0": { + "Microsoft.Extensions.Logging.Abstractions.Reference/5.0.0.0": { "compile": { "Microsoft.Extensions.Logging.Abstractions.dll": {} }, @@ -1156,13 +2527,13 @@ }, "compileOnly": true }, - "Microsoft.Extensions.Logging.Debug/5.0.0.0": { + "Microsoft.Extensions.Logging.Debug.Reference/5.0.0.0": { "compile": { "Microsoft.Extensions.Logging.Debug.dll": {} }, "compileOnly": true }, - "Microsoft.Extensions.Logging/5.0.0.0": { + "Microsoft.Extensions.Logging.Reference/5.0.0.0": { "compile": { "Microsoft.Extensions.Logging.dll": {} }, @@ -1204,13 +2575,13 @@ }, "compileOnly": true }, - "Microsoft.Extensions.Options/5.0.0.0": { + "Microsoft.Extensions.Options.Reference/5.0.0.0": { "compile": { "Microsoft.Extensions.Options.dll": {} }, "compileOnly": true }, - "Microsoft.Extensions.Primitives/5.0.0.0": { + "Microsoft.Extensions.Primitives.Reference/5.0.0.0": { "compile": { "Microsoft.Extensions.Primitives.dll": {} }, @@ -1246,7 +2617,7 @@ }, "compileOnly": true }, - "Microsoft.Win32.Primitives/5.0.0.0": { + "Microsoft.Win32.Primitives.Reference/5.0.0.0": { "compile": { "Microsoft.Win32.Primitives.dll": {} }, @@ -1270,31 +2641,31 @@ }, "compileOnly": true }, - "System.AppContext/5.0.0.0": { + "System.AppContext.Reference/5.0.0.0": { "compile": { "System.AppContext.dll": {} }, "compileOnly": true }, - "System.Buffers/5.0.0.0": { + "System.Buffers.Reference/5.0.0.0": { "compile": { "System.Buffers.dll": {} }, "compileOnly": true }, - "System.Collections.Concurrent/5.0.0.0": { + "System.Collections.Concurrent.Reference/5.0.0.0": { "compile": { "System.Collections.Concurrent.dll": {} }, "compileOnly": true }, - "System.Collections/5.0.0.0": { + "System.Collections.Reference/5.0.0.0": { "compile": { "System.Collections.dll": {} }, "compileOnly": true }, - "System.Collections.Immutable/5.0.0.0": { + "System.Collections.Immutable.Reference/5.0.0.0": { "compile": { "System.Collections.Immutable.dll": {} }, @@ -1312,7 +2683,7 @@ }, "compileOnly": true }, - "System.ComponentModel.Annotations/5.0.0.0": { + "System.ComponentModel.Annotations.Reference/5.0.0.0": { "compile": { "System.ComponentModel.Annotations.dll": {} }, @@ -1354,7 +2725,7 @@ }, "compileOnly": true }, - "System.Console/5.0.0.0": { + "System.Console.Reference/5.0.0.0": { "compile": { "System.Console.dll": {} }, @@ -1390,13 +2761,13 @@ }, "compileOnly": true }, - "System.Diagnostics.Debug/5.0.0.0": { + "System.Diagnostics.Debug.Reference/5.0.0.0": { "compile": { "System.Diagnostics.Debug.dll": {} }, "compileOnly": true }, - "System.Diagnostics.DiagnosticSource/5.0.0.0": { + "System.Diagnostics.DiagnosticSource.Reference/5.0.0.0": { "compile": { "System.Diagnostics.DiagnosticSource.dll": {} }, @@ -1432,7 +2803,7 @@ }, "compileOnly": true }, - "System.Diagnostics.Tools/5.0.0.0": { + "System.Diagnostics.Tools.Reference/5.0.0.0": { "compile": { "System.Diagnostics.Tools.dll": {} }, @@ -1444,7 +2815,7 @@ }, "compileOnly": true }, - "System.Diagnostics.Tracing/5.0.0.0": { + "System.Diagnostics.Tracing.Reference/5.0.0.0": { "compile": { "System.Diagnostics.Tracing.dll": {} }, @@ -1480,19 +2851,19 @@ }, "compileOnly": true }, - "System.Globalization.Calendars/5.0.0.0": { + "System.Globalization.Calendars.Reference/5.0.0.0": { "compile": { "System.Globalization.Calendars.dll": {} }, "compileOnly": true }, - "System.Globalization/5.0.0.0": { + "System.Globalization.Reference/5.0.0.0": { "compile": { "System.Globalization.dll": {} }, "compileOnly": true }, - "System.Globalization.Extensions/5.0.0.0": { + "System.Globalization.Extensions.Reference/5.0.0.0": { "compile": { "System.Globalization.Extensions.dll": {} }, @@ -1504,7 +2875,7 @@ }, "compileOnly": true }, - "System.IO.Compression/5.0.0.0": { + "System.IO.Compression.Reference/5.0.0.0": { "compile": { "System.IO.Compression.dll": {} }, @@ -1516,19 +2887,19 @@ }, "compileOnly": true }, - "System.IO.Compression.ZipFile/5.0.0.0": { + "System.IO.Compression.ZipFile.Reference/5.0.0.0": { "compile": { "System.IO.Compression.ZipFile.dll": {} }, "compileOnly": true }, - "System.IO/5.0.0.0": { + "System.IO.Reference/5.0.0.0": { "compile": { "System.IO.dll": {} }, "compileOnly": true }, - "System.IO.FileSystem/5.0.0.0": { + "System.IO.FileSystem.Reference/5.0.0.0": { "compile": { "System.IO.FileSystem.dll": {} }, @@ -1540,7 +2911,7 @@ }, "compileOnly": true }, - "System.IO.FileSystem.Primitives/5.0.0.0": { + "System.IO.FileSystem.Primitives.Reference/5.0.0.0": { "compile": { "System.IO.FileSystem.Primitives.dll": {} }, @@ -1582,13 +2953,13 @@ }, "compileOnly": true }, - "System.Linq/5.0.0.0": { + "System.Linq.Reference/5.0.0.0": { "compile": { "System.Linq.dll": {} }, "compileOnly": true }, - "System.Linq.Expressions/5.0.0.0": { + "System.Linq.Expressions.Reference/5.0.0.0": { "compile": { "System.Linq.Expressions.dll": {} }, @@ -1606,7 +2977,7 @@ }, "compileOnly": true }, - "System.Memory/5.0.0.0": { + "System.Memory.Reference/5.0.0.0": { "compile": { "System.Memory.dll": {} }, @@ -1618,7 +2989,7 @@ }, "compileOnly": true }, - "System.Net.Http/5.0.0.0": { + "System.Net.Http.Reference/5.0.0.0": { "compile": { "System.Net.Http.dll": {} }, @@ -1660,7 +3031,7 @@ }, "compileOnly": true }, - "System.Net.Primitives/5.0.0.0": { + "System.Net.Primitives.Reference/5.0.0.0": { "compile": { "System.Net.Primitives.dll": {} }, @@ -1684,7 +3055,7 @@ }, "compileOnly": true }, - "System.Net.Sockets/5.0.0.0": { + "System.Net.Sockets.Reference/5.0.0.0": { "compile": { "System.Net.Sockets.dll": {} }, @@ -1732,7 +3103,7 @@ }, "compileOnly": true }, - "System.ObjectModel/5.0.0.0": { + "System.ObjectModel.Reference/5.0.0.0": { "compile": { "System.ObjectModel.dll": {} }, @@ -1744,49 +3115,49 @@ }, "compileOnly": true }, - "System.Reflection/5.0.0.0": { + "System.Reflection.Reference/5.0.0.0": { "compile": { "System.Reflection.dll": {} }, "compileOnly": true }, - "System.Reflection.Emit/5.0.0.0": { + "System.Reflection.Emit.Reference/5.0.0.0": { "compile": { "System.Reflection.Emit.dll": {} }, "compileOnly": true }, - "System.Reflection.Emit.ILGeneration/5.0.0.0": { + "System.Reflection.Emit.ILGeneration.Reference/5.0.0.0": { "compile": { "System.Reflection.Emit.ILGeneration.dll": {} }, "compileOnly": true }, - "System.Reflection.Emit.Lightweight/5.0.0.0": { + "System.Reflection.Emit.Lightweight.Reference/5.0.0.0": { "compile": { "System.Reflection.Emit.Lightweight.dll": {} }, "compileOnly": true }, - "System.Reflection.Extensions/5.0.0.0": { + "System.Reflection.Extensions.Reference/5.0.0.0": { "compile": { "System.Reflection.Extensions.dll": {} }, "compileOnly": true }, - "System.Reflection.Metadata/5.0.0.0": { + "System.Reflection.Metadata.Reference/5.0.0.0": { "compile": { "System.Reflection.Metadata.dll": {} }, "compileOnly": true }, - "System.Reflection.Primitives/5.0.0.0": { + "System.Reflection.Primitives.Reference/5.0.0.0": { "compile": { "System.Reflection.Primitives.dll": {} }, "compileOnly": true }, - "System.Reflection.TypeExtensions/5.0.0.0": { + "System.Reflection.TypeExtensions.Reference/5.0.0.0": { "compile": { "System.Reflection.TypeExtensions.dll": {} }, @@ -1798,7 +3169,7 @@ }, "compileOnly": true }, - "System.Resources.ResourceManager/5.0.0.0": { + "System.Resources.ResourceManager.Reference/5.0.0.0": { "compile": { "System.Resources.ResourceManager.dll": {} }, @@ -1810,7 +3181,7 @@ }, "compileOnly": true }, - "System.Runtime.CompilerServices.Unsafe/5.0.0.0": { + "System.Runtime.CompilerServices.Unsafe.Reference/5.0.0.0": { "compile": { "System.Runtime.CompilerServices.Unsafe.dll": {} }, @@ -1822,31 +3193,31 @@ }, "compileOnly": true }, - "System.Runtime/5.0.0.0": { + "System.Runtime.Reference/5.0.0.0": { "compile": { "System.Runtime.dll": {} }, "compileOnly": true }, - "System.Runtime.Extensions/5.0.0.0": { + "System.Runtime.Extensions.Reference/5.0.0.0": { "compile": { "System.Runtime.Extensions.dll": {} }, "compileOnly": true }, - "System.Runtime.Handles/5.0.0.0": { + "System.Runtime.Handles.Reference/5.0.0.0": { "compile": { "System.Runtime.Handles.dll": {} }, "compileOnly": true }, - "System.Runtime.InteropServices/5.0.0.0": { + "System.Runtime.InteropServices.Reference/5.0.0.0": { "compile": { "System.Runtime.InteropServices.dll": {} }, "compileOnly": true }, - "System.Runtime.InteropServices.RuntimeInformation/5.0.0.0": { + "System.Runtime.InteropServices.RuntimeInformation.Reference/5.0.0.0": { "compile": { "System.Runtime.InteropServices.RuntimeInformation.dll": {} }, @@ -1864,7 +3235,7 @@ }, "compileOnly": true }, - "System.Runtime.Numerics/5.0.0.0": { + "System.Runtime.Numerics.Reference/5.0.0.0": { "compile": { "System.Runtime.Numerics.dll": {} }, @@ -1912,7 +3283,7 @@ }, "compileOnly": true }, - "System.Security.Cryptography.Algorithms/5.0.0.0": { + "System.Security.Cryptography.Algorithms.Reference/5.0.0.0": { "compile": { "System.Security.Cryptography.Algorithms.dll": {} }, @@ -1924,25 +3295,25 @@ }, "compileOnly": true }, - "System.Security.Cryptography.Csp/5.0.0.0": { + "System.Security.Cryptography.Csp.Reference/5.0.0.0": { "compile": { "System.Security.Cryptography.Csp.dll": {} }, "compileOnly": true }, - "System.Security.Cryptography.Encoding/5.0.0.0": { + "System.Security.Cryptography.Encoding.Reference/5.0.0.0": { "compile": { "System.Security.Cryptography.Encoding.dll": {} }, "compileOnly": true }, - "System.Security.Cryptography.Primitives/5.0.0.0": { + "System.Security.Cryptography.Primitives.Reference/5.0.0.0": { "compile": { "System.Security.Cryptography.Primitives.dll": {} }, "compileOnly": true }, - "System.Security.Cryptography.X509Certificates/5.0.0.0": { + "System.Security.Cryptography.X509Certificates.Reference/5.0.0.0": { "compile": { "System.Security.Cryptography.X509Certificates.dll": {} }, @@ -1996,25 +3367,25 @@ }, "compileOnly": true }, - "System.Text.Encoding.CodePages/5.0.0.0": { + "System.Text.Encoding.CodePages.Reference/5.0.0.0": { "compile": { "System.Text.Encoding.CodePages.dll": {} }, "compileOnly": true }, - "System.Text.Encoding/5.0.0.0": { + "System.Text.Encoding.Reference/5.0.0.0": { "compile": { "System.Text.Encoding.dll": {} }, "compileOnly": true }, - "System.Text.Encoding.Extensions/5.0.0.0": { + "System.Text.Encoding.Extensions.Reference/5.0.0.0": { "compile": { "System.Text.Encoding.Extensions.dll": {} }, "compileOnly": true }, - "System.Text.Encodings.Web/5.0.0.0": { + "System.Text.Encodings.Web.Reference/5.0.0.0": { "compile": { "System.Text.Encodings.Web.dll": {} }, @@ -2026,7 +3397,7 @@ }, "compileOnly": true }, - "System.Text.RegularExpressions/5.0.0.0": { + "System.Text.RegularExpressions.Reference/5.0.0.0": { "compile": { "System.Text.RegularExpressions.dll": {} }, @@ -2038,7 +3409,7 @@ }, "compileOnly": true }, - "System.Threading/5.0.0.0": { + "System.Threading.Reference/5.0.0.0": { "compile": { "System.Threading.dll": {} }, @@ -2056,13 +3427,13 @@ }, "compileOnly": true }, - "System.Threading.Tasks/5.0.0.0": { + "System.Threading.Tasks.Reference/5.0.0.0": { "compile": { "System.Threading.Tasks.dll": {} }, "compileOnly": true }, - "System.Threading.Tasks.Extensions/5.0.0.0": { + "System.Threading.Tasks.Extensions.Reference/5.0.0.0": { "compile": { "System.Threading.Tasks.Extensions.dll": {} }, @@ -2086,7 +3457,7 @@ }, "compileOnly": true }, - "System.Threading.Timer/5.0.0.0": { + "System.Threading.Timer.Reference/5.0.0.0": { "compile": { "System.Threading.Timer.dll": {} }, @@ -2146,7 +3517,7 @@ }, "compileOnly": true }, - "System.Xml.ReaderWriter/5.0.0.0": { + "System.Xml.ReaderWriter.Reference/5.0.0.0": { "compile": { "System.Xml.ReaderWriter.dll": {} }, @@ -2158,7 +3529,7 @@ }, "compileOnly": true }, - "System.Xml.XDocument/5.0.0.0": { + "System.Xml.XDocument.Reference/5.0.0.0": { "compile": { "System.Xml.XDocument.dll": {} }, @@ -2202,6 +3573,13 @@ "serviceable": false, "sha512": "" }, + "Humanizer.Core/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rsYXB7+iUPP8AHgQ8JP2UZI2xK2KhjcdGr9E6zX3CsZaTLCaw8M35vaAJRo1rfxeaZEVMuXeaquLVCkZ7JcZ5Q==", + "path": "humanizer.core/2.2.0", + "hashPath": "humanizer.core.2.2.0.nupkg.sha512" + }, "Microsoft.AspNetCore.Authentication.JwtBearer/5.0.1": { "type": "package", "serviceable": true, @@ -2216,6 +3594,83 @@ "path": "microsoft.aspnetcore.authentication.openidconnect/5.0.1", "hashPath": "microsoft.aspnetcore.authentication.openidconnect.5.0.1.nupkg.sha512" }, + "Microsoft.AspNetCore.Html.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y4rs5aMEXY8G7wJo5S3EEt6ltqyOTr/qOeZzfn+hw/fuQj5GppGckMY5psGLETo1U9hcT5MmAhaT5xtusM1b5g==", + "path": "microsoft.aspnetcore.html.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V54PIyDCFl8COnTp9gezNHpUNHk7F9UnerGeZy3UfbnwYvfzbo+ipqQmSgeoESH8e0JvKhRTyQyZquW2EPtCmg==", + "path": "microsoft.aspnetcore.razor/2.2.0", + "hashPath": "microsoft.aspnetcore.razor.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6yOBBASGfXMx1fY6hyjvG+oM3eR8vovIehDdEZW7jAV4gKlY4xuAvTm7Iw1fEq7KPunh2VrJwo7oRK1XxUn1OQ==", + "path": "microsoft.aspnetcore.razor.language/5.0.0", + "hashPath": "microsoft.aspnetcore.razor.language.5.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Runtime/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7YqK+H61lN6yj9RiQUko7oaOhKtRR9Q/kBcoWNRemhJdTIWOh1OmdvJKzZrMWOlff3BAjejkPQm+0V0qXk+B1w==", + "path": "microsoft.aspnetcore.razor.runtime/2.2.0", + "hashPath": "microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==", + "path": "microsoft.bcl.asyncinterfaces/1.1.1", + "hashPath": "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ojG5pGAhTPmjxRGTNvuszO3H8XPZqksDwr9xLd4Ae/JBjZZdl6GuoLk7uLMf+o7yl5wO0TAqoWcEKkEWqrZE5g==", + "path": "microsoft.codeanalysis.analyzers/3.0.0", + "hashPath": "microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/3.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8YTZ7GpsbTdC08DITx7/kwV0k4SC6cbBAFqc13cOm5vKJZcEIAh51tNSyGSkWisMgYCr96B2wb5Zri1bsla3+g==", + "path": "microsoft.codeanalysis.common/3.8.0", + "hashPath": "microsoft.codeanalysis.common.3.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/3.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hKqFCUSk9TIMBDjiYMF8/ZfK9p9mzpU+slM73CaCHu4ctfkoqJGHLQhyT8wvrYsIg+ufrUWBF8hcJYmyr5rc5Q==", + "path": "microsoft.codeanalysis.csharp/3.8.0", + "hashPath": "microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/3.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rdEBvPWqe/IIscsnp7OkZ4tQin8khxBcSLyV9tU+sHdw9uW9U0GKL+Dv2rD4voC1bZBaO18Hp+m4Vkyfmaz0OA==", + "path": "microsoft.codeanalysis.csharp.workspaces/3.8.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.3.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Razor/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s4u/6z/MQ35y/egrXf4WgJlUZf5GGvuba9mZ700dH4XxLBrA9Fw9kFZ8uymoATry7hwz5owvFhBVo+2VnoiGRg==", + "path": "microsoft.codeanalysis.razor/5.0.0", + "hashPath": "microsoft.codeanalysis.razor.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/3.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GPYVydsmOmScOWDJA1LFky7/MkoXpx1JI3lZJShxC+bvVUvL9zVKE8WDZMLsYJ5MAbry2xkZftdfeMpZ+kvLDQ==", + "path": "microsoft.codeanalysis.workspaces.common/3.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.3.8.0.nupkg.sha512" + }, "Microsoft.CSharp/4.5.0": { "type": "package", "serviceable": true, @@ -2223,6 +3678,34 @@ "path": "microsoft.csharp/4.5.0", "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512" }, + "Microsoft.EntityFrameworkCore/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bz4WSbLqNw9gGeHw8VAzCcX6TVDLAD/SZRii9G7XSsqAdLL2J8pVINemXfRUt5IHlC1yWC5To4PzAUWJJZCbYw==", + "path": "microsoft.entityframeworkcore/5.0.1", + "hashPath": "microsoft.entityframeworkcore.5.0.1.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BUc5mbxnraD5mfpOUHaluHYV1Umqpv7VzsXwnVEvmDBtoLZ2jo+y1ldv5Xq6nab0STJQEX8YaZdbJmTIZUHwtQ==", + "path": "microsoft.entityframeworkcore.abstractions/5.0.1", + "hashPath": "microsoft.entityframeworkcore.abstractions.5.0.1.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3WjoY8JlB7m/VApD5A4JlntFLGV2C1qOV9fiPZQNBwlNnNAVZemDVZAksN1yBVMoPqw87VaogbP5sxgptCwTFA==", + "path": "microsoft.entityframeworkcore.analyzers/5.0.1", + "hashPath": "microsoft.entityframeworkcore.analyzers.5.0.1.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/3.1.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-n8c2Nyfyl0AKXdM++tiKZmX/jeiu1Uv+uxZAHGgKuiQJbpOCPAhjRB4tHLdo1jOvfkhJT9K6wekf9VaXjtL1tw==", + "path": "microsoft.entityframeworkcore.relational/3.1.8", + "hashPath": "microsoft.entityframeworkcore.relational.3.1.8.nupkg.sha512" + }, "Microsoft.Extensions.ApiDescription.Server/3.0.0": { "type": "package", "serviceable": true, @@ -2230,6 +3713,69 @@ "path": "microsoft.extensions.apidescription.server/3.0.0", "hashPath": "microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512" }, + "Microsoft.Extensions.Caching.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bu8As90/SBAouMZ6fJ+qRNo1X+KgHGrVueFhhYi+E5WqEhcnp2HoWRFnMzXQ6g4RdZbvPowFerSbKNH4Dtg5yg==", + "path": "microsoft.extensions.caching.abstractions/5.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/1qPCleFOkJe0O+xmFqCNLFYQZTJz965sVw8CUB/BQgsApBwzAUsL2BUkDvQW+geRUVTXUS9zLa0pBjC2VJ1gA==", + "path": "microsoft.extensions.caching.memory/5.0.0", + "hashPath": "microsoft.extensions.caching.memory.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-//mDNrYeiJ0eh/awFhDFJQzkRVra/njU5Y4fyK7X29g5HScrzbUkKOKlyTtygthcGFt4zNC8G5CFCjb/oizomA==", + "path": "microsoft.extensions.dependencyinjection/5.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ORj7Zh81gC69TyvmcUm9tSzytcy8AVousi+IVRAI8nLieQjOFryRusSFh7+aLk16FN9pQNqJAiMd7BTKINK0kA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/5.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MgOwK6tPzB6YNH21wssJcw/2MKwee8b2gI7SllYfn6rvTpIrVvVS5HAjSU2vqSku1fwqRvWP0MdIi14qjd93Aw==", + "path": "microsoft.extensions.logging/5.0.0", + "hashPath": "microsoft.extensions.logging.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NxP6ahFcBnnSfwNBi2KH2Oz8Xl5Sm2krjId/jRR3I7teFphwiUoUeZPwTNA21EX+5PtjqmyAvKaOeBXcJjcH/w==", + "path": "microsoft.extensions.logging.abstractions/5.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9dvt0xqRrClvhaPNpfyS39WxnW9G55l5lrV5ZX7IrEgwo4VwtmJKtoPiKVYKbhAuOBGUI5WY3hWLvF+PSbJp5A==", + "path": "microsoft.extensions.logging.debug/5.0.0", + "hashPath": "microsoft.extensions.logging.debug.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CBvR92TCJ5uBIdd9/HzDSrxYak+0W/3+yxrNg8Qm6Bmrkh5L+nu6m3WeazQehcZ5q1/6dDA7J5YdQjim0165zg==", + "path": "microsoft.extensions.options/5.0.0", + "hashPath": "microsoft.extensions.options.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cI/VWn9G1fghXrNDagX9nYaaB/nokkZn0HYAawGaELQrl8InSezfe9OnfPZLcJq3esXxygh3hkq2c3qoV3SDyQ==", + "path": "microsoft.extensions.primitives/5.0.0", + "hashPath": "microsoft.extensions.primitives.5.0.0.nupkg.sha512" + }, "Microsoft.IdentityModel.JsonWebTokens/6.7.1": { "type": "package", "serviceable": true, @@ -2265,6 +3811,20 @@ "path": "microsoft.identitymodel.tokens/6.7.1", "hashPath": "microsoft.identitymodel.tokens.6.7.1.nupkg.sha512" }, + "Microsoft.NETCore.Platforms/2.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mOJy3M0UN+LUG21dLGMxaWZEP6xYpQEpLuvuEQBaownaX4YuhH6NmNUlN9si+vNkAS6dwJ//N1O4DmLf2CikVg==", + "path": "microsoft.netcore.platforms/2.1.2", + "hashPath": "microsoft.netcore.platforms.2.1.2.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, "Microsoft.OpenApi/1.2.3": { "type": "package", "serviceable": true, @@ -2279,6 +3839,216 @@ "path": "microsoft.visualstudio.azure.containers.tools.targets/1.10.9", "hashPath": "microsoft.visualstudio.azure.containers.tools.targets.1.10.9.nupkg.sha512" }, + "Microsoft.VisualStudio.Web.CodeGeneration/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+UbVWKosEMf9AW/6H7GrlU20wXwZ+/8o4yHk4QiZzODzgVzrkLaPkV7ioj58/06KvhetyPJ2wNR4eXQNZ53tgw==", + "path": "microsoft.visualstudio.web.codegeneration/5.0.1", + "hashPath": "microsoft.visualstudio.web.codegeneration.5.0.1.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Contracts/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-so0+F5gW7kVQd0aCH86zc+KduHax1GGt7u8gdiypJsCL0NFIX96rejOefpJN+qhpWFUisjWTPGUMcSYuUvIIJg==", + "path": "microsoft.visualstudio.web.codegeneration.contracts/5.0.1", + "hashPath": "microsoft.visualstudio.web.codegeneration.contracts.5.0.1.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MOuDz7SX4ODoQqd9+TGhIO6qdBTBCjZ/7M98Y0nrj5fLrk4M6P7CWffI89m686acfmWSb0+7KC6TIKX9fODV0w==", + "path": "microsoft.visualstudio.web.codegeneration.core/5.0.1", + "hashPath": "microsoft.visualstudio.web.codegeneration.core.5.0.1.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vOyq0iocfEVA2lR5RkKzZLJbszmBgwk4Qz0TDghzLdAaL1+lPkFWnFlJ1wbR4mVVmurMSmnXFlYbbjcKmzOGWA==", + "path": "microsoft.visualstudio.web.codegeneration.design/5.0.1", + "hashPath": "microsoft.visualstudio.web.codegeneration.design.5.0.1.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v8i6qz0N5p7Tankyi1MHwjZl5/pmKeKkXcao+8hkCrcaX5yv4P7vGkgcl8arQNfmtGGenmqVGFHZOWIkwNElYA==", + "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/5.0.1", + "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.5.0.1.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+lKKgzWYUtKjlEkIfPkO+4uYl74idZKx1y2T29bpUv14X4hASYB+P0a55zC8anlIbwDCD5ShPX6txd5+5BES2A==", + "path": "microsoft.visualstudio.web.codegeneration.templating/5.0.1", + "hashPath": "microsoft.visualstudio.web.codegeneration.templating.5.0.1.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fXQY9chx9mIErQGpshoYhjgCv10UeG14Gzeh1oyvwUDW7Mtxx3Xtmz8IBmT8x9hw62uLTRbFFQ2ry2sZpGLRCg==", + "path": "microsoft.visualstudio.web.codegeneration.utils/5.0.1", + "hashPath": "microsoft.visualstudio.web.codegeneration.utils.5.0.1.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-u5piiR8X8WAmcQ1vbthd9jqxKeESCEC7AH+zZKFwrMI870J4++FvYaOf/zIJaesVIm1q7L7yH85AMkP3i1S6fg==", + "path": "microsoft.visualstudio.web.codegenerators.mvc/5.0.1", + "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.5.0.1.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "MySqlConnector/0.69.9": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WpY4jWc5ee5kgKy3XAK9JMjRmn7+jLYCgDlYvFK+GTrzaiWDWoYLbtJge6l1tqo2teUAP3kzzsJpP8QwJM1W4Q==", + "path": "mysqlconnector/0.69.9", + "hashPath": "mysqlconnector.0.69.9.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/12.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6mgjfnRB4jKMlzHSl+VD+oUc1IebOZabkbyWj2RiTgWwYPPuaK1H97G1sHqGwPlS5npiF5Q0OrxN1wni2n5QWg==", + "path": "newtonsoft.json/12.0.3", + "hashPath": "newtonsoft.json.12.0.3.nupkg.sha512" + }, + "Pomelo.EntityFrameworkCore.MySql/3.2.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6UOPWyL2qIsRCnN880YXA6rACpqVV6GE+H3vR4KJytjigWKFp+aiRDwJRSorwZ9ntHu+RDBcXGjmaShj0mBmYA==", + "path": "pomelo.entityframeworkcore.mysql/3.2.4", + "hashPath": "pomelo.entityframeworkcore.mysql.3.2.4.nupkg.sha512" + }, + "Pomelo.JsonObject/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VHPk3Yf7nDt+tZMC1M4oAoc3bgTYsOrap3VTjn//vd91b/nfquAbAeq1k0Lf7mPt8J7imLd9Pbzm50uB5euuZA==", + "path": "pomelo.jsonobject/2.2.1", + "hashPath": "pomelo.jsonobject.2.2.1.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, "Swashbuckle.AspNetCore/5.6.3": { "type": "package", "serviceable": true, @@ -2307,6 +4077,146 @@ "path": "swashbuckle.aspnetcore.swaggerui/5.6.3", "hashPath": "swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512" }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ratu44uTIHgeBeI0dE8DWvmXVBSo4u7ozRZZHOMmK/JPpYyo0dAfgSiHlpiObMQ5lEtEyIXA40sKRYg5J6A8uQ==", + "path": "system.buffers/4.3.0", + "hashPath": "system.buffers.4.3.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FXkLXiK0sVVewcso0imKQoOxjoPAj42R8HtjjbSjVPAzwDfzoyoznWxgA3c38LDbN9SJux1xXoXYAhz98j7r2g==", + "path": "system.collections.immutable/5.0.0", + "hashPath": "system.collections.immutable.5.0.0.nupkg.sha512" + }, + "System.ComponentModel.Annotations/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dMkqfy2el8A8/I76n2Hi1oBFEbG1SfxD2l5nhwXV3XjlnOmwxJlQbYpJH4W51odnU9sARCSAgv7S3CyAFMkpYg==", + "path": "system.componentmodel.annotations/5.0.0", + "hashPath": "system.componentmodel.annotations.5.0.0.nupkg.sha512" + }, + "System.Composition/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I+D26qpYdoklyAVUdqwUBrEIckMNjAYnuPJy/h9dsQItpQwVREkDFs4b4tkBza0kT2Yk48Lcfsv2QQ9hWsh9Iw==", + "path": "system.composition/1.0.31", + "hashPath": "system.composition.1.0.31.nupkg.sha512" + }, + "System.Composition.AttributedModel/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NHWhkM3ZkspmA0XJEsKdtTt1ViDYuojgSND3yHhTzwxepiwqZf+BCWuvCbjUt4fe0NxxQhUDGJ5km6sLjo9qnQ==", + "path": "system.composition.attributedmodel/1.0.31", + "hashPath": "system.composition.attributedmodel.1.0.31.nupkg.sha512" + }, + "System.Composition.Convention/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GLjh2Ju71k6C0qxMMtl4efHa68NmWeIUYh4fkUI8xbjQrEBvFmRwMDFcylT8/PR9SQbeeL48IkFxU/+gd0nYEQ==", + "path": "system.composition.convention/1.0.31", + "hashPath": "system.composition.convention.1.0.31.nupkg.sha512" + }, + "System.Composition.Hosting/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fN1bT4RX4vUqjbgoyuJFVUizAl2mYF5VAb+bVIxIYZSSc0BdnX+yGAxcavxJuDDCQ1K+/mdpgyEFc8e9ikjvrg==", + "path": "system.composition.hosting/1.0.31", + "hashPath": "system.composition.hosting.1.0.31.nupkg.sha512" + }, + "System.Composition.Runtime/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0LEJN+2NVM89CE4SekDrrk5tHV5LeATltkp+9WNYrR+Huiyt0vaCqHbbHtVAjPyeLWIc8dOz/3kthRBj32wGQg==", + "path": "system.composition.runtime/1.0.31", + "hashPath": "system.composition.runtime.1.0.31.nupkg.sha512" + }, + "System.Composition.TypedParts/1.0.31": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0Zae/FtzeFgDBBuILeIbC/T9HMYbW4olAmi8XqqAGosSOWvXfiQLfARZEhiGd0LVXaYgXr0NhxiU1LldRP1fpQ==", + "path": "system.composition.typedparts/1.0.31", + "hashPath": "system.composition.typedparts.1.0.31.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tCQTzPsGZh/A9LhhA6zrqCRV4hOHsK90/G7q3Khxmn6tnB1PuNU0cRaKANP2AWcF9bn0zsuOoZOSrHuJk6oNBA==", + "path": "system.diagnostics.diagnosticsource/5.0.0", + "hashPath": "system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, "System.IdentityModel.Tokens.Jwt/6.7.1": { "type": "package", "serviceable": true, @@ -2314,6 +4224,209 @@ "path": "system.identitymodel.tokens.jwt/6.7.1", "hashPath": "system.identitymodel.tokens.jwt.6.7.1.nupkg.sha512" }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.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, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5NecZgXktdGg34rh1OenY1rFNDCI8xSjFr+Z4OU4cU06AQHUdRnIIEeWENu3Wl4YowbzkymAIMvi3WyK9U53pQ==", + "path": "system.reflection.metadata/5.0.0", + "hashPath": "system.reflection.metadata.5.0.0.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7u6ulLcZbyxB5Gq0nMkQttcdBTx57ibzw+4IOXEfR+sXYQoHvjW5LTLyNr8O22UIMrqYbchJQJnos4eooYzYJA==", + "path": "system.reflection.typeextensions/4.3.0", + "hashPath": "system.reflection.typeextensions.4.3.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/4.7.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zOHkQmzPCn5zm/BH+cxC1XbUS3P4Yoi3xzW7eRgVpDR2tPGSzyMZ17Ig1iRkfJuY0nhxkQQde8pgePNiA7z7TQ==", + "path": "system.runtime.compilerservices.unsafe/4.7.1", + "hashPath": "system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, "System.Security.Cryptography.Cng/4.5.0": { "type": "package", "serviceable": true, @@ -2321,6 +4434,118 @@ "path": "system.security.cryptography.cng/4.5.0", "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4J2JQXbftjPMppIHJ7IC+VXQ9XfEagN92vZZNoG12i+zReYlim5dMoXFC1Zzg7tsnKDM7JPo5bYfFK4Jheq44w==", + "path": "system.text.encoding.codepages/4.5.1", + "hashPath": "system.text.encoding.codepages.4.5.1.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xg4G4Indi4dqP1iuAiMSwpiWS54ZghzR644OtsRCm/m/lBMG8dUBhLVN7hLm8NNrNTR+iGbshCPTwrvxZPlm4g==", + "path": "system.text.encodings.web/4.5.0", + "hashPath": "system.text.encodings.web.4.5.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, "Microsoft.AspNetCore.Antiforgery/5.0.0.0": { "type": "referenceassembly", "serviceable": false, @@ -2466,7 +4691,7 @@ "serviceable": false, "sha512": "" }, - "Microsoft.AspNetCore.Html.Abstractions/5.0.0.0": { + "Microsoft.AspNetCore.Html.Abstractions.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -2596,12 +4821,12 @@ "serviceable": false, "sha512": "" }, - "Microsoft.AspNetCore.Razor/5.0.0.0": { + "Microsoft.AspNetCore.Razor.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "Microsoft.AspNetCore.Razor.Runtime/5.0.0.0": { + "Microsoft.AspNetCore.Razor.Runtime.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -2711,12 +4936,12 @@ "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Caching.Abstractions/5.0.0.0": { + "Microsoft.Extensions.Caching.Abstractions.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Caching.Memory/5.0.0.0": { + "Microsoft.Extensions.Caching.Memory.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -2776,12 +5001,7 @@ "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.DependencyInjection.Abstractions/5.0.0.0": { - "type": "referenceassembly", - "serviceable": false, - "sha512": "" - }, - "Microsoft.Extensions.DependencyInjection/5.0.0.0": { + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -2856,7 +5076,7 @@ "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Logging.Abstractions/5.0.0.0": { + "Microsoft.Extensions.Logging.Abstractions.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -2871,12 +5091,12 @@ "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Logging.Debug/5.0.0.0": { + "Microsoft.Extensions.Logging.Debug.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Logging/5.0.0.0": { + "Microsoft.Extensions.Logging.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -2911,12 +5131,12 @@ "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Options/5.0.0.0": { + "Microsoft.Extensions.Options.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "Microsoft.Extensions.Primitives/5.0.0.0": { + "Microsoft.Extensions.Primitives.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -2946,7 +5166,7 @@ "serviceable": false, "sha512": "" }, - "Microsoft.Win32.Primitives/5.0.0.0": { + "Microsoft.Win32.Primitives.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -2966,27 +5186,27 @@ "serviceable": false, "sha512": "" }, - "System.AppContext/5.0.0.0": { + "System.AppContext.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Buffers/5.0.0.0": { + "System.Buffers.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Collections.Concurrent/5.0.0.0": { + "System.Collections.Concurrent.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Collections/5.0.0.0": { + "System.Collections.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Collections.Immutable/5.0.0.0": { + "System.Collections.Immutable.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3001,7 +5221,7 @@ "serviceable": false, "sha512": "" }, - "System.ComponentModel.Annotations/5.0.0.0": { + "System.ComponentModel.Annotations.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3036,7 +5256,7 @@ "serviceable": false, "sha512": "" }, - "System.Console/5.0.0.0": { + "System.Console.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3066,12 +5286,12 @@ "serviceable": false, "sha512": "" }, - "System.Diagnostics.Debug/5.0.0.0": { + "System.Diagnostics.Debug.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Diagnostics.DiagnosticSource/5.0.0.0": { + "System.Diagnostics.DiagnosticSource.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3101,7 +5321,7 @@ "serviceable": false, "sha512": "" }, - "System.Diagnostics.Tools/5.0.0.0": { + "System.Diagnostics.Tools.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3111,7 +5331,7 @@ "serviceable": false, "sha512": "" }, - "System.Diagnostics.Tracing/5.0.0.0": { + "System.Diagnostics.Tracing.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3141,17 +5361,17 @@ "serviceable": false, "sha512": "" }, - "System.Globalization.Calendars/5.0.0.0": { + "System.Globalization.Calendars.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Globalization/5.0.0.0": { + "System.Globalization.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Globalization.Extensions/5.0.0.0": { + "System.Globalization.Extensions.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3161,7 +5381,7 @@ "serviceable": false, "sha512": "" }, - "System.IO.Compression/5.0.0.0": { + "System.IO.Compression.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3171,17 +5391,17 @@ "serviceable": false, "sha512": "" }, - "System.IO.Compression.ZipFile/5.0.0.0": { + "System.IO.Compression.ZipFile.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.IO/5.0.0.0": { + "System.IO.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.IO.FileSystem/5.0.0.0": { + "System.IO.FileSystem.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3191,7 +5411,7 @@ "serviceable": false, "sha512": "" }, - "System.IO.FileSystem.Primitives/5.0.0.0": { + "System.IO.FileSystem.Primitives.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3226,12 +5446,12 @@ "serviceable": false, "sha512": "" }, - "System.Linq/5.0.0.0": { + "System.Linq.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Linq.Expressions/5.0.0.0": { + "System.Linq.Expressions.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3246,7 +5466,7 @@ "serviceable": false, "sha512": "" }, - "System.Memory/5.0.0.0": { + "System.Memory.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3256,7 +5476,7 @@ "serviceable": false, "sha512": "" }, - "System.Net.Http/5.0.0.0": { + "System.Net.Http.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3291,7 +5511,7 @@ "serviceable": false, "sha512": "" }, - "System.Net.Primitives/5.0.0.0": { + "System.Net.Primitives.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3311,7 +5531,7 @@ "serviceable": false, "sha512": "" }, - "System.Net.Sockets/5.0.0.0": { + "System.Net.Sockets.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3351,7 +5571,7 @@ "serviceable": false, "sha512": "" }, - "System.ObjectModel/5.0.0.0": { + "System.ObjectModel.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3361,42 +5581,42 @@ "serviceable": false, "sha512": "" }, - "System.Reflection/5.0.0.0": { + "System.Reflection.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Reflection.Emit/5.0.0.0": { + "System.Reflection.Emit.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Reflection.Emit.ILGeneration/5.0.0.0": { + "System.Reflection.Emit.ILGeneration.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Reflection.Emit.Lightweight/5.0.0.0": { + "System.Reflection.Emit.Lightweight.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Reflection.Extensions/5.0.0.0": { + "System.Reflection.Extensions.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Reflection.Metadata/5.0.0.0": { + "System.Reflection.Metadata.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Reflection.Primitives/5.0.0.0": { + "System.Reflection.Primitives.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Reflection.TypeExtensions/5.0.0.0": { + "System.Reflection.TypeExtensions.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3406,7 +5626,7 @@ "serviceable": false, "sha512": "" }, - "System.Resources.ResourceManager/5.0.0.0": { + "System.Resources.ResourceManager.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3416,7 +5636,7 @@ "serviceable": false, "sha512": "" }, - "System.Runtime.CompilerServices.Unsafe/5.0.0.0": { + "System.Runtime.CompilerServices.Unsafe.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3426,27 +5646,27 @@ "serviceable": false, "sha512": "" }, - "System.Runtime/5.0.0.0": { + "System.Runtime.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Runtime.Extensions/5.0.0.0": { + "System.Runtime.Extensions.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Runtime.Handles/5.0.0.0": { + "System.Runtime.Handles.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Runtime.InteropServices/5.0.0.0": { + "System.Runtime.InteropServices.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Runtime.InteropServices.RuntimeInformation/5.0.0.0": { + "System.Runtime.InteropServices.RuntimeInformation.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3461,7 +5681,7 @@ "serviceable": false, "sha512": "" }, - "System.Runtime.Numerics/5.0.0.0": { + "System.Runtime.Numerics.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3501,7 +5721,7 @@ "serviceable": false, "sha512": "" }, - "System.Security.Cryptography.Algorithms/5.0.0.0": { + "System.Security.Cryptography.Algorithms.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3511,22 +5731,22 @@ "serviceable": false, "sha512": "" }, - "System.Security.Cryptography.Csp/5.0.0.0": { + "System.Security.Cryptography.Csp.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Security.Cryptography.Encoding/5.0.0.0": { + "System.Security.Cryptography.Encoding.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Security.Cryptography.Primitives/5.0.0.0": { + "System.Security.Cryptography.Primitives.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Security.Cryptography.X509Certificates/5.0.0.0": { + "System.Security.Cryptography.X509Certificates.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3571,22 +5791,22 @@ "serviceable": false, "sha512": "" }, - "System.Text.Encoding.CodePages/5.0.0.0": { + "System.Text.Encoding.CodePages.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Text.Encoding/5.0.0.0": { + "System.Text.Encoding.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Text.Encoding.Extensions/5.0.0.0": { + "System.Text.Encoding.Extensions.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Text.Encodings.Web/5.0.0.0": { + "System.Text.Encodings.Web.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3596,7 +5816,7 @@ "serviceable": false, "sha512": "" }, - "System.Text.RegularExpressions/5.0.0.0": { + "System.Text.RegularExpressions.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3606,7 +5826,7 @@ "serviceable": false, "sha512": "" }, - "System.Threading/5.0.0.0": { + "System.Threading.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3621,12 +5841,12 @@ "serviceable": false, "sha512": "" }, - "System.Threading.Tasks/5.0.0.0": { + "System.Threading.Tasks.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" }, - "System.Threading.Tasks.Extensions/5.0.0.0": { + "System.Threading.Tasks.Extensions.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3646,7 +5866,7 @@ "serviceable": false, "sha512": "" }, - "System.Threading.Timer/5.0.0.0": { + "System.Threading.Timer.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3696,7 +5916,7 @@ "serviceable": false, "sha512": "" }, - "System.Xml.ReaderWriter/5.0.0.0": { + "System.Xml.ReaderWriter.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" @@ -3706,7 +5926,7 @@ "serviceable": false, "sha512": "" }, - "System.Xml.XDocument/5.0.0.0": { + "System.Xml.XDocument.Reference/5.0.0.0": { "type": "referenceassembly", "serviceable": false, "sha512": "" diff --git a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll b/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll index c0b4467..0b73004 100644 Binary files a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll and b/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.dll differ diff --git a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb b/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb index 19a31ae..85f29bf 100644 Binary files a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb and b/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.pdb differ diff --git a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.dev.json b/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.dev.json index 7623312..549960d 100644 --- a/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.dev.json +++ b/AlfaPrentice/bin/Debug/net5.0/AlfaPrentice.runtimeconfig.dev.json @@ -1,9 +1,8 @@ { "runtimeOptions": { "additionalProbingPaths": [ - "C:\\Users\\Xandra Mentink\\.dotnet\\store\\|arch|\\|tfm|", - "C:\\Users\\Xandra Mentink\\.nuget\\packages", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" + "C:\\Users\\mathieu\\.dotnet\\store\\|arch|\\|tfm|", + "C:\\Users\\mathieu\\.nuget\\packages" ] } } \ No newline at end of file diff --git a/AlfaPrentice/bin/Debug/net5.0/Humanizer.dll b/AlfaPrentice/bin/Debug/net5.0/Humanizer.dll index df62d3f..adb2aa4 100644 Binary files a/AlfaPrentice/bin/Debug/net5.0/Humanizer.dll and b/AlfaPrentice/bin/Debug/net5.0/Humanizer.dll differ diff --git a/AlfaPrentice/bin/Debug/net5.0/appsettings.json b/AlfaPrentice/bin/Debug/net5.0/appsettings.json index d9d9a9b..442a2d1 100644 --- a/AlfaPrentice/bin/Debug/net5.0/appsettings.json +++ b/AlfaPrentice/bin/Debug/net5.0/appsettings.json @@ -6,5 +6,12 @@ "Microsoft.Hosting.Lifetime": "Information" } }, + "ConnectionStrings": { + "AlfaPrentice": "Server=localhost;User Id=root; Database=AlfaPrentice" + }, + + "emailsmtp": "mail.incapabel.com", + "emailusername": "info@incapabel.com", + "emailpassword": "@Alfa2019", "AllowedHosts": "*" } diff --git a/AlfaPrentice/bin/Debug/net5.0/ref/AlfaPrentice.dll b/AlfaPrentice/bin/Debug/net5.0/ref/AlfaPrentice.dll index 7cf8a9b..422ecb1 100644 Binary files a/AlfaPrentice/bin/Debug/net5.0/ref/AlfaPrentice.dll and b/AlfaPrentice/bin/Debug/net5.0/ref/AlfaPrentice.dll differ diff --git a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json b/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json index c467c92..8a01721 100644 --- a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json +++ b/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.dgspec.json @@ -1,23 +1,20 @@ { "format": 1, "restore": { - "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": {} + "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": {} }, "projects": { - "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": { + "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", + "projectUniqueName": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", "projectName": "AlfaPrentice", - "projectPath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", - "packagesPath": "C:\\Users\\Xandra Mentink\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\obj\\", + "projectPath": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", + "packagesPath": "C:\\Users\\mathieu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], "configFilePaths": [ - "C:\\Users\\Xandra Mentink\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\mathieu\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ diff --git a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props b/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props index 502d1b2..1a6e64d 100644 --- a/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props +++ b/AlfaPrentice/obj/AlfaPrentice.csproj.nuget.g.props @@ -22,6 +22,7 @@ C:\Users\mathieu\.nuget\packages\microsoft.extensions.apidescription.server\3.0.0 + C:\Users\mathieu\.nuget\packages\microsoft.codeanalysis.analyzers\3.0.0 C:\Users\mathieu\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.10.9 \ No newline at end of file diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfoInputs.cache b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfoInputs.cache new file mode 100644 index 0000000..219b613 --- /dev/null +++ b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +2d9d4dadc467f6ffa88e0444837037282bcddef4 diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.RazorTargetAssemblyInfo.cache b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.RazorTargetAssemblyInfo.cache new file mode 100644 index 0000000..08aff46 --- /dev/null +++ b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.RazorTargetAssemblyInfo.cache @@ -0,0 +1 @@ +550bf7cacb6ace12889197695f45c43e678c7223 diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache new file mode 100644 index 0000000..a7cc722 Binary files /dev/null and b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.assets.cache differ diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CoreCompileInputs.cache b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..9ed9508 --- /dev/null +++ b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +45d85c66a128c1451f9ad184b1ab1e86bb5d3567 diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt index 93b11b0..e95691d 100644 --- a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt +++ b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csproj.FileListAbsolute.txt @@ -36,7 +36,6 @@ C:\Users\Xandra Mentink\source\repos\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\ C:\Users\Xandra Mentink\source\repos\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.pdb C:\Users\Xandra Mentink\source\repos\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.genruntimeconfig.cache C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.pdb -C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.csprojAssemblyReference.cache C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.GeneratedMSBuildEditorConfig.editorconfig C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.AssemblyInfoInputs.cache C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.AssemblyInfo.cs @@ -45,3 +44,114 @@ C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\Alf C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.MvcApplicationPartsAssemblyInfo.cache C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.dll C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\ref\AlfaPrentice.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\appsettings.Development.json +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\appsettings.json +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\AlfaPrentice.exe +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\AlfaPrentice.deps.json +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\AlfaPrentice.runtimeconfig.json +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\AlfaPrentice.runtimeconfig.dev.json +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\AlfaPrentice.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ref\AlfaPrentice.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\AlfaPrentice.pdb +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Humanizer.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.AspNetCore.Authentication.OpenIdConnect.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.AspNetCore.Razor.Language.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.Bcl.AsyncInterfaces.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.CodeAnalysis.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.CodeAnalysis.CSharp.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.CodeAnalysis.Razor.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.CodeAnalysis.Workspaces.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.Extensions.DependencyInjection.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.IdentityModel.JsonWebTokens.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.IdentityModel.Logging.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.IdentityModel.Protocols.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.IdentityModel.Tokens.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.OpenApi.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.Contracts.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\dotnet-aspnet-codegenerator-design.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\MySqlConnector.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Newtonsoft.Json.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Pomelo.EntityFrameworkCore.MySql.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Pomelo.JsonObject.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Swashbuckle.AspNetCore.Swagger.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerGen.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\Swashbuckle.AspNetCore.SwaggerUI.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\System.Composition.AttributedModel.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\System.Composition.Convention.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\System.Composition.Hosting.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\System.Composition.Runtime.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\System.Composition.TypedParts.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\System.IdentityModel.Tokens.Jwt.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\runtimes\win-arm\lib\net5.0\dotnet-aspnet-codegenerator-design.exe +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\bin\Debug\net5.0\runtimes\win-arm64\lib\net5.0\dotnet-aspnet-codegenerator-design.exe +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\staticwebassets\AlfaPrentice.StaticWebAssets.Manifest.cache +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\staticwebassets\AlfaPrentice.StaticWebAssets.xml +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\scopedcss\bundle\AlfaPrentice.styles.css +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.RazorTargetAssemblyInfo.cache +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.csproj.CopyComplete +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.genruntimeconfig.cache +C:\Users\mathieu\Documents\GitHub\AlfaPrentice\AlfaPrentice\obj\Debug\net5.0\AlfaPrentice.csprojAssemblyReference.cache diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csprojAssemblyReference.cache b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csprojAssemblyReference.cache new file mode 100644 index 0000000..b08390b Binary files /dev/null and b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.csprojAssemblyReference.cache differ diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll new file mode 100644 index 0000000..0b73004 Binary files /dev/null and b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.dll differ diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.genruntimeconfig.cache b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.genruntimeconfig.cache new file mode 100644 index 0000000..bd1feb6 --- /dev/null +++ b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.genruntimeconfig.cache @@ -0,0 +1 @@ +8975032b6d462f77f04f602fc3ebb72de5c83470 diff --git a/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb new file mode 100644 index 0000000..85f29bf Binary files /dev/null and b/AlfaPrentice/obj/Debug/net5.0/AlfaPrentice.pdb differ diff --git a/AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll b/AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll new file mode 100644 index 0000000..422ecb1 Binary files /dev/null and b/AlfaPrentice/obj/Debug/net5.0/ref/AlfaPrentice.dll differ diff --git a/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache b/AlfaPrentice/obj/Debug/net5.0/staticwebassets/AlfaPrentice.StaticWebAssets.Manifest.cache new file mode 100644 index 0000000..e69de29 diff --git a/AlfaPrentice/obj/project.assets.json b/AlfaPrentice/obj/project.assets.json index cdad8f1..4f3f32c 100644 --- a/AlfaPrentice/obj/project.assets.json +++ b/AlfaPrentice/obj/project.assets.json @@ -7297,23 +7297,19 @@ ] }, "packageFolders": { - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\": {}, - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder": {} + "C:\\Users\\mathieu\\.nuget\\packages\\": {} }, "project": { "version": "1.0.0", "restore": { - "projectUniqueName": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", + "projectUniqueName": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", "projectName": "AlfaPrentice", - "projectPath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", - "packagesPath": "C:\\Users\\Xandra Mentink\\.nuget\\packages\\", - "outputPath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\obj\\", + "projectPath": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", + "packagesPath": "C:\\Users\\mathieu\\.nuget\\packages\\", + "outputPath": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\obj\\", "projectStyle": "PackageReference", - "fallbackFolders": [ - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder" - ], "configFilePaths": [ - "C:\\Users\\Xandra Mentink\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Users\\mathieu\\AppData\\Roaming\\NuGet\\NuGet.Config", "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" ], "originalTargetFrameworks": [ diff --git a/AlfaPrentice/obj/project.nuget.cache b/AlfaPrentice/obj/project.nuget.cache index c7a373c..8fa1f37 100644 --- a/AlfaPrentice/obj/project.nuget.cache +++ b/AlfaPrentice/obj/project.nuget.cache @@ -1,148 +1,148 @@ { "version": 2, - "dgSpecHash": "kRuuVbkJew+FrPPINvezBxsr0Vre6SGkrtXpM4s3oFDpHNxNUtgLGxtID1A/z2pUf8Bq602ywuG4rLiBSkWrVA==", + "dgSpecHash": "2Gm+zT/QqpHiDBRJh7Pu7I4ttaW5eDCVDJOzRmhlMu3UikyzlhCUE3sCjAL4YyLtcTu15N6fnueWpSKvf62f+g==", "success": true, - "projectFilePath": "C:\\Users\\Xandra Mentink\\Documents\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", + "projectFilePath": "C:\\Users\\mathieu\\Documents\\GitHub\\AlfaPrentice\\AlfaPrentice\\AlfaPrentice.csproj", "expectedPackageFiles": [ - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\humanizer.core\\2.2.0\\humanizer.core.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\5.0.1\\microsoft.aspnetcore.authentication.jwtbearer.5.0.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.authentication.openidconnect\\5.0.1\\microsoft.aspnetcore.authentication.openidconnect.5.0.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.html.abstractions\\2.2.0\\microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.razor\\2.2.0\\microsoft.aspnetcore.razor.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\5.0.0\\microsoft.aspnetcore.razor.language.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.aspnetcore.razor.runtime\\2.2.0\\microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.0.0\\microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.codeanalysis.common\\3.8.0\\microsoft.codeanalysis.common.3.8.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.8.0\\microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\3.8.0\\microsoft.codeanalysis.csharp.workspaces.3.8.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.codeanalysis.razor\\5.0.0\\microsoft.codeanalysis.razor.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\3.8.0\\microsoft.codeanalysis.workspaces.common.3.8.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.1\\microsoft.entityframeworkcore.5.0.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.1\\microsoft.entityframeworkcore.abstractions.5.0.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.1\\microsoft.entityframeworkcore.analyzers.5.0.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.8\\microsoft.entityframeworkcore.relational.3.1.8.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.logging.debug\\5.0.0\\microsoft.extensions.logging.debug.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.7.1\\microsoft.identitymodel.jsonwebtokens.6.7.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.logging\\6.7.1\\microsoft.identitymodel.logging.6.7.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.7.1\\microsoft.identitymodel.protocols.6.7.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.7.1\\microsoft.identitymodel.protocols.openidconnect.6.7.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.7.1\\microsoft.identitymodel.tokens.6.7.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.2\\microsoft.netcore.platforms.2.1.2.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.10.9\\microsoft.visualstudio.azure.containers.tools.targets.1.10.9.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration\\5.0.1\\microsoft.visualstudio.web.codegeneration.5.0.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.contracts\\5.0.1\\microsoft.visualstudio.web.codegeneration.contracts.5.0.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.core\\5.0.1\\microsoft.visualstudio.web.codegeneration.core.5.0.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.design\\5.0.1\\microsoft.visualstudio.web.codegeneration.design.5.0.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.entityframeworkcore\\5.0.1\\microsoft.visualstudio.web.codegeneration.entityframeworkcore.5.0.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.templating\\5.0.1\\microsoft.visualstudio.web.codegeneration.templating.5.0.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.utils\\5.0.1\\microsoft.visualstudio.web.codegeneration.utils.5.0.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\microsoft.visualstudio.web.codegenerators.mvc\\5.0.1\\microsoft.visualstudio.web.codegenerators.mvc.5.0.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\mysqlconnector\\0.69.9\\mysqlconnector.0.69.9.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\pomelo.entityframeworkcore.mysql\\3.2.4\\pomelo.entityframeworkcore.mysql.3.2.4.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\pomelo.jsonobject\\2.2.1\\pomelo.jsonobject.2.2.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\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:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\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:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\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:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\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:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\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:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\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:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\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:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\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:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\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:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\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:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\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\\Xandra Mentink\\.nuget\\packages\\swashbuckle.aspnetcore\\5.6.3\\swashbuckle.aspnetcore.5.6.3.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.6.3\\swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.6.3\\swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\5.6.3\\swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.buffers\\4.3.0\\system.buffers.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition\\1.0.31\\system.composition.1.0.31.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.attributedmodel\\1.0.31\\system.composition.attributedmodel.1.0.31.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.convention\\1.0.31\\system.composition.convention.1.0.31.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.hosting\\1.0.31\\system.composition.hosting.1.0.31.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.runtime\\1.0.31\\system.composition.runtime.1.0.31.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.composition.typedparts\\1.0.31\\system.composition.typedparts.1.0.31.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.0\\system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.7.1\\system.identitymodel.tokens.jwt.6.7.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.7.1\\system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.text.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.encodings.web\\4.5.0\\system.text.encodings.web.4.5.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", - "C:\\Users\\Xandra Mentink\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", - "C:\\Program Files\\dotnet\\sdk\\NuGetFallbackFolder\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512" + "C:\\Users\\mathieu\\.nuget\\packages\\humanizer.core\\2.2.0\\humanizer.core.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\5.0.1\\microsoft.aspnetcore.authentication.jwtbearer.5.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.authentication.openidconnect\\5.0.1\\microsoft.aspnetcore.authentication.openidconnect.5.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.html.abstractions\\2.2.0\\microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.razor\\2.2.0\\microsoft.aspnetcore.razor.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\5.0.0\\microsoft.aspnetcore.razor.language.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.aspnetcore.razor.runtime\\2.2.0\\microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.0.0\\microsoft.codeanalysis.analyzers.3.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.codeanalysis.common\\3.8.0\\microsoft.codeanalysis.common.3.8.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.codeanalysis.csharp\\3.8.0\\microsoft.codeanalysis.csharp.3.8.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\3.8.0\\microsoft.codeanalysis.csharp.workspaces.3.8.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.codeanalysis.razor\\5.0.0\\microsoft.codeanalysis.razor.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\3.8.0\\microsoft.codeanalysis.workspaces.common.3.8.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.entityframeworkcore\\5.0.1\\microsoft.entityframeworkcore.5.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\5.0.1\\microsoft.entityframeworkcore.abstractions.5.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\5.0.1\\microsoft.entityframeworkcore.analyzers.5.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\3.1.8\\microsoft.entityframeworkcore.relational.3.1.8.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.apidescription.server\\3.0.0\\microsoft.extensions.apidescription.server.3.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\5.0.0\\microsoft.extensions.caching.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.caching.memory\\5.0.0\\microsoft.extensions.caching.memory.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\5.0.1\\microsoft.extensions.dependencyinjection.5.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\5.0.0\\microsoft.extensions.dependencyinjection.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.logging\\5.0.0\\microsoft.extensions.logging.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\5.0.0\\microsoft.extensions.logging.abstractions.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.logging.debug\\5.0.0\\microsoft.extensions.logging.debug.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.options\\5.0.0\\microsoft.extensions.options.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.extensions.primitives\\5.0.0\\microsoft.extensions.primitives.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.7.1\\microsoft.identitymodel.jsonwebtokens.6.7.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.identitymodel.logging\\6.7.1\\microsoft.identitymodel.logging.6.7.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.7.1\\microsoft.identitymodel.protocols.6.7.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.7.1\\microsoft.identitymodel.protocols.openidconnect.6.7.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.7.1\\microsoft.identitymodel.tokens.6.7.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.netcore.platforms\\2.1.2\\microsoft.netcore.platforms.2.1.2.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.10.9\\microsoft.visualstudio.azure.containers.tools.targets.1.10.9.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration\\5.0.1\\microsoft.visualstudio.web.codegeneration.5.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.contracts\\5.0.1\\microsoft.visualstudio.web.codegeneration.contracts.5.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.core\\5.0.1\\microsoft.visualstudio.web.codegeneration.core.5.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.design\\5.0.1\\microsoft.visualstudio.web.codegeneration.design.5.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.entityframeworkcore\\5.0.1\\microsoft.visualstudio.web.codegeneration.entityframeworkcore.5.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.templating\\5.0.1\\microsoft.visualstudio.web.codegeneration.templating.5.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.utils\\5.0.1\\microsoft.visualstudio.web.codegeneration.utils.5.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.visualstudio.web.codegenerators.mvc\\5.0.1\\microsoft.visualstudio.web.codegenerators.mvc.5.0.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\mysqlconnector\\0.69.9\\mysqlconnector.0.69.9.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\newtonsoft.json\\12.0.3\\newtonsoft.json.12.0.3.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\pomelo.entityframeworkcore.mysql\\3.2.4\\pomelo.entityframeworkcore.mysql.3.2.4.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\pomelo.jsonobject\\2.2.1\\pomelo.jsonobject.2.2.1.nupkg.sha512", + "C:\\Users\\mathieu\\.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\\mathieu\\.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\\mathieu\\.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\\mathieu\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.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\\mathieu\\.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\\mathieu\\.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\\mathieu\\.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\\mathieu\\.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\\mathieu\\.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\\mathieu\\.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\\mathieu\\.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\\mathieu\\.nuget\\packages\\swashbuckle.aspnetcore\\5.6.3\\swashbuckle.aspnetcore.5.6.3.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\5.6.3\\swashbuckle.aspnetcore.swagger.5.6.3.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\5.6.3\\swashbuckle.aspnetcore.swaggergen.5.6.3.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\5.6.3\\swashbuckle.aspnetcore.swaggerui.5.6.3.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.buffers\\4.3.0\\system.buffers.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.collections.immutable\\5.0.0\\system.collections.immutable.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.componentmodel.annotations\\5.0.0\\system.componentmodel.annotations.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.composition\\1.0.31\\system.composition.1.0.31.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.composition.attributedmodel\\1.0.31\\system.composition.attributedmodel.1.0.31.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.composition.convention\\1.0.31\\system.composition.convention.1.0.31.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.composition.hosting\\1.0.31\\system.composition.hosting.1.0.31.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.composition.runtime\\1.0.31\\system.composition.runtime.1.0.31.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.composition.typedparts\\1.0.31\\system.composition.typedparts.1.0.31.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.diagnostics.diagnosticsource\\5.0.0\\system.diagnostics.diagnosticsource.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.7.1\\system.identitymodel.tokens.jwt.6.7.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.metadata\\5.0.0\\system.reflection.metadata.5.0.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.reflection.typeextensions\\4.3.0\\system.reflection.typeextensions.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\4.7.1\\system.runtime.compilerservices.unsafe.4.7.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.text.encoding.codepages\\4.5.1\\system.text.encoding.codepages.4.5.1.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.text.encodings.web\\4.5.0\\system.text.encodings.web.4.5.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512", + "C:\\Users\\mathieu\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512" ], "logs": [] } \ No newline at end of file