diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..5d46848 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +################################################################################ +# This .gitignore file was automatically created by Microsoft(R) Visual Studio. +################################################################################ + +/.vs +/WebAPIExam/.vs/WebAPIExam diff --git a/WebAPIExam/AcceTickTest/AcceTickTest.csproj b/WebAPIExam/AcceTickTest/AcceTickTest.csproj new file mode 100644 index 0000000..3007c0c --- /dev/null +++ b/WebAPIExam/AcceTickTest/AcceTickTest.csproj @@ -0,0 +1,30 @@ + + + + net8.0 + enable + enable + + false + true + + + + + + + + + + + + + + + + + + + + + diff --git a/WebAPIExam/AcceTickTest/BaseTest.cs b/WebAPIExam/AcceTickTest/BaseTest.cs new file mode 100644 index 0000000..621eaef --- /dev/null +++ b/WebAPIExam/AcceTickTest/BaseTest.cs @@ -0,0 +1,21 @@ +using Microsoft.AspNetCore.Mvc.Testing; +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace AcceTickTest +{ + public class BaseTest + { + protected readonly WebApplicationFactory _factory; + public BaseTest() + { + _factory = new WebApplicationFactory(); + } + + public HttpClient GetClient => _factory.CreateClient(); + + } +} diff --git a/WebAPIExam/AcceTickTest/UnitTest1.cs b/WebAPIExam/AcceTickTest/UnitTest1.cs new file mode 100644 index 0000000..1e9cb1b --- /dev/null +++ b/WebAPIExam/AcceTickTest/UnitTest1.cs @@ -0,0 +1,127 @@ +using Contracts.RequestModels.BookedTicket; +using Newtonsoft.Json; +using System.Text; + +namespace AcceTickTest +{ + public class Tests : BaseTest + { + private readonly HttpClient _Client; + public Tests() + { + _Client = GetClient; + } + [SetUp] + public void Setup() + { + } + + private string Url = "api/v1/booked"; + + [Test, Order(0)] + public async Task GetAvailableTickets() + { + //arrange + var client = _factory.CreateClient(); + + //act + var response = await client.GetAsync("api/v1/ticket/get-available-ticket"); + + //assert + Assert.That(response.IsSuccessStatusCode, Is.True); + Assert.Pass(); + } + [Test, Order(1)] + public async Task BookTicket() + { + //arrange + var client = _factory.CreateClient(); + + BookTicketRequest bookTickets = new BookTicketRequest + { + BookingList = [] + }; + bookTickets.BookingList.Add(new BookTicketModel + { + TicketId = Guid.Parse("D842F4AD-6703-474D-AF68-77006A055613"), + Quantity = 5 + }); + bookTickets.BookingList.Add(new BookTicketModel + { + TicketId = Guid.Parse("56EDF6D8-AF0E-4504-B635-46C133CB492E"), + Quantity = 15 + }); + bookTickets.BookingList.Add(new BookTicketModel + { + TicketId = Guid.Parse("267E3768-1174-4723-8C15-295839010788"), + Quantity = 27 + }); + + + //act + var stringContent = new StringContent(JsonConvert.SerializeObject(bookTickets), Encoding.UTF8, "application/json"); + var response = await client.PostAsync($"{Url}/book-ticket", stringContent); + + //assert + Assert.That(response.IsSuccessStatusCode, Is.True); + Assert.Pass(); + } + [Test, Order(2)] + public async Task DeleteBookedTickets() + { + //arrange + var client = _factory.CreateClient(); + + DeleteBookedTicketsRequest delete = new DeleteBookedTicketsRequest + { + BookedId = Guid.Parse("729FD330-EAC2-47D4-8CFD-49CB19C53923"), + TicketCode = "TJ012", + Quantity = 10, + }; + + //act + var response = await client.DeleteAsync($"{Url}/revoke-ticket/{delete.BookedId}/{delete.TicketCode}/{delete.Quantity}"); + + //assert + Assert.That(response.IsSuccessStatusCode, Is.True); + Assert.Pass(); + } + [Test, Order(3)] + public async Task EditBookedTickets() + { + //arrange + var client = _factory.CreateClient(); + + var testId = Guid.Parse("729FD330-EAC2-47D4-8CFD-49CB19C53923"); + EditBookedTicketModel edit = new EditBookedTicketModel + { + Quantity = 10, + }; + + //act + var stringContent = new StringContent(JsonConvert.SerializeObject(edit), Encoding.UTF8, "application/json"); + var response = await client.PutAsync($"{Url}/edit-booked-ticket/{testId}", stringContent); + + //assert + Assert.That(response.IsSuccessStatusCode, Is.True); + Assert.Pass(); + } + [Test, Order(3)] + public async Task GetBookedDetailTest() + { + //arrange + var client = _factory.CreateClient(); + + var testId = Guid.Parse("729FD330-EAC2-47D4-8CFD-49CB19C53923"); + + //act + + var response = await client.GetAsync($"{Url}/get-booked-ticket/{testId}"); + + //assert + Assert.That(response.IsSuccessStatusCode, Is.True); + Assert.Pass(); + } + + } +} \ No newline at end of file diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/AcceTickTest.deps.json b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/AcceTickTest.deps.json new file mode 100644 index 0000000..5f472c1 --- /dev/null +++ b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/AcceTickTest.deps.json @@ -0,0 +1,5448 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": { + "defines": [ + "TRACE", + "DEBUG", + "NET", + "NET8_0", + "NETCOREAPP", + "NET5_0_OR_GREATER", + "NET6_0_OR_GREATER", + "NET7_0_OR_GREATER", + "NET8_0_OR_GREATER", + "NETCOREAPP1_0_OR_GREATER", + "NETCOREAPP1_1_OR_GREATER", + "NETCOREAPP2_0_OR_GREATER", + "NETCOREAPP2_1_OR_GREATER", + "NETCOREAPP2_2_OR_GREATER", + "NETCOREAPP3_0_OR_GREATER", + "NETCOREAPP3_1_OR_GREATER" + ], + "languageVersion": "12.0", + "platform": "", + "allowUnsafe": false, + "warningsAsErrors": false, + "optimize": false, + "keyFile": "", + "emitEntryPoint": true, + "xmlDoc": false, + "debugType": "portable" + }, + "targets": { + ".NETCoreApp,Version=v8.0": { + "AcceTickTest/1.0.0": { + "dependencies": { + "Entity": "1.0.0", + "Microsoft.AspNetCore.Mvc.Testing": "8.0.3", + "Microsoft.NET.Test.Sdk": "17.8.0", + "NUnit": "3.14.0", + "NUnit.Analyzers": "3.9.0", + "NUnit3TestAdapter": "4.5.0", + "WebAPIExam": "1.0.0", + "coverlet.collector": "6.0.0", + "Microsoft.AspNetCore.Antiforgery": "8.0.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions": "8.0.0.0", + "Microsoft.AspNetCore.Authentication.BearerToken": "8.0.0.0", + "Microsoft.AspNetCore.Authentication.Cookies": "8.0.0.0", + "Microsoft.AspNetCore.Authentication.Core": "8.0.0.0", + "Microsoft.AspNetCore.Authentication": "8.0.0.0", + "Microsoft.AspNetCore.Authentication.OAuth": "8.0.0.0", + "Microsoft.AspNetCore.Authorization": "8.0.0.0", + "Microsoft.AspNetCore.Authorization.Policy": "8.0.0.0", + "Microsoft.AspNetCore.Components.Authorization": "8.0.0.0", + "Microsoft.AspNetCore.Components": "8.0.0.0", + "Microsoft.AspNetCore.Components.Endpoints": "8.0.0.0", + "Microsoft.AspNetCore.Components.Forms": "8.0.0.0", + "Microsoft.AspNetCore.Components.Server": "8.0.0.0", + "Microsoft.AspNetCore.Components.Web": "8.0.0.0", + "Microsoft.AspNetCore.Connections.Abstractions": "8.0.0.0", + "Microsoft.AspNetCore.CookiePolicy": "8.0.0.0", + "Microsoft.AspNetCore.Cors": "8.0.0.0", + "Microsoft.AspNetCore.Cryptography.Internal": "8.0.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "8.0.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions": "8.0.0.0", + "Microsoft.AspNetCore.DataProtection": "8.0.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions": "8.0.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "8.0.0.0", + "Microsoft.AspNetCore.Diagnostics": "8.0.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "8.0.0.0", + "Microsoft.AspNetCore": "8.0.0.0", + "Microsoft.AspNetCore.HostFiltering": "8.0.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "8.0.0.0", + "Microsoft.AspNetCore.Hosting": "8.0.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "8.0.0.0", + "Microsoft.AspNetCore.Html.Abstractions": "8.0.0.0", + "Microsoft.AspNetCore.Http.Abstractions": "8.0.0.0", + "Microsoft.AspNetCore.Http.Connections.Common": "8.0.0.0", + "Microsoft.AspNetCore.Http.Connections": "8.0.0.0", + "Microsoft.AspNetCore.Http": "8.0.0.0", + "Microsoft.AspNetCore.Http.Extensions": "8.0.0.0", + "Microsoft.AspNetCore.Http.Features": "8.0.0.0", + "Microsoft.AspNetCore.Http.Results": "8.0.0.0", + "Microsoft.AspNetCore.HttpLogging": "8.0.0.0", + "Microsoft.AspNetCore.HttpOverrides": "8.0.0.0", + "Microsoft.AspNetCore.HttpsPolicy": "8.0.0.0", + "Microsoft.AspNetCore.Identity": "8.0.0.0", + "Microsoft.AspNetCore.Localization": "8.0.0.0", + "Microsoft.AspNetCore.Localization.Routing": "8.0.0.0", + "Microsoft.AspNetCore.Metadata": "8.0.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "8.0.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "8.0.0.0", + "Microsoft.AspNetCore.Mvc.Core": "8.0.0.0", + "Microsoft.AspNetCore.Mvc.Cors": "8.0.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "8.0.0.0", + "Microsoft.AspNetCore.Mvc": "8.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "8.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "8.0.0.0", + "Microsoft.AspNetCore.Mvc.Localization": "8.0.0.0", + "Microsoft.AspNetCore.Mvc.Razor": "8.0.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages": "8.0.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers": "8.0.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "8.0.0.0", + "Microsoft.AspNetCore.OutputCaching": "8.0.0.0", + "Microsoft.AspNetCore.RateLimiting": "8.0.0.0", + "Microsoft.AspNetCore.Razor": "8.0.0.0", + "Microsoft.AspNetCore.Razor.Runtime": "8.0.0.0", + "Microsoft.AspNetCore.RequestDecompression": "8.0.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "8.0.0.0", + "Microsoft.AspNetCore.ResponseCaching": "8.0.0.0", + "Microsoft.AspNetCore.ResponseCompression": "8.0.0.0", + "Microsoft.AspNetCore.Rewrite": "8.0.0.0", + "Microsoft.AspNetCore.Routing.Abstractions": "8.0.0.0", + "Microsoft.AspNetCore.Routing": "8.0.0.0", + "Microsoft.AspNetCore.Server.HttpSys": "8.0.0.0", + "Microsoft.AspNetCore.Server.IIS": "8.0.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "8.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core": "8.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel": "8.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "8.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "8.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "8.0.0.0", + "Microsoft.AspNetCore.Session": "8.0.0.0", + "Microsoft.AspNetCore.SignalR.Common": "8.0.0.0", + "Microsoft.AspNetCore.SignalR.Core": "8.0.0.0", + "Microsoft.AspNetCore.SignalR": "8.0.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "8.0.0.0", + "Microsoft.AspNetCore.StaticFiles": "8.0.0.0", + "Microsoft.AspNetCore.WebSockets": "8.0.0.0", + "Microsoft.AspNetCore.WebUtilities": "8.0.0.0", + "Microsoft.CSharp": "8.0.0.0", + "Microsoft.Extensions.Caching.Abstractions.Reference": "8.0.0.0", + "Microsoft.Extensions.Caching.Memory.Reference": "8.0.0.0", + "Microsoft.Extensions.Configuration.Abstractions.Reference": "8.0.0.0", + "Microsoft.Extensions.Configuration.Binder.Reference": "8.0.0.0", + "Microsoft.Extensions.Configuration.CommandLine.Reference": "8.0.0.0", + "Microsoft.Extensions.Configuration.Reference": "8.0.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables.Reference": "8.0.0.0", + "Microsoft.Extensions.Configuration.FileExtensions.Reference": "8.0.0.0", + "Microsoft.Extensions.Configuration.Ini": "8.0.0.0", + "Microsoft.Extensions.Configuration.Json.Reference": "8.0.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile": "8.0.0.0", + "Microsoft.Extensions.Configuration.UserSecrets.Reference": "8.0.0.0", + "Microsoft.Extensions.Configuration.Xml": "8.0.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference": "8.0.0.0", + "Microsoft.Extensions.DependencyInjection.Reference": "8.0.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions.Reference": "8.0.0.0", + "Microsoft.Extensions.Diagnostics.Reference": "8.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "8.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "8.0.0.0", + "Microsoft.Extensions.Features": "8.0.0.0", + "Microsoft.Extensions.FileProviders.Abstractions.Reference": "8.0.0.0", + "Microsoft.Extensions.FileProviders.Composite": "8.0.0.0", + "Microsoft.Extensions.FileProviders.Embedded": "8.0.0.0", + "Microsoft.Extensions.FileProviders.Physical.Reference": "8.0.0.0", + "Microsoft.Extensions.FileSystemGlobbing.Reference": "8.0.0.0", + "Microsoft.Extensions.Hosting.Abstractions.Reference": "8.0.0.0", + "Microsoft.Extensions.Hosting.Reference": "8.0.0.0", + "Microsoft.Extensions.Http": "8.0.0.0", + "Microsoft.Extensions.Identity.Core": "8.0.0.0", + "Microsoft.Extensions.Identity.Stores": "8.0.0.0", + "Microsoft.Extensions.Localization.Abstractions": "8.0.0.0", + "Microsoft.Extensions.Localization": "8.0.0.0", + "Microsoft.Extensions.Logging.Abstractions.Reference": "8.0.0.0", + "Microsoft.Extensions.Logging.Configuration.Reference": "8.0.0.0", + "Microsoft.Extensions.Logging.Console.Reference": "8.0.0.0", + "Microsoft.Extensions.Logging.Debug.Reference": "8.0.0.0", + "Microsoft.Extensions.Logging.Reference": "8.0.0.0", + "Microsoft.Extensions.Logging.EventLog.Reference": "8.0.0.0", + "Microsoft.Extensions.Logging.EventSource.Reference": "8.0.0.0", + "Microsoft.Extensions.Logging.TraceSource": "8.0.0.0", + "Microsoft.Extensions.ObjectPool": "8.0.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions.Reference": "8.0.0.0", + "Microsoft.Extensions.Options.DataAnnotations": "8.0.0.0", + "Microsoft.Extensions.Options.Reference": "8.0.0.0", + "Microsoft.Extensions.Primitives.Reference": "8.0.0.0", + "Microsoft.Extensions.WebEncoders": "8.0.0.0", + "Microsoft.JSInterop": "8.0.0.0", + "Microsoft.Net.Http.Headers": "8.0.0.0", + "Microsoft.VisualBasic.Core": "13.0.0.0", + "Microsoft.VisualBasic": "10.0.0.0", + "Microsoft.Win32.Primitives": "8.0.0.0", + "Microsoft.Win32.Registry": "8.0.0.0", + "mscorlib": "4.0.0.0", + "netstandard": "2.1.0.0", + "System.AppContext": "8.0.0.0", + "System.Buffers": "8.0.0.0", + "System.Collections.Concurrent": "8.0.0.0", + "System.Collections": "8.0.0.0", + "System.Collections.Immutable": "8.0.0.0", + "System.Collections.NonGeneric": "8.0.0.0", + "System.Collections.Specialized": "8.0.0.0", + "System.ComponentModel.Annotations": "8.0.0.0", + "System.ComponentModel.DataAnnotations": "4.0.0.0", + "System.ComponentModel": "8.0.0.0", + "System.ComponentModel.EventBasedAsync": "8.0.0.0", + "System.ComponentModel.Primitives": "8.0.0.0", + "System.ComponentModel.TypeConverter": "8.0.0.0", + "System.Configuration": "4.0.0.0", + "System.Console": "8.0.0.0", + "System.Core": "4.0.0.0", + "System.Data.Common": "8.0.0.0", + "System.Data.DataSetExtensions": "8.0.0.0", + "System.Data": "4.0.0.0", + "System.Diagnostics.Contracts": "8.0.0.0", + "System.Diagnostics.Debug": "8.0.0.0", + "System.Diagnostics.DiagnosticSource.Reference": "8.0.0.0", + "System.Diagnostics.EventLog.Reference": "8.0.0.0", + "System.Diagnostics.FileVersionInfo": "8.0.0.0", + "System.Diagnostics.Process": "8.0.0.0", + "System.Diagnostics.StackTrace": "8.0.0.0", + "System.Diagnostics.TextWriterTraceListener": "8.0.0.0", + "System.Diagnostics.Tools": "8.0.0.0", + "System.Diagnostics.TraceSource": "8.0.0.0", + "System.Diagnostics.Tracing": "8.0.0.0", + "System": "4.0.0.0", + "System.Drawing": "4.0.0.0", + "System.Drawing.Primitives": "8.0.0.0", + "System.Dynamic.Runtime": "8.0.0.0", + "System.Formats.Asn1": "8.0.0.0", + "System.Formats.Tar": "8.0.0.0", + "System.Globalization.Calendars": "8.0.0.0", + "System.Globalization": "8.0.0.0", + "System.Globalization.Extensions": "8.0.0.0", + "System.IO.Compression.Brotli": "8.0.0.0", + "System.IO.Compression": "8.0.0.0", + "System.IO.Compression.FileSystem": "4.0.0.0", + "System.IO.Compression.ZipFile": "8.0.0.0", + "System.IO": "8.0.0.0", + "System.IO.FileSystem.AccessControl": "8.0.0.0", + "System.IO.FileSystem": "8.0.0.0", + "System.IO.FileSystem.DriveInfo": "8.0.0.0", + "System.IO.FileSystem.Primitives": "8.0.0.0", + "System.IO.FileSystem.Watcher": "8.0.0.0", + "System.IO.IsolatedStorage": "8.0.0.0", + "System.IO.MemoryMappedFiles": "8.0.0.0", + "System.IO.Pipelines.Reference": "8.0.0.0", + "System.IO.Pipes.AccessControl": "8.0.0.0", + "System.IO.Pipes": "8.0.0.0", + "System.IO.UnmanagedMemoryStream": "8.0.0.0", + "System.Linq": "8.0.0.0", + "System.Linq.Expressions": "8.0.0.0", + "System.Linq.Parallel": "8.0.0.0", + "System.Linq.Queryable": "8.0.0.0", + "System.Memory.Reference": "8.0.0.0", + "System.Net": "4.0.0.0", + "System.Net.Http": "8.0.0.0", + "System.Net.Http.Json": "8.0.0.0", + "System.Net.HttpListener": "8.0.0.0", + "System.Net.Mail": "8.0.0.0", + "System.Net.NameResolution": "8.0.0.0", + "System.Net.NetworkInformation": "8.0.0.0", + "System.Net.Ping": "8.0.0.0", + "System.Net.Primitives": "8.0.0.0", + "System.Net.Quic": "8.0.0.0", + "System.Net.Requests": "8.0.0.0", + "System.Net.Security": "8.0.0.0", + "System.Net.ServicePoint": "8.0.0.0", + "System.Net.Sockets": "8.0.0.0", + "System.Net.WebClient": "8.0.0.0", + "System.Net.WebHeaderCollection": "8.0.0.0", + "System.Net.WebProxy": "8.0.0.0", + "System.Net.WebSockets.Client": "8.0.0.0", + "System.Net.WebSockets": "8.0.0.0", + "System.Numerics": "4.0.0.0", + "System.Numerics.Vectors": "8.0.0.0", + "System.ObjectModel": "8.0.0.0", + "System.Reflection.DispatchProxy": "8.0.0.0", + "System.Reflection": "8.0.0.0", + "System.Reflection.Emit": "8.0.0.0", + "System.Reflection.Emit.ILGeneration": "8.0.0.0", + "System.Reflection.Emit.Lightweight": "8.0.0.0", + "System.Reflection.Extensions": "8.0.0.0", + "System.Reflection.Metadata.Reference": "8.0.0.0", + "System.Reflection.Primitives": "8.0.0.0", + "System.Reflection.TypeExtensions": "8.0.0.0", + "System.Resources.Reader": "8.0.0.0", + "System.Resources.ResourceManager": "8.0.0.0", + "System.Resources.Writer": "8.0.0.0", + "System.Runtime.CompilerServices.Unsafe": "8.0.0.0", + "System.Runtime.CompilerServices.VisualC": "8.0.0.0", + "System.Runtime": "8.0.0.0", + "System.Runtime.Extensions": "8.0.0.0", + "System.Runtime.Handles": "8.0.0.0", + "System.Runtime.InteropServices": "8.0.0.0", + "System.Runtime.InteropServices.JavaScript": "8.0.0.0", + "System.Runtime.InteropServices.RuntimeInformation": "8.0.0.0", + "System.Runtime.Intrinsics": "8.0.0.0", + "System.Runtime.Loader": "8.0.0.0", + "System.Runtime.Numerics": "8.0.0.0", + "System.Runtime.Serialization": "4.0.0.0", + "System.Runtime.Serialization.Formatters": "8.0.0.0", + "System.Runtime.Serialization.Json": "8.0.0.0", + "System.Runtime.Serialization.Primitives": "8.0.0.0", + "System.Runtime.Serialization.Xml": "8.0.0.0", + "System.Security.AccessControl": "8.0.0.0", + "System.Security.Claims": "8.0.0.0", + "System.Security.Cryptography.Algorithms": "8.0.0.0", + "System.Security.Cryptography.Cng": "8.0.0.0", + "System.Security.Cryptography.Csp": "8.0.0.0", + "System.Security.Cryptography": "8.0.0.0", + "System.Security.Cryptography.Encoding": "8.0.0.0", + "System.Security.Cryptography.OpenSsl": "8.0.0.0", + "System.Security.Cryptography.Primitives": "8.0.0.0", + "System.Security.Cryptography.X509Certificates": "8.0.0.0", + "System.Security.Cryptography.Xml": "8.0.0.0", + "System.Security": "4.0.0.0", + "System.Security.Principal": "8.0.0.0", + "System.Security.Principal.Windows": "8.0.0.0", + "System.Security.SecureString": "8.0.0.0", + "System.ServiceModel.Web": "4.0.0.0", + "System.ServiceProcess": "4.0.0.0", + "System.Text.Encoding.CodePages": "8.0.0.0", + "System.Text.Encoding": "8.0.0.0", + "System.Text.Encoding.Extensions": "8.0.0.0", + "System.Text.Encodings.Web.Reference": "8.0.0.0", + "System.Text.Json.Reference": "8.0.0.0", + "System.Text.RegularExpressions": "8.0.0.0", + "System.Threading.Channels": "8.0.0.0", + "System.Threading": "8.0.0.0", + "System.Threading.Overlapped": "8.0.0.0", + "System.Threading.RateLimiting": "8.0.0.0", + "System.Threading.Tasks.Dataflow": "8.0.0.0", + "System.Threading.Tasks": "8.0.0.0", + "System.Threading.Tasks.Extensions": "8.0.0.0", + "System.Threading.Tasks.Parallel": "8.0.0.0", + "System.Threading.Thread": "8.0.0.0", + "System.Threading.ThreadPool": "8.0.0.0", + "System.Threading.Timer": "8.0.0.0", + "System.Transactions": "4.0.0.0", + "System.Transactions.Local": "8.0.0.0", + "System.ValueTuple": "8.0.0.0", + "System.Web": "4.0.0.0", + "System.Web.HttpUtility": "8.0.0.0", + "System.Windows": "4.0.0.0", + "System.Xml": "4.0.0.0", + "System.Xml.Linq": "4.0.0.0", + "System.Xml.ReaderWriter": "8.0.0.0", + "System.Xml.Serialization": "4.0.0.0", + "System.Xml.XDocument": "8.0.0.0", + "System.Xml.XmlDocument": "8.0.0.0", + "System.Xml.XmlSerializer": "8.0.0.0", + "System.Xml.XPath": "8.0.0.0", + "System.Xml.XPath.XDocument": "8.0.0.0", + "WindowsBase": "4.0.0.0" + }, + "runtime": { + "AcceTickTest.dll": {} + }, + "compile": { + "AcceTickTest.dll": {} + } + }, + "coverlet.collector/6.0.0": {}, + "DateOnlyTimeOnly.AspNet/2.1.1": { + "runtime": { + "lib/net7.0/DateOnlyTimeOnly.AspNet.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.0" + } + }, + "compile": { + "lib/net7.0/DateOnlyTimeOnly.AspNet.dll": {} + } + }, + "DateOnlyTimeOnly.AspNet.Swashbuckle/2.1.1": { + "dependencies": { + "DateOnlyTimeOnly.AspNet": "2.1.1", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0" + }, + "runtime": { + "lib/net7.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.0" + } + }, + "compile": { + "lib/net7.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll": {} + } + }, + "FluentValidation/11.9.0": { + "runtime": { + "lib/net8.0/FluentValidation.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.9.0.0" + } + }, + "compile": { + "lib/net8.0/FluentValidation.dll": {} + } + }, + "FluentValidation.DependencyInjectionExtensions/11.9.0": { + "dependencies": { + "FluentValidation": "11.9.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.9.0.0" + } + }, + "compile": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": {} + } + }, + "MediatR/11.1.0": { + "dependencies": { + "MediatR.Contracts": "2.0.1" + }, + "runtime": { + "lib/netstandard2.1/MediatR.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.1.0.0" + } + }, + "compile": { + "lib/netstandard2.1/MediatR.dll": {} + } + }, + "MediatR.Contracts/2.0.1": { + "runtime": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "assemblyVersion": "2.0.1.0", + "fileVersion": "2.0.1.0" + } + }, + "compile": { + "lib/netstandard2.0/MediatR.Contracts.dll": {} + } + }, + "MediatR.Extensions.Microsoft.DependencyInjection/11.1.0": { + "dependencies": { + "MediatR": "11.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.1.0.0" + } + }, + "compile": { + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Testing/8.0.3": { + "dependencies": { + "Microsoft.AspNetCore.TestHost": "8.0.3", + "Microsoft.Extensions.DependencyModel": "8.0.0", + "Microsoft.Extensions.Hosting": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.Testing.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11615" + } + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.Testing.dll": {} + } + }, + "Microsoft.AspNetCore.TestHost/8.0.3": { + "dependencies": { + "System.IO.Pipelines": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.TestHost.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11615" + } + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.TestHost.dll": {} + } + }, + "Microsoft.CodeCoverage/17.8.0": { + "runtime": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.623.45702" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + } + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + }, + "compile": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": {} + } + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.3", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.3", + "Microsoft.Extensions.Caching.Memory": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": {}, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.3", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.3", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.3", + "Microsoft.EntityFrameworkCore.Relational": "8.0.3", + "Microsoft.Extensions.DependencyModel": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Configuration/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + } + }, + "Microsoft.Extensions.Configuration.CommandLine/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Physical": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Configuration.Json/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "System.Text.Json": "8.0.0" + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.Json": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Physical": "8.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {}, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.Diagnostics/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "System.Diagnostics.DiagnosticSource": "8.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Physical/8.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/8.0.0": {}, + "Microsoft.Extensions.Hosting/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "8.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "8.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0", + "Microsoft.Extensions.Configuration.Json": "8.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Diagnostics": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Physical": "8.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Console": "8.0.0", + "Microsoft.Extensions.Logging.Debug": "8.0.0", + "Microsoft.Extensions.Logging.EventLog": "8.0.0", + "Microsoft.Extensions.Logging.EventSource": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + } + }, + "Microsoft.Extensions.Hosting.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + } + }, + "Microsoft.Extensions.Logging.Configuration/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" + } + }, + "Microsoft.Extensions.Logging.Console/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Configuration": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "System.Text.Json": "8.0.0" + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + } + }, + "Microsoft.Extensions.Logging.EventLog/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "System.Diagnostics.EventLog": "8.0.0" + } + }, + "Microsoft.Extensions.Logging.EventSource/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0", + "System.Text.Json": "8.0.0" + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Primitives/8.0.0": {}, + "Microsoft.NET.Test.Sdk/17.8.0": { + "dependencies": { + "Microsoft.CodeCoverage": "17.8.0", + "Microsoft.TestPlatform.TestHost": "17.8.0" + } + }, + "Microsoft.NETCore.Platforms/1.1.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": {} + } + }, + "Microsoft.TestPlatform.ObjectModel/17.8.0": { + "dependencies": { + "NuGet.Frameworks": "6.5.0", + "System.Reflection.Metadata": "1.6.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.23.55801" + }, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.23.55801" + }, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.23.55801" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + } + }, + "Microsoft.TestPlatform.TestHost/17.8.0": { + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.8.0", + "Newtonsoft.Json": "13.0.1" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.23.55801" + }, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.23.55801" + }, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.23.55801" + }, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.23.55801" + }, + "lib/netcoreapp3.1/testhost.dll": { + "assemblyVersion": "15.0.0.0", + "fileVersion": "17.800.23.55801" + } + }, + "resources": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp3.1/testhost.dll": {} + } + }, + "NETStandard.Library/2.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + } + }, + "Newtonsoft.Json/13.0.1": { + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.1.25517" + } + }, + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": {} + } + }, + "NuGet.Frameworks/6.5.0": { + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": { + "assemblyVersion": "6.5.0.154", + "fileVersion": "6.5.0.154" + } + }, + "compile": { + "lib/netstandard2.0/NuGet.Frameworks.dll": {} + } + }, + "NUnit/3.14.0": { + "dependencies": { + "NETStandard.Library": "2.0.0" + }, + "runtime": { + "lib/netstandard2.0/nunit.framework.dll": { + "assemblyVersion": "3.14.0.0", + "fileVersion": "3.14.0.0" + } + }, + "compile": { + "lib/netstandard2.0/nunit.framework.dll": {} + } + }, + "NUnit.Analyzers/3.9.0": {}, + "NUnit3TestAdapter/4.5.0": {}, + "Serilog/3.1.1": { + "runtime": { + "lib/net7.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "3.1.1.0" + } + }, + "compile": { + "lib/net7.0/Serilog.dll": {} + } + }, + "Serilog.AspNetCore/8.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Serilog": "3.1.1", + "Serilog.Extensions.Hosting": "8.0.0", + "Serilog.Extensions.Logging": "8.0.0", + "Serilog.Formatting.Compact": "2.0.0", + "Serilog.Settings.Configuration": "8.0.0", + "Serilog.Sinks.Console": "5.0.0", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "5.0.0" + }, + "runtime": { + "lib/net8.0/Serilog.AspNetCore.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.0" + } + }, + "compile": { + "lib/net8.0/Serilog.AspNetCore.dll": {} + } + }, + "Serilog.Extensions.Hosting/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Serilog": "3.1.1", + "Serilog.Extensions.Logging": "8.0.0" + }, + "runtime": { + "lib/net8.0/Serilog.Extensions.Hosting.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "8.0.0.0" + } + }, + "compile": { + "lib/net8.0/Serilog.Extensions.Hosting.dll": {} + } + }, + "Serilog.Extensions.Logging/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "8.0.0", + "Serilog": "3.1.1" + }, + "runtime": { + "lib/net8.0/Serilog.Extensions.Logging.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "8.0.0.0" + } + }, + "compile": { + "lib/net8.0/Serilog.Extensions.Logging.dll": {} + } + }, + "Serilog.Formatting.Compact/2.0.0": { + "dependencies": { + "Serilog": "3.1.1" + }, + "runtime": { + "lib/net7.0/Serilog.Formatting.Compact.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + }, + "compile": { + "lib/net7.0/Serilog.Formatting.Compact.dll": {} + } + }, + "Serilog.Settings.Configuration/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.DependencyModel": "8.0.0", + "Serilog": "3.1.1" + }, + "runtime": { + "lib/net8.0/Serilog.Settings.Configuration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.0.0" + } + }, + "compile": { + "lib/net8.0/Serilog.Settings.Configuration.dll": {} + } + }, + "Serilog.Sinks.Console/5.0.0": { + "dependencies": { + "Serilog": "3.1.1" + }, + "runtime": { + "lib/net7.0/Serilog.Sinks.Console.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + }, + "compile": { + "lib/net7.0/Serilog.Sinks.Console.dll": {} + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "dependencies": { + "Serilog": "3.1.1" + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + }, + "compile": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": {} + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "3.1.1" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + }, + "compile": { + "lib/net5.0/Serilog.Sinks.File.dll": {} + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.6", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.6" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + } + }, + "SQLitePCLRaw.core/2.1.6": { + "dependencies": { + "System.Memory": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": { + "rid": "browser-wasm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "rid": "linux-musl-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "rid": "linux-musl-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "rid": "linux-ppc64le", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "rid": "linux-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + }, + "compile": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": {} + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/8.0.0": {}, + "System.Diagnostics.EventLog/8.0.0": {}, + "System.IO.Pipelines/8.0.0": {}, + "System.Memory/4.5.3": {}, + "System.Reflection.Metadata/1.6.0": {}, + "System.Text.Encodings.Web/8.0.0": {}, + "System.Text.Json/8.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "8.0.0" + } + }, + "Contracts/1.0.0": { + "dependencies": { + "MediatR.Contracts": "2.0.1" + }, + "runtime": { + "Contracts.dll": {} + }, + "compile": { + "Contracts.dll": {} + } + }, + "Entity/1.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite": "8.0.3" + }, + "runtime": { + "Entity.dll": {} + }, + "compile": { + "Entity.dll": {} + } + }, + "Services/1.0.0": { + "dependencies": { + "Contracts": "1.0.0", + "Entity": "1.0.0", + "FluentValidation": "11.9.0", + "FluentValidation.DependencyInjectionExtensions": "11.9.0", + "MediatR": "11.1.0", + "MediatR.Extensions.Microsoft.DependencyInjection": "11.1.0" + }, + "runtime": { + "Services.dll": {} + }, + "compile": { + "Services.dll": {} + } + }, + "WebAPIExam/1.0.0": { + "dependencies": { + "DateOnlyTimeOnly.AspNet": "2.1.1", + "DateOnlyTimeOnly.AspNet.Swashbuckle": "2.1.1", + "FluentValidation": "11.9.0", + "FluentValidation.DependencyInjectionExtensions": "11.9.0", + "Serilog.AspNetCore": "8.0.1", + "Services": "1.0.0", + "Swashbuckle.AspNetCore": "6.4.0" + }, + "runtime": { + "WebAPIExam.dll": {} + }, + "compile": { + "WebAPIExam.dll": {} + } + }, + "Microsoft.AspNetCore.Antiforgery/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Antiforgery.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Abstractions/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.BearerToken/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.BearerToken.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Cookies/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Cookies.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Core/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.OAuth/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.OAuth.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization.Policy/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Authorization/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Endpoints/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Endpoints.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Forms/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Forms.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Server/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Server.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Web/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Web.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Connections.Abstractions/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.CookiePolicy/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.CookiePolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cors/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.Internal/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.Internal.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Extensions/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HostFiltering/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HostFiltering.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Abstractions/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Html.Abstractions/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Html.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Abstractions/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections.Common/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Extensions/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Features/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Results/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Results.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpLogging/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpLogging.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpOverrides/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpOverrides.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpsPolicy/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpsPolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Identity/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Identity.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization.Routing/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Metadata/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Metadata.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Abstractions/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Core/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Cors/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Localization/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Razor/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.RazorPages/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.RazorPages.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.OutputCaching/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.OutputCaching.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.RateLimiting/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.RateLimiting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor.Runtime/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.Runtime.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.RequestDecompression/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.RequestDecompression.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCompression/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCompression.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Rewrite/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Rewrite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing.Abstractions/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.HttpSys/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.HttpSys.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IIS/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IIS.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IISIntegration/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IISIntegration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Session/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Session.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Common/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Core/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.StaticFiles/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.StaticFiles.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebSockets/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.WebSockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebUtilities/8.0.0.0": { + "compile": { + "Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "compileOnly": true + }, + "Microsoft.CSharp/8.0.0.0": { + "compile": { + "Microsoft.CSharp.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Abstractions.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Memory.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Caching.Memory.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Abstractions.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Binder.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.CommandLine.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.FileExtensions.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Ini/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Ini.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Json.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.KeyPerFile/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.KeyPerFile.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.UserSecrets.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.UserSecrets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Xml/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DependencyInjection.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.DependencyInjection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.Abstractions.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Features/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Abstractions.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Composite/8.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Composite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Embedded/8.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Embedded.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Physical.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileSystemGlobbing.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting.Abstractions.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Http/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Core/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Stores/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Stores.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization.Abstractions/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Localization.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Abstractions.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Configuration.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Console.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Console.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Debug.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Debug.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventLog.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventLog.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventSource.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.TraceSource/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.TraceSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.ObjectPool/8.0.0.0": { + "compile": { + "Microsoft.Extensions.ObjectPool.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.ConfigurationExtensions.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.DataAnnotations/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Primitives.Reference/8.0.0.0": { + "compile": { + "Microsoft.Extensions.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.WebEncoders/8.0.0.0": { + "compile": { + "Microsoft.Extensions.WebEncoders.dll": {} + }, + "compileOnly": true + }, + "Microsoft.JSInterop/8.0.0.0": { + "compile": { + "Microsoft.JSInterop.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Net.Http.Headers/8.0.0.0": { + "compile": { + "Microsoft.Net.Http.Headers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic.Core/13.0.0.0": { + "compile": { + "Microsoft.VisualBasic.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic/10.0.0.0": { + "compile": { + "Microsoft.VisualBasic.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Primitives/8.0.0.0": { + "compile": { + "Microsoft.Win32.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Registry/8.0.0.0": { + "compile": { + "Microsoft.Win32.Registry.dll": {} + }, + "compileOnly": true + }, + "mscorlib/4.0.0.0": { + "compile": { + "mscorlib.dll": {} + }, + "compileOnly": true + }, + "netstandard/2.1.0.0": { + "compile": { + "netstandard.dll": {} + }, + "compileOnly": true + }, + "System.AppContext/8.0.0.0": { + "compile": { + "System.AppContext.dll": {} + }, + "compileOnly": true + }, + "System.Buffers/8.0.0.0": { + "compile": { + "System.Buffers.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Concurrent/8.0.0.0": { + "compile": { + "System.Collections.Concurrent.dll": {} + }, + "compileOnly": true + }, + "System.Collections/8.0.0.0": { + "compile": { + "System.Collections.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Immutable/8.0.0.0": { + "compile": { + "System.Collections.Immutable.dll": {} + }, + "compileOnly": true + }, + "System.Collections.NonGeneric/8.0.0.0": { + "compile": { + "System.Collections.NonGeneric.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Specialized/8.0.0.0": { + "compile": { + "System.Collections.Specialized.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Annotations/8.0.0.0": { + "compile": { + "System.ComponentModel.Annotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "compile": { + "System.ComponentModel.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel/8.0.0.0": { + "compile": { + "System.ComponentModel.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.EventBasedAsync/8.0.0.0": { + "compile": { + "System.ComponentModel.EventBasedAsync.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Primitives/8.0.0.0": { + "compile": { + "System.ComponentModel.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.TypeConverter/8.0.0.0": { + "compile": { + "System.ComponentModel.TypeConverter.dll": {} + }, + "compileOnly": true + }, + "System.Configuration/4.0.0.0": { + "compile": { + "System.Configuration.dll": {} + }, + "compileOnly": true + }, + "System.Console/8.0.0.0": { + "compile": { + "System.Console.dll": {} + }, + "compileOnly": true + }, + "System.Core/4.0.0.0": { + "compile": { + "System.Core.dll": {} + }, + "compileOnly": true + }, + "System.Data.Common/8.0.0.0": { + "compile": { + "System.Data.Common.dll": {} + }, + "compileOnly": true + }, + "System.Data.DataSetExtensions/8.0.0.0": { + "compile": { + "System.Data.DataSetExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Data/4.0.0.0": { + "compile": { + "System.Data.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Contracts/8.0.0.0": { + "compile": { + "System.Diagnostics.Contracts.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Debug/8.0.0.0": { + "compile": { + "System.Diagnostics.Debug.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.DiagnosticSource.Reference/8.0.0.0": { + "compile": { + "System.Diagnostics.DiagnosticSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.EventLog.Reference/8.0.0.0": { + "compile": { + "System.Diagnostics.EventLog.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.FileVersionInfo/8.0.0.0": { + "compile": { + "System.Diagnostics.FileVersionInfo.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Process/8.0.0.0": { + "compile": { + "System.Diagnostics.Process.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.StackTrace/8.0.0.0": { + "compile": { + "System.Diagnostics.StackTrace.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TextWriterTraceListener/8.0.0.0": { + "compile": { + "System.Diagnostics.TextWriterTraceListener.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tools/8.0.0.0": { + "compile": { + "System.Diagnostics.Tools.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TraceSource/8.0.0.0": { + "compile": { + "System.Diagnostics.TraceSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tracing/8.0.0.0": { + "compile": { + "System.Diagnostics.Tracing.dll": {} + }, + "compileOnly": true + }, + "System/4.0.0.0": { + "compile": { + "System.dll": {} + }, + "compileOnly": true + }, + "System.Drawing/4.0.0.0": { + "compile": { + "System.Drawing.dll": {} + }, + "compileOnly": true + }, + "System.Drawing.Primitives/8.0.0.0": { + "compile": { + "System.Drawing.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Dynamic.Runtime/8.0.0.0": { + "compile": { + "System.Dynamic.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Formats.Asn1/8.0.0.0": { + "compile": { + "System.Formats.Asn1.dll": {} + }, + "compileOnly": true + }, + "System.Formats.Tar/8.0.0.0": { + "compile": { + "System.Formats.Tar.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Calendars/8.0.0.0": { + "compile": { + "System.Globalization.Calendars.dll": {} + }, + "compileOnly": true + }, + "System.Globalization/8.0.0.0": { + "compile": { + "System.Globalization.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Extensions/8.0.0.0": { + "compile": { + "System.Globalization.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.Brotli/8.0.0.0": { + "compile": { + "System.IO.Compression.Brotli.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression/8.0.0.0": { + "compile": { + "System.IO.Compression.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "compile": { + "System.IO.Compression.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.ZipFile/8.0.0.0": { + "compile": { + "System.IO.Compression.ZipFile.dll": {} + }, + "compileOnly": true + }, + "System.IO/8.0.0.0": { + "compile": { + "System.IO.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.AccessControl/8.0.0.0": { + "compile": { + "System.IO.FileSystem.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem/8.0.0.0": { + "compile": { + "System.IO.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.DriveInfo/8.0.0.0": { + "compile": { + "System.IO.FileSystem.DriveInfo.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Primitives/8.0.0.0": { + "compile": { + "System.IO.FileSystem.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Watcher/8.0.0.0": { + "compile": { + "System.IO.FileSystem.Watcher.dll": {} + }, + "compileOnly": true + }, + "System.IO.IsolatedStorage/8.0.0.0": { + "compile": { + "System.IO.IsolatedStorage.dll": {} + }, + "compileOnly": true + }, + "System.IO.MemoryMappedFiles/8.0.0.0": { + "compile": { + "System.IO.MemoryMappedFiles.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipelines.Reference/8.0.0.0": { + "compile": { + "System.IO.Pipelines.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipes.AccessControl/8.0.0.0": { + "compile": { + "System.IO.Pipes.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipes/8.0.0.0": { + "compile": { + "System.IO.Pipes.dll": {} + }, + "compileOnly": true + }, + "System.IO.UnmanagedMemoryStream/8.0.0.0": { + "compile": { + "System.IO.UnmanagedMemoryStream.dll": {} + }, + "compileOnly": true + }, + "System.Linq/8.0.0.0": { + "compile": { + "System.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Expressions/8.0.0.0": { + "compile": { + "System.Linq.Expressions.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Parallel/8.0.0.0": { + "compile": { + "System.Linq.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Queryable/8.0.0.0": { + "compile": { + "System.Linq.Queryable.dll": {} + }, + "compileOnly": true + }, + "System.Memory.Reference/8.0.0.0": { + "compile": { + "System.Memory.dll": {} + }, + "compileOnly": true + }, + "System.Net/4.0.0.0": { + "compile": { + "System.Net.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http/8.0.0.0": { + "compile": { + "System.Net.Http.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http.Json/8.0.0.0": { + "compile": { + "System.Net.Http.Json.dll": {} + }, + "compileOnly": true + }, + "System.Net.HttpListener/8.0.0.0": { + "compile": { + "System.Net.HttpListener.dll": {} + }, + "compileOnly": true + }, + "System.Net.Mail/8.0.0.0": { + "compile": { + "System.Net.Mail.dll": {} + }, + "compileOnly": true + }, + "System.Net.NameResolution/8.0.0.0": { + "compile": { + "System.Net.NameResolution.dll": {} + }, + "compileOnly": true + }, + "System.Net.NetworkInformation/8.0.0.0": { + "compile": { + "System.Net.NetworkInformation.dll": {} + }, + "compileOnly": true + }, + "System.Net.Ping/8.0.0.0": { + "compile": { + "System.Net.Ping.dll": {} + }, + "compileOnly": true + }, + "System.Net.Primitives/8.0.0.0": { + "compile": { + "System.Net.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Net.Quic/8.0.0.0": { + "compile": { + "System.Net.Quic.dll": {} + }, + "compileOnly": true + }, + "System.Net.Requests/8.0.0.0": { + "compile": { + "System.Net.Requests.dll": {} + }, + "compileOnly": true + }, + "System.Net.Security/8.0.0.0": { + "compile": { + "System.Net.Security.dll": {} + }, + "compileOnly": true + }, + "System.Net.ServicePoint/8.0.0.0": { + "compile": { + "System.Net.ServicePoint.dll": {} + }, + "compileOnly": true + }, + "System.Net.Sockets/8.0.0.0": { + "compile": { + "System.Net.Sockets.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebClient/8.0.0.0": { + "compile": { + "System.Net.WebClient.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebHeaderCollection/8.0.0.0": { + "compile": { + "System.Net.WebHeaderCollection.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebProxy/8.0.0.0": { + "compile": { + "System.Net.WebProxy.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets.Client/8.0.0.0": { + "compile": { + "System.Net.WebSockets.Client.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets/8.0.0.0": { + "compile": { + "System.Net.WebSockets.dll": {} + }, + "compileOnly": true + }, + "System.Numerics/4.0.0.0": { + "compile": { + "System.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Numerics.Vectors/8.0.0.0": { + "compile": { + "System.Numerics.Vectors.dll": {} + }, + "compileOnly": true + }, + "System.ObjectModel/8.0.0.0": { + "compile": { + "System.ObjectModel.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.DispatchProxy/8.0.0.0": { + "compile": { + "System.Reflection.DispatchProxy.dll": {} + }, + "compileOnly": true + }, + "System.Reflection/8.0.0.0": { + "compile": { + "System.Reflection.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit/8.0.0.0": { + "compile": { + "System.Reflection.Emit.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.ILGeneration/8.0.0.0": { + "compile": { + "System.Reflection.Emit.ILGeneration.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.Lightweight/8.0.0.0": { + "compile": { + "System.Reflection.Emit.Lightweight.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Extensions/8.0.0.0": { + "compile": { + "System.Reflection.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Metadata.Reference/8.0.0.0": { + "compile": { + "System.Reflection.Metadata.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Primitives/8.0.0.0": { + "compile": { + "System.Reflection.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.TypeExtensions/8.0.0.0": { + "compile": { + "System.Reflection.TypeExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Reader/8.0.0.0": { + "compile": { + "System.Resources.Reader.dll": {} + }, + "compileOnly": true + }, + "System.Resources.ResourceManager/8.0.0.0": { + "compile": { + "System.Resources.ResourceManager.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Writer/8.0.0.0": { + "compile": { + "System.Resources.Writer.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.Unsafe/8.0.0.0": { + "compile": { + "System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.VisualC/8.0.0.0": { + "compile": { + "System.Runtime.CompilerServices.VisualC.dll": {} + }, + "compileOnly": true + }, + "System.Runtime/8.0.0.0": { + "compile": { + "System.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Extensions/8.0.0.0": { + "compile": { + "System.Runtime.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Handles/8.0.0.0": { + "compile": { + "System.Runtime.Handles.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices/8.0.0.0": { + "compile": { + "System.Runtime.InteropServices.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.JavaScript/8.0.0.0": { + "compile": { + "System.Runtime.InteropServices.JavaScript.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.RuntimeInformation/8.0.0.0": { + "compile": { + "System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Intrinsics/8.0.0.0": { + "compile": { + "System.Runtime.Intrinsics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Loader/8.0.0.0": { + "compile": { + "System.Runtime.Loader.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Numerics/8.0.0.0": { + "compile": { + "System.Runtime.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization/4.0.0.0": { + "compile": { + "System.Runtime.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Formatters/8.0.0.0": { + "compile": { + "System.Runtime.Serialization.Formatters.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Json/8.0.0.0": { + "compile": { + "System.Runtime.Serialization.Json.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Primitives/8.0.0.0": { + "compile": { + "System.Runtime.Serialization.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Xml/8.0.0.0": { + "compile": { + "System.Runtime.Serialization.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security.AccessControl/8.0.0.0": { + "compile": { + "System.Security.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Claims/8.0.0.0": { + "compile": { + "System.Security.Claims.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Algorithms/8.0.0.0": { + "compile": { + "System.Security.Cryptography.Algorithms.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Cng/8.0.0.0": { + "compile": { + "System.Security.Cryptography.Cng.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Csp/8.0.0.0": { + "compile": { + "System.Security.Cryptography.Csp.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography/8.0.0.0": { + "compile": { + "System.Security.Cryptography.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Encoding/8.0.0.0": { + "compile": { + "System.Security.Cryptography.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.OpenSsl/8.0.0.0": { + "compile": { + "System.Security.Cryptography.OpenSsl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Primitives/8.0.0.0": { + "compile": { + "System.Security.Cryptography.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.X509Certificates/8.0.0.0": { + "compile": { + "System.Security.Cryptography.X509Certificates.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Xml/8.0.0.0": { + "compile": { + "System.Security.Cryptography.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security/4.0.0.0": { + "compile": { + "System.Security.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal/8.0.0.0": { + "compile": { + "System.Security.Principal.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal.Windows/8.0.0.0": { + "compile": { + "System.Security.Principal.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Security.SecureString/8.0.0.0": { + "compile": { + "System.Security.SecureString.dll": {} + }, + "compileOnly": true + }, + "System.ServiceModel.Web/4.0.0.0": { + "compile": { + "System.ServiceModel.Web.dll": {} + }, + "compileOnly": true + }, + "System.ServiceProcess/4.0.0.0": { + "compile": { + "System.ServiceProcess.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.CodePages/8.0.0.0": { + "compile": { + "System.Text.Encoding.CodePages.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding/8.0.0.0": { + "compile": { + "System.Text.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.Extensions/8.0.0.0": { + "compile": { + "System.Text.Encoding.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encodings.Web.Reference/8.0.0.0": { + "compile": { + "System.Text.Encodings.Web.dll": {} + }, + "compileOnly": true + }, + "System.Text.Json.Reference/8.0.0.0": { + "compile": { + "System.Text.Json.dll": {} + }, + "compileOnly": true + }, + "System.Text.RegularExpressions/8.0.0.0": { + "compile": { + "System.Text.RegularExpressions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Channels/8.0.0.0": { + "compile": { + "System.Threading.Channels.dll": {} + }, + "compileOnly": true + }, + "System.Threading/8.0.0.0": { + "compile": { + "System.Threading.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Overlapped/8.0.0.0": { + "compile": { + "System.Threading.Overlapped.dll": {} + }, + "compileOnly": true + }, + "System.Threading.RateLimiting/8.0.0.0": { + "compile": { + "System.Threading.RateLimiting.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Dataflow/8.0.0.0": { + "compile": { + "System.Threading.Tasks.Dataflow.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks/8.0.0.0": { + "compile": { + "System.Threading.Tasks.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Extensions/8.0.0.0": { + "compile": { + "System.Threading.Tasks.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Parallel/8.0.0.0": { + "compile": { + "System.Threading.Tasks.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Thread/8.0.0.0": { + "compile": { + "System.Threading.Thread.dll": {} + }, + "compileOnly": true + }, + "System.Threading.ThreadPool/8.0.0.0": { + "compile": { + "System.Threading.ThreadPool.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Timer/8.0.0.0": { + "compile": { + "System.Threading.Timer.dll": {} + }, + "compileOnly": true + }, + "System.Transactions/4.0.0.0": { + "compile": { + "System.Transactions.dll": {} + }, + "compileOnly": true + }, + "System.Transactions.Local/8.0.0.0": { + "compile": { + "System.Transactions.Local.dll": {} + }, + "compileOnly": true + }, + "System.ValueTuple/8.0.0.0": { + "compile": { + "System.ValueTuple.dll": {} + }, + "compileOnly": true + }, + "System.Web/4.0.0.0": { + "compile": { + "System.Web.dll": {} + }, + "compileOnly": true + }, + "System.Web.HttpUtility/8.0.0.0": { + "compile": { + "System.Web.HttpUtility.dll": {} + }, + "compileOnly": true + }, + "System.Windows/4.0.0.0": { + "compile": { + "System.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Xml/4.0.0.0": { + "compile": { + "System.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Linq/4.0.0.0": { + "compile": { + "System.Xml.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Xml.ReaderWriter/8.0.0.0": { + "compile": { + "System.Xml.ReaderWriter.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Serialization/4.0.0.0": { + "compile": { + "System.Xml.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XDocument/8.0.0.0": { + "compile": { + "System.Xml.XDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlDocument/8.0.0.0": { + "compile": { + "System.Xml.XmlDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlSerializer/8.0.0.0": { + "compile": { + "System.Xml.XmlSerializer.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath/8.0.0.0": { + "compile": { + "System.Xml.XPath.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath.XDocument/8.0.0.0": { + "compile": { + "System.Xml.XPath.XDocument.dll": {} + }, + "compileOnly": true + }, + "WindowsBase/4.0.0.0": { + "compile": { + "WindowsBase.dll": {} + }, + "compileOnly": true + } + } + }, + "libraries": { + "AcceTickTest/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "coverlet.collector/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tW3lsNS+dAEII6YGUX/VMoJjBS1QvsxqJeqLaJXub08y1FSjasFPtQ4UBUsudE9PNrzLjooClMsPtY2cZLdXpQ==", + "path": "coverlet.collector/6.0.0", + "hashPath": "coverlet.collector.6.0.0.nupkg.sha512" + }, + "DateOnlyTimeOnly.AspNet/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7HlGV6sm0efRMquxnZaoqV3KybUMOs1IaJ4TaX85v7IZF01h1YV6Zscos9g4qQfrGYfvqLjbpe3Q54cmMBeISQ==", + "path": "dateonlytimeonly.aspnet/2.1.1", + "hashPath": "dateonlytimeonly.aspnet.2.1.1.nupkg.sha512" + }, + "DateOnlyTimeOnly.AspNet.Swashbuckle/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X2k2yelbE2jyBI/pOv5T615ell5Rhmb31MV1mM0Q+VpqNUran20gdGz9MBP9dbAcbH1EQ/l/s/EcX/+Bp365jQ==", + "path": "dateonlytimeonly.aspnet.swashbuckle/2.1.1", + "hashPath": "dateonlytimeonly.aspnet.swashbuckle.2.1.1.nupkg.sha512" + }, + "FluentValidation/11.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VneVlTvwYDkfHV5av3QrQ0amALgrLX6LV94wlYyEsh0B/klJBW7C8y2eAtj5tOZ3jH6CAVpr4s1ZGgew/QWyig==", + "path": "fluentvalidation/11.9.0", + "hashPath": "fluentvalidation.11.9.0.nupkg.sha512" + }, + "FluentValidation.DependencyInjectionExtensions/11.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ko++xvN7HUf4WlHJL6bhsybUj/uho8ApOYIdxGjpF8Ot7Fukz6LRfRJ06H0KXhWqmMHWEbu89hJbjKJHtg7b9g==", + "path": "fluentvalidation.dependencyinjectionextensions/11.9.0", + "hashPath": "fluentvalidation.dependencyinjectionextensions.11.9.0.nupkg.sha512" + }, + "MediatR/11.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YIbtrLOyeCuIv8vIuHL/mMdls5xmgS36pIOJDxKZuu55nxA2MI2Z+E/Uk0z+F/LE11AGmpjplOM0NZ91m5LQBA==", + "path": "mediatr/11.1.0", + "hashPath": "mediatr.11.1.0.nupkg.sha512" + }, + "MediatR.Contracts/2.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", + "path": "mediatr.contracts/2.0.1", + "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" + }, + "MediatR.Extensions.Microsoft.DependencyInjection/11.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RW3etRuy6Xp63cgqfC0r/ITOtUT0f9ymJl1+1XZdzsYUsfv7WBPC2kXGOP8IYpY/6c4Q6805vbIW/88DopUs3w==", + "path": "mediatr.extensions.microsoft.dependencyinjection/11.1.0", + "hashPath": "mediatr.extensions.microsoft.dependencyinjection.11.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Testing/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g+RQYslZ86OmgcvOa4eZooCZ1IzrEqgKVpQ8SU3qwLSyvlBh8PUJAwMrpN6Lmm53DZ47ZqHSNB1rO5ZnTiAdrg==", + "path": "microsoft.aspnetcore.mvc.testing/8.0.3", + "hashPath": "microsoft.aspnetcore.mvc.testing.8.0.3.nupkg.sha512" + }, + "Microsoft.AspNetCore.TestHost/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1uZ+wmx8cw5L/cdgEL+54/+6H83+joSfZP6j92nP4Hk2MejD25gnVdhlCsm6O4fiIwKqNoU2H3a9s3laQnTj5w==", + "path": "microsoft.aspnetcore.testhost/8.0.3", + "hashPath": "microsoft.aspnetcore.testhost.8.0.3.nupkg.sha512" + }, + "Microsoft.CodeCoverage/17.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KC8SXWbGIdoFVdlxKk9WHccm0llm9HypcHMLUUFabRiTS3SO2fQXNZfdiF3qkEdTJhbRrxhdRxjL4jbtwPq4Ew==", + "path": "microsoft.codecoverage/17.8.0", + "hashPath": "microsoft.codecoverage.17.8.0.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1euU97SivROH7nVIh2c/V63e0nQ73Txr/YlysB7fJuTV8LcfeL9WO1gdiJWcRIDoq8/McxcTc7evY6JJ1pD95w==", + "path": "microsoft.data.sqlite.core/8.0.3", + "hashPath": "microsoft.data.sqlite.core.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QUPQbeq4yCjgIL/6PzkhfwhljXmai3CNOsErWFJ/WJ1Z41V8+At0Bi4PT8/2pX25kPgf83g0CUKIZd0QbeKT4A==", + "path": "microsoft.entityframeworkcore/8.0.3", + "hashPath": "microsoft.entityframeworkcore.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cW+SKdx34wZ25ZVKCpk/6+6z27wrZlQ1qXyx7UWpy34s9CyAojH0QiYlV/2owNOGSAH67rm+LxAjUOicsqlGzQ==", + "path": "microsoft.entityframeworkcore.abstractions/8.0.3", + "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3csRAzz5O5Gn+GQBMyLn26OICtEo2/U2iDDygQhKb3LnC78bAUvutkMqvb0Ek5A6uHrBcZQrKQJfkgfnRT5XZw==", + "path": "microsoft.entityframeworkcore.analyzers/8.0.3", + "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8JnVZHWaNFkrrD/FC0O4jekiHIYey8y6TQ4Co3OzLz0wd5Dm1cwJfTp++1TvaVu0BBd4bVDtiktppa5epuoPrA==", + "path": "microsoft.entityframeworkcore.relational/8.0.3", + "hashPath": "microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mdHNwlJkV71pKJU1MzIbjHWyjLw03S2kCO6mnuZL6V7uDv5ZxncoT5OELUiv7wRAYxnBucrl7ZPT76hwhBKBFw==", + "path": "microsoft.entityframeworkcore.sqlite/8.0.3", + "hashPath": "microsoft.entityframeworkcore.sqlite.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6DvYtnLdpViXgA5F2Z/cIJfWIv31Eby5j2YqUzr+sgJulKtCX+ypvmfooXlYnCwJDlcmIaMY27TMnlrCcUvZmA==", + "path": "microsoft.entityframeworkcore.sqlite.core/8.0.3", + "hashPath": "microsoft.entityframeworkcore.sqlite.core.8.0.3.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "path": "microsoft.extensions.caching.memory/8.0.0", + "hashPath": "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==", + "path": "microsoft.extensions.configuration/8.0.0", + "hashPath": "microsoft.extensions.configuration.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==", + "path": "microsoft.extensions.configuration.binder/8.0.0", + "hashPath": "microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.CommandLine/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NZuZMz3Q8Z780nKX3ifV1fE7lS+6pynDHK71OfU4OZ1ItgvDOhyOC7E6z+JMZrAj63zRpwbdldYFk499t3+1dQ==", + "path": "microsoft.extensions.configuration.commandline/8.0.0", + "hashPath": "microsoft.extensions.configuration.commandline.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-plvZ0ZIpq+97gdPNNvhwvrEZ92kNml9hd1pe3idMA7svR0PztdzVLkoWLcRFgySYXUJc3kSM3Xw3mNFMo/bxRA==", + "path": "microsoft.extensions.configuration.environmentvariables/8.0.0", + "hashPath": "microsoft.extensions.configuration.environmentvariables.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==", + "path": "microsoft.extensions.configuration.fileextensions/8.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==", + "path": "microsoft.extensions.configuration.json/8.0.0", + "hashPath": "microsoft.extensions.configuration.json.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ihDHu2dJYQird9pl2CbdwuNDfvCZdOS0S7SPlNfhPt0B81UTT+yyZKz2pimFZGUp3AfuBRnqUCxB2SjsZKHVUw==", + "path": "microsoft.extensions.configuration.usersecrets/8.0.0", + "hashPath": "microsoft.extensions.configuration.usersecrets.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", + "path": "microsoft.extensions.dependencymodel/8.0.0", + "hashPath": "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3PZp/YSkIXrF7QK7PfC1bkyRYwqOHpWFad8Qx+4wkuumAeXo1NHaxpS9LboNA9OvNSAu+QOVlXbMyoY+pHSqcw==", + "path": "microsoft.extensions.diagnostics/8.0.0", + "hashPath": "microsoft.extensions.diagnostics.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "path": "microsoft.extensions.diagnostics.abstractions/8.0.0", + "hashPath": "microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==", + "path": "microsoft.extensions.fileproviders.abstractions/8.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==", + "path": "microsoft.extensions.fileproviders.physical/8.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==", + "path": "microsoft.extensions.filesystemglobbing/8.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ItYHpdqVp5/oFLT5QqbopnkKlyFG9EW/9nhM6/yfObeKt6Su0wkBio6AizgRHGNwhJuAtlE5VIjow5JOTrip6w==", + "path": "microsoft.extensions.hosting/8.0.0", + "hashPath": "microsoft.extensions.hosting.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "path": "microsoft.extensions.hosting.abstractions/8.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "path": "microsoft.extensions.logging/8.0.0", + "hashPath": "microsoft.extensions.logging.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "path": "microsoft.extensions.logging.abstractions/8.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ixXXV0G/12g6MXK65TLngYN9V5hQQRuV+fZi882WIoVJT7h5JvoYoxTEwCgdqwLjSneqh1O+66gM8sMr9z/rsQ==", + "path": "microsoft.extensions.logging.configuration/8.0.0", + "hashPath": "microsoft.extensions.logging.configuration.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Console/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-e+48o7DztoYog+PY430lPxrM4mm3PbA6qucvQtUDDwVo4MO+ejMw7YGc/o2rnxbxj4isPxdfKFzTxvXMwAz83A==", + "path": "microsoft.extensions.logging.console/8.0.0", + "hashPath": "microsoft.extensions.logging.console.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dt0x21qBdudHLW/bjMJpkixv858RRr8eSomgVbU8qljOyfrfDGi1JQvpF9w8S7ziRPtRKisuWaOwFxJM82GxeA==", + "path": "microsoft.extensions.logging.debug/8.0.0", + "hashPath": "microsoft.extensions.logging.debug.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventLog/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3X9D3sl7EmOu7vQp5MJrmIJBl5XSdOhZPYXUeFfYa6Nnm9+tok8x3t3IVPLhm7UJtPOU61ohFchw8rNm9tIYOQ==", + "path": "microsoft.extensions.logging.eventlog/8.0.0", + "hashPath": "microsoft.extensions.logging.eventlog.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.EventSource/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oKcPMrw+luz2DUAKhwFXrmFikZWnyc8l2RKoQwqU3KIZZjcfoJE0zRHAnqATfhRZhtcbjl/QkiY2Xjxp0xu+6w==", + "path": "microsoft.extensions.logging.eventsource/8.0.0", + "hashPath": "microsoft.extensions.logging.eventsource.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "path": "microsoft.extensions.options/8.0.0", + "hashPath": "microsoft.extensions.options.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0f4DMRqEd50zQh+UyJc+/HiBsZ3vhAQALgdkcQEalSH1L2isdC7Yj54M3cyo5e+BeO5fcBQ7Dxly8XiBBcvRgw==", + "path": "microsoft.extensions.options.configurationextensions/8.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "path": "microsoft.extensions.primitives/8.0.0", + "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" + }, + "Microsoft.NET.Test.Sdk/17.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmTYGbD/YuDHmApIENdoyN1jCk0Rj1fJB0+B/fVekyTdVidr91IlzhqzytiUgaEAzL1ZJcYCme0MeBMYvJVzvw==", + "path": "microsoft.net.test.sdk/17.8.0", + "hashPath": "microsoft.net.test.sdk.17.8.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "path": "microsoft.netcore.platforms/1.1.0", + "hashPath": "microsoft.netcore.platforms.1.1.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.TestPlatform.ObjectModel/17.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AYy6vlpGMfz5kOFq99L93RGbqftW/8eQTqjT9iGXW6s9MRP3UdtY8idJ8rJcjeSja8A18IhIro5YnH3uv1nz4g==", + "path": "microsoft.testplatform.objectmodel/17.8.0", + "hashPath": "microsoft.testplatform.objectmodel.17.8.0.nupkg.sha512" + }, + "Microsoft.TestPlatform.TestHost/17.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ivcl/7SGRmOT0YYrHQGohWiT5YCpkmy/UEzldfVisLm6QxbLaK3FAJqZXI34rnRLmqqDCeMQxKINwmKwAPiDw==", + "path": "microsoft.testplatform.testhost/17.8.0", + "hashPath": "microsoft.testplatform.testhost.17.8.0.nupkg.sha512" + }, + "NETStandard.Library/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==", + "path": "netstandard.library/2.0.0", + "hashPath": "netstandard.library.2.0.0.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "path": "newtonsoft.json/13.0.1", + "hashPath": "newtonsoft.json.13.0.1.nupkg.sha512" + }, + "NuGet.Frameworks/6.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QWINE2x3MbTODsWT1Gh71GaGb5icBz4chS8VYvTgsBnsi8esgN6wtHhydd7fvToWECYGq7T4cgBBDiKD/363fg==", + "path": "nuget.frameworks/6.5.0", + "hashPath": "nuget.frameworks.6.5.0.nupkg.sha512" + }, + "NUnit/3.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-R7iPwD7kbOaP3o2zldWJbWeMQAvDKD0uld27QvA3PAALl1unl7x0v2J7eGiJOYjimV/BuGT4VJmr45RjS7z4LA==", + "path": "nunit/3.14.0", + "hashPath": "nunit.3.14.0.nupkg.sha512" + }, + "NUnit.Analyzers/3.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8bGAEljlBnzR+uU8oGQhTVKnbgBw1Mo71qjVkgzHdvtUkiB5XOIDyjAcS4KUo/j+F2Zv/xBUZRkCWXmejx4bfA==", + "path": "nunit.analyzers/3.9.0", + "hashPath": "nunit.analyzers.3.9.0.nupkg.sha512" + }, + "NUnit3TestAdapter/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s8JpqTe9bI2f49Pfr3dFRfoVSuFQyraTj68c3XXjIS/MRGvvkLnrg6RLqnTjdShX+AdFUCCU/4Xex58AdUfs6A==", + "path": "nunit3testadapter/4.5.0", + "hashPath": "nunit3testadapter.4.5.0.nupkg.sha512" + }, + "Serilog/3.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P6G4/4Kt9bT635bhuwdXlJ2SCqqn2nhh4gqFqQueCOr9bK/e7W9ll/IoX1Ter948cV2Z/5+5v8pAfJYUISY03A==", + "path": "serilog/3.1.1", + "hashPath": "serilog.3.1.1.nupkg.sha512" + }, + "Serilog.AspNetCore/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B/X+wAfS7yWLVOTD83B+Ip9yl4MkhioaXj90JSoWi1Ayi8XHepEnsBdrkojg08eodCnmOKmShFUN2GgEc6c0CQ==", + "path": "serilog.aspnetcore/8.0.1", + "hashPath": "serilog.aspnetcore.8.0.1.nupkg.sha512" + }, + "Serilog.Extensions.Hosting/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-db0OcbWeSCvYQkHWu6n0v40N4kKaTAXNjlM3BKvcbwvNzYphQFcBR+36eQ/7hMMwOkJvAyLC2a9/jNdUL5NjtQ==", + "path": "serilog.extensions.hosting/8.0.0", + "hashPath": "serilog.extensions.hosting.8.0.0.nupkg.sha512" + }, + "Serilog.Extensions.Logging/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YEAMWu1UnWgf1c1KP85l1SgXGfiVo0Rz6x08pCiPOIBt2Qe18tcZLvdBUuV5o1QHvrs8FAry9wTIhgBRtjIlEg==", + "path": "serilog.extensions.logging/8.0.0", + "hashPath": "serilog.extensions.logging.8.0.0.nupkg.sha512" + }, + "Serilog.Formatting.Compact/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ob6z3ikzFM3D1xalhFuBIK1IOWf+XrQq+H4KeH4VqBcPpNcmUgZlRQ2h3Q7wvthpdZBBoY86qZOI2LCXNaLlNA==", + "path": "serilog.formatting.compact/2.0.0", + "hashPath": "serilog.formatting.compact.2.0.0.nupkg.sha512" + }, + "Serilog.Settings.Configuration/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nR0iL5HwKj5v6ULo3/zpP8NMcq9E2pxYA6XKTSWCbugVs4YqPyvaqaKOY+OMpPivKp7zMEpax2UKHnDodbRB0Q==", + "path": "serilog.settings.configuration/8.0.0", + "hashPath": "serilog.settings.configuration.8.0.0.nupkg.sha512" + }, + "Serilog.Sinks.Console/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IZ6bn79k+3SRXOBpwSOClUHikSkp2toGPCZ0teUkscv4dpDg9E2R2xVsNkLmwddE4OpNVO3N0xiYsAH556vN8Q==", + "path": "serilog.sinks.console/5.0.0", + "hashPath": "serilog.sinks.console.5.0.0.nupkg.sha512" + }, + "Serilog.Sinks.Debug/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==", + "path": "serilog.sinks.debug/2.0.0", + "hashPath": "serilog.sinks.debug.2.0.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==", + "path": "sqlitepclraw.core/2.1.6", + "hashPath": "sqlitepclraw.core.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "path": "swashbuckle.aspnetcore/6.4.0", + "hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==", + "path": "system.diagnostics.diagnosticsource/8.0.0", + "hashPath": "system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==", + "path": "system.diagnostics.eventlog/8.0.0", + "hashPath": "system.diagnostics.eventlog.8.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA==", + "path": "system.io.pipelines/8.0.0", + "hashPath": "system.io.pipelines.8.0.0.nupkg.sha512" + }, + "System.Memory/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "path": "system.memory/4.5.3", + "hashPath": "system.memory.4.5.3.nupkg.sha512" + }, + "System.Reflection.Metadata/1.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "path": "system.reflection.metadata/1.6.0", + "hashPath": "system.reflection.metadata.1.6.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", + "path": "system.text.encodings.web/8.0.0", + "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512" + }, + "System.Text.Json/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", + "path": "system.text.json/8.0.0", + "hashPath": "system.text.json.8.0.0.nupkg.sha512" + }, + "Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Entity/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "WebAPIExam/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Antiforgery/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.BearerToken/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Cookies/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Core/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.OAuth/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization.Policy/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Authorization/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Endpoints/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Forms/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Server/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Web/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Connections.Abstractions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.CookiePolicy/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cors/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.Internal/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Extensions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HostFiltering/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Html.Abstractions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Abstractions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections.Common/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Extensions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Features/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Results/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpLogging/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpOverrides/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpsPolicy/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Identity/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization.Routing/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Metadata/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Abstractions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Core/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Cors/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Localization/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Razor/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.RazorPages/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.OutputCaching/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.RateLimiting/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor.Runtime/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.RequestDecompression/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCompression/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Rewrite/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing.Abstractions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.HttpSys/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IIS/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IISIntegration/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Session/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Common/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Core/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.StaticFiles/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebSockets/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebUtilities/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.CSharp/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Caching.Abstractions.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Caching.Memory.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Abstractions.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Binder.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.CommandLine.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.FileExtensions.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Ini/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Json.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.KeyPerFile/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.UserSecrets.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Xml/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.DependencyInjection.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.Abstractions.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Features/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Abstractions.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Composite/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Embedded/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Physical.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileSystemGlobbing.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Hosting.Abstractions.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Hosting.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Http/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Core/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Stores/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Localization.Abstractions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Localization/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Abstractions.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Configuration.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Console.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Debug.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventLog.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventSource.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.TraceSource/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ObjectPool/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.DataAnnotations/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Primitives.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.WebEncoders/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.JSInterop/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Net.Http.Headers/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic.Core/13.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Primitives/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Registry/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "mscorlib/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "netstandard/2.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.AppContext/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Buffers/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Concurrent/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Immutable/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.NonGeneric/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Specialized/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Annotations/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.EventBasedAsync/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Primitives/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.TypeConverter/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Configuration/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Console/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Core/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.Common/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.DataSetExtensions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Contracts/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Debug/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.DiagnosticSource.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.EventLog.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.FileVersionInfo/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Process/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.StackTrace/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TextWriterTraceListener/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tools/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TraceSource/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tracing/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing.Primitives/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Dynamic.Runtime/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Formats.Asn1/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Formats.Tar/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Calendars/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Extensions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.Brotli/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.ZipFile/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.AccessControl/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.DriveInfo/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Primitives/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Watcher/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.IsolatedStorage/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.MemoryMappedFiles/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipelines.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipes.AccessControl/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipes/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.UnmanagedMemoryStream/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Expressions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Parallel/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Queryable/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Memory.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http.Json/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.HttpListener/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Mail/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NameResolution/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NetworkInformation/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Ping/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Primitives/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Quic/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Requests/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Security/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.ServicePoint/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Sockets/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebClient/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebHeaderCollection/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebProxy/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets.Client/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics.Vectors/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ObjectModel/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.DispatchProxy/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.ILGeneration/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.Lightweight/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Extensions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Metadata.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Primitives/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.TypeExtensions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Reader/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.ResourceManager/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Writer/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.Unsafe/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.VisualC/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Extensions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Handles/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.JavaScript/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.RuntimeInformation/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Intrinsics/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Loader/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Numerics/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Formatters/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Json/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Primitives/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Xml/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.AccessControl/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Claims/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Algorithms/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Cng/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Csp/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Encoding/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.OpenSsl/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Primitives/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.X509Certificates/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Xml/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal.Windows/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.SecureString/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceModel.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceProcess/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.CodePages/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.Extensions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encodings.Web.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Json.Reference/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.RegularExpressions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Channels/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Overlapped/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.RateLimiting/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Dataflow/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Extensions/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Parallel/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Thread/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.ThreadPool/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Timer/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions.Local/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ValueTuple/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web.HttpUtility/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Windows/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Linq/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.ReaderWriter/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XDocument/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlDocument/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlSerializer/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath.XDocument/8.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "WindowsBase/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/AcceTickTest.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/AcceTickTest.dll new file mode 100644 index 0000000..bfe7ede Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/AcceTickTest.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/AcceTickTest.pdb b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/AcceTickTest.pdb new file mode 100644 index 0000000..9da228f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/AcceTickTest.pdb differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/AcceTickTest.runtimeconfig.json b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/AcceTickTest.runtimeconfig.json new file mode 100644 index 0000000..a42fa34 --- /dev/null +++ b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/AcceTickTest.runtimeconfig.json @@ -0,0 +1,19 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Contracts.deps.json b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Contracts.deps.json new file mode 100644 index 0000000..e1c6184 --- /dev/null +++ b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Contracts.deps.json @@ -0,0 +1,41 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "Contracts/1.0.0": { + "dependencies": { + "MediatR.Contracts": "2.0.1" + }, + "runtime": { + "Contracts.dll": {} + } + }, + "MediatR.Contracts/2.0.1": { + "runtime": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "assemblyVersion": "2.0.1.0", + "fileVersion": "2.0.1.0" + } + } + } + } + }, + "libraries": { + "Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "MediatR.Contracts/2.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", + "path": "mediatr.contracts/2.0.1", + "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Contracts.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Contracts.dll new file mode 100644 index 0000000..f4e3772 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Contracts.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Contracts.pdb b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Contracts.pdb new file mode 100644 index 0000000..858506a Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Contracts.pdb differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/CoverletSourceRootsMapping_AcceTickTest b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/CoverletSourceRootsMapping_AcceTickTest new file mode 100644 index 0000000..926e0cb Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/CoverletSourceRootsMapping_AcceTickTest differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll new file mode 100644 index 0000000..b3c7678 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/DateOnlyTimeOnly.AspNet.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/DateOnlyTimeOnly.AspNet.dll new file mode 100644 index 0000000..87060c5 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/DateOnlyTimeOnly.AspNet.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Entity.deps.json b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Entity.deps.json new file mode 100644 index 0000000..987bdd7 --- /dev/null +++ b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Entity.deps.json @@ -0,0 +1,516 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "Entity/1.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite": "8.0.3" + }, + "runtime": { + "Entity.dll": {} + } + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.3", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.3", + "Microsoft.Extensions.Caching.Memory": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": {}, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.3", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.3", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.3", + "Microsoft.EntityFrameworkCore.Relational": "8.0.3", + "Microsoft.Extensions.DependencyModel": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.6", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.6" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.core/2.1.6": { + "dependencies": { + "System.Memory": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": { + "rid": "browser-wasm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "rid": "linux-musl-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "rid": "linux-musl-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "rid": "linux-ppc64le", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "rid": "linux-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "System.Memory/4.5.3": {}, + "System.Text.Encodings.Web/8.0.0": {}, + "System.Text.Json/8.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "8.0.0" + } + } + } + }, + "libraries": { + "Entity/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1euU97SivROH7nVIh2c/V63e0nQ73Txr/YlysB7fJuTV8LcfeL9WO1gdiJWcRIDoq8/McxcTc7evY6JJ1pD95w==", + "path": "microsoft.data.sqlite.core/8.0.3", + "hashPath": "microsoft.data.sqlite.core.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QUPQbeq4yCjgIL/6PzkhfwhljXmai3CNOsErWFJ/WJ1Z41V8+At0Bi4PT8/2pX25kPgf83g0CUKIZd0QbeKT4A==", + "path": "microsoft.entityframeworkcore/8.0.3", + "hashPath": "microsoft.entityframeworkcore.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cW+SKdx34wZ25ZVKCpk/6+6z27wrZlQ1qXyx7UWpy34s9CyAojH0QiYlV/2owNOGSAH67rm+LxAjUOicsqlGzQ==", + "path": "microsoft.entityframeworkcore.abstractions/8.0.3", + "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3csRAzz5O5Gn+GQBMyLn26OICtEo2/U2iDDygQhKb3LnC78bAUvutkMqvb0Ek5A6uHrBcZQrKQJfkgfnRT5XZw==", + "path": "microsoft.entityframeworkcore.analyzers/8.0.3", + "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8JnVZHWaNFkrrD/FC0O4jekiHIYey8y6TQ4Co3OzLz0wd5Dm1cwJfTp++1TvaVu0BBd4bVDtiktppa5epuoPrA==", + "path": "microsoft.entityframeworkcore.relational/8.0.3", + "hashPath": "microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mdHNwlJkV71pKJU1MzIbjHWyjLw03S2kCO6mnuZL6V7uDv5ZxncoT5OELUiv7wRAYxnBucrl7ZPT76hwhBKBFw==", + "path": "microsoft.entityframeworkcore.sqlite/8.0.3", + "hashPath": "microsoft.entityframeworkcore.sqlite.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6DvYtnLdpViXgA5F2Z/cIJfWIv31Eby5j2YqUzr+sgJulKtCX+ypvmfooXlYnCwJDlcmIaMY27TMnlrCcUvZmA==", + "path": "microsoft.entityframeworkcore.sqlite.core/8.0.3", + "hashPath": "microsoft.entityframeworkcore.sqlite.core.8.0.3.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "path": "microsoft.extensions.caching.memory/8.0.0", + "hashPath": "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", + "path": "microsoft.extensions.dependencymodel/8.0.0", + "hashPath": "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "path": "microsoft.extensions.logging/8.0.0", + "hashPath": "microsoft.extensions.logging.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "path": "microsoft.extensions.logging.abstractions/8.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "path": "microsoft.extensions.options/8.0.0", + "hashPath": "microsoft.extensions.options.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "path": "microsoft.extensions.primitives/8.0.0", + "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==", + "path": "sqlitepclraw.core/2.1.6", + "hashPath": "sqlitepclraw.core.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512" + }, + "System.Memory/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "path": "system.memory/4.5.3", + "hashPath": "system.memory.4.5.3.nupkg.sha512" + }, + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", + "path": "system.text.encodings.web/8.0.0", + "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512" + }, + "System.Text.Json/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", + "path": "system.text.json/8.0.0", + "hashPath": "system.text.json.8.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Entity.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Entity.dll new file mode 100644 index 0000000..33cec7f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Entity.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Entity.pdb b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Entity.pdb new file mode 100644 index 0000000..ec7d0c0 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Entity.pdb differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/FluentValidation.DependencyInjectionExtensions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/FluentValidation.DependencyInjectionExtensions.dll new file mode 100644 index 0000000..fd386c3 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/FluentValidation.DependencyInjectionExtensions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/FluentValidation.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/FluentValidation.dll new file mode 100644 index 0000000..ce036f5 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/FluentValidation.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Logs/Log-2024032620240326.log b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Logs/Log-2024032620240326.log new file mode 100644 index 0000000..0efe8e6 --- /dev/null +++ b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Logs/Log-2024032620240326.log @@ -0,0 +1 @@ +2024-03-26 17:59:48.362 +07:00 [WRN] The query uses the 'First'/'FirstOrDefault' operator without 'OrderBy' and filter operators. This may lead to unpredictable results. diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/MediatR.Contracts.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/MediatR.Contracts.dll new file mode 100644 index 0000000..32bc7c1 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/MediatR.Contracts.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/MediatR.Extensions.Microsoft.DependencyInjection.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/MediatR.Extensions.Microsoft.DependencyInjection.dll new file mode 100644 index 0000000..9aac276 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/MediatR.Extensions.Microsoft.DependencyInjection.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/MediatR.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/MediatR.dll new file mode 100644 index 0000000..b54aa06 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/MediatR.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.AspNetCore.Mvc.Testing.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.AspNetCore.Mvc.Testing.dll new file mode 100644 index 0000000..c39b4e6 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.AspNetCore.Mvc.Testing.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.AspNetCore.TestHost.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.AspNetCore.TestHost.dll new file mode 100644 index 0000000..5b36329 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.AspNetCore.TestHost.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.Data.Sqlite.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..5415d6f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.Data.Sqlite.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100644 index 0000000..d80430b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100644 index 0000000..0d72770 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll new file mode 100644 index 0000000..0147855 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll new file mode 100644 index 0000000..029c06c Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..8a32950 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.OpenApi.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.OpenApi.dll new file mode 100644 index 0000000..14f3ded Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.OpenApi.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll new file mode 100644 index 0000000..514e543 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.TestPlatform.CommunicationUtilities.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll new file mode 100644 index 0000000..67c6e6f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.TestPlatform.CoreUtilities.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll new file mode 100644 index 0000000..09efce0 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.TestPlatform.CrossPlatEngine.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll new file mode 100644 index 0000000..a18a266 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.TestPlatform.PlatformAbstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll new file mode 100644 index 0000000..22a03b8 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.TestPlatform.Utilities.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll new file mode 100644 index 0000000..117ba73 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.VisualStudio.CodeCoverage.Shim.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll new file mode 100644 index 0000000..8213a95 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.Common.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll new file mode 100644 index 0000000..b002d6b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/MvcTestingAppManifest.json b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/MvcTestingAppManifest.json new file mode 100644 index 0000000..742a725 --- /dev/null +++ b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/MvcTestingAppManifest.json @@ -0,0 +1,6 @@ +{ + "Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts", + "Entity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity", + "Services, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services", + "WebAPIExam, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam" +} \ No newline at end of file diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/NUnit3.TestAdapter.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/NUnit3.TestAdapter.dll new file mode 100644 index 0000000..65c8c3d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/NUnit3.TestAdapter.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/NUnit3.TestAdapter.pdb b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/NUnit3.TestAdapter.pdb new file mode 100644 index 0000000..5a3a1b8 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/NUnit3.TestAdapter.pdb differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Newtonsoft.Json.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..1ffeabe Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Newtonsoft.Json.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/NuGet.Frameworks.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/NuGet.Frameworks.dll new file mode 100644 index 0000000..d78c478 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/NuGet.Frameworks.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/SQLitePCLRaw.batteries_v2.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..f9eb46b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/SQLitePCLRaw.batteries_v2.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/SQLitePCLRaw.core.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..556d40f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/SQLitePCLRaw.core.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll new file mode 100644 index 0000000..fc5919d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.AspNetCore.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.AspNetCore.dll new file mode 100644 index 0000000..0220eb1 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.AspNetCore.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Extensions.Hosting.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Extensions.Hosting.dll new file mode 100644 index 0000000..2204d10 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Extensions.Hosting.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Extensions.Logging.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Extensions.Logging.dll new file mode 100644 index 0000000..f2f78c7 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Extensions.Logging.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Formatting.Compact.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Formatting.Compact.dll new file mode 100644 index 0000000..7174b83 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Formatting.Compact.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Settings.Configuration.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Settings.Configuration.dll new file mode 100644 index 0000000..a8ff29d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Settings.Configuration.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Sinks.Console.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Sinks.Console.dll new file mode 100644 index 0000000..1dcb2d0 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Sinks.Console.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Sinks.Debug.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Sinks.Debug.dll new file mode 100644 index 0000000..2bd024b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Sinks.Debug.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Sinks.File.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Sinks.File.dll new file mode 100644 index 0000000..29dc2fd Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.Sinks.File.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.dll new file mode 100644 index 0000000..50bdb5a Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Serilog.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Services.deps.json b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Services.deps.json new file mode 100644 index 0000000..cf82d10 --- /dev/null +++ b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Services.deps.json @@ -0,0 +1,633 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "Services/1.0.0": { + "dependencies": { + "Contracts": "1.0.0", + "Entity": "1.0.0", + "FluentValidation": "11.9.0", + "FluentValidation.DependencyInjectionExtensions": "11.9.0", + "MediatR": "11.1.0", + "MediatR.Extensions.Microsoft.DependencyInjection": "11.1.0" + }, + "runtime": { + "Services.dll": {} + } + }, + "FluentValidation/11.9.0": { + "runtime": { + "lib/net8.0/FluentValidation.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.9.0.0" + } + } + }, + "FluentValidation.DependencyInjectionExtensions/11.9.0": { + "dependencies": { + "FluentValidation": "11.9.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.9.0.0" + } + } + }, + "MediatR/11.1.0": { + "dependencies": { + "MediatR.Contracts": "2.0.1" + }, + "runtime": { + "lib/netstandard2.1/MediatR.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.1.0.0" + } + } + }, + "MediatR.Contracts/2.0.1": { + "runtime": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "assemblyVersion": "2.0.1.0", + "fileVersion": "2.0.1.0" + } + } + }, + "MediatR.Extensions.Microsoft.DependencyInjection/11.1.0": { + "dependencies": { + "MediatR": "11.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.1.0.0" + } + } + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.3", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.3", + "Microsoft.Extensions.Caching.Memory": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": {}, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.3", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.3", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.3", + "Microsoft.EntityFrameworkCore.Relational": "8.0.3", + "Microsoft.Extensions.DependencyModel": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.6", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.6" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.core/2.1.6": { + "dependencies": { + "System.Memory": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": { + "rid": "browser-wasm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "rid": "linux-musl-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "rid": "linux-musl-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "rid": "linux-ppc64le", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "rid": "linux-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "System.Memory/4.5.3": {}, + "System.Text.Encodings.Web/8.0.0": {}, + "System.Text.Json/8.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "8.0.0" + } + }, + "Contracts/1.0.0": { + "dependencies": { + "MediatR.Contracts": "2.0.1" + }, + "runtime": { + "Contracts.dll": {} + } + }, + "Entity/1.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite": "8.0.3" + }, + "runtime": { + "Entity.dll": {} + } + } + } + }, + "libraries": { + "Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "FluentValidation/11.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VneVlTvwYDkfHV5av3QrQ0amALgrLX6LV94wlYyEsh0B/klJBW7C8y2eAtj5tOZ3jH6CAVpr4s1ZGgew/QWyig==", + "path": "fluentvalidation/11.9.0", + "hashPath": "fluentvalidation.11.9.0.nupkg.sha512" + }, + "FluentValidation.DependencyInjectionExtensions/11.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ko++xvN7HUf4WlHJL6bhsybUj/uho8ApOYIdxGjpF8Ot7Fukz6LRfRJ06H0KXhWqmMHWEbu89hJbjKJHtg7b9g==", + "path": "fluentvalidation.dependencyinjectionextensions/11.9.0", + "hashPath": "fluentvalidation.dependencyinjectionextensions.11.9.0.nupkg.sha512" + }, + "MediatR/11.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YIbtrLOyeCuIv8vIuHL/mMdls5xmgS36pIOJDxKZuu55nxA2MI2Z+E/Uk0z+F/LE11AGmpjplOM0NZ91m5LQBA==", + "path": "mediatr/11.1.0", + "hashPath": "mediatr.11.1.0.nupkg.sha512" + }, + "MediatR.Contracts/2.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", + "path": "mediatr.contracts/2.0.1", + "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" + }, + "MediatR.Extensions.Microsoft.DependencyInjection/11.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RW3etRuy6Xp63cgqfC0r/ITOtUT0f9ymJl1+1XZdzsYUsfv7WBPC2kXGOP8IYpY/6c4Q6805vbIW/88DopUs3w==", + "path": "mediatr.extensions.microsoft.dependencyinjection/11.1.0", + "hashPath": "mediatr.extensions.microsoft.dependencyinjection.11.1.0.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1euU97SivROH7nVIh2c/V63e0nQ73Txr/YlysB7fJuTV8LcfeL9WO1gdiJWcRIDoq8/McxcTc7evY6JJ1pD95w==", + "path": "microsoft.data.sqlite.core/8.0.3", + "hashPath": "microsoft.data.sqlite.core.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QUPQbeq4yCjgIL/6PzkhfwhljXmai3CNOsErWFJ/WJ1Z41V8+At0Bi4PT8/2pX25kPgf83g0CUKIZd0QbeKT4A==", + "path": "microsoft.entityframeworkcore/8.0.3", + "hashPath": "microsoft.entityframeworkcore.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cW+SKdx34wZ25ZVKCpk/6+6z27wrZlQ1qXyx7UWpy34s9CyAojH0QiYlV/2owNOGSAH67rm+LxAjUOicsqlGzQ==", + "path": "microsoft.entityframeworkcore.abstractions/8.0.3", + "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3csRAzz5O5Gn+GQBMyLn26OICtEo2/U2iDDygQhKb3LnC78bAUvutkMqvb0Ek5A6uHrBcZQrKQJfkgfnRT5XZw==", + "path": "microsoft.entityframeworkcore.analyzers/8.0.3", + "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8JnVZHWaNFkrrD/FC0O4jekiHIYey8y6TQ4Co3OzLz0wd5Dm1cwJfTp++1TvaVu0BBd4bVDtiktppa5epuoPrA==", + "path": "microsoft.entityframeworkcore.relational/8.0.3", + "hashPath": "microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mdHNwlJkV71pKJU1MzIbjHWyjLw03S2kCO6mnuZL6V7uDv5ZxncoT5OELUiv7wRAYxnBucrl7ZPT76hwhBKBFw==", + "path": "microsoft.entityframeworkcore.sqlite/8.0.3", + "hashPath": "microsoft.entityframeworkcore.sqlite.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6DvYtnLdpViXgA5F2Z/cIJfWIv31Eby5j2YqUzr+sgJulKtCX+ypvmfooXlYnCwJDlcmIaMY27TMnlrCcUvZmA==", + "path": "microsoft.entityframeworkcore.sqlite.core/8.0.3", + "hashPath": "microsoft.entityframeworkcore.sqlite.core.8.0.3.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "path": "microsoft.extensions.caching.memory/8.0.0", + "hashPath": "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", + "path": "microsoft.extensions.dependencymodel/8.0.0", + "hashPath": "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "path": "microsoft.extensions.logging/8.0.0", + "hashPath": "microsoft.extensions.logging.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "path": "microsoft.extensions.logging.abstractions/8.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "path": "microsoft.extensions.options/8.0.0", + "hashPath": "microsoft.extensions.options.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "path": "microsoft.extensions.primitives/8.0.0", + "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==", + "path": "sqlitepclraw.core/2.1.6", + "hashPath": "sqlitepclraw.core.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512" + }, + "System.Memory/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "path": "system.memory/4.5.3", + "hashPath": "system.memory.4.5.3.nupkg.sha512" + }, + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", + "path": "system.text.encodings.web/8.0.0", + "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512" + }, + "System.Text.Json/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", + "path": "system.text.json/8.0.0", + "hashPath": "system.text.json.8.0.0.nupkg.sha512" + }, + "Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Entity/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Services.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Services.dll new file mode 100644 index 0000000..e14730f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Services.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Services.pdb b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Services.pdb new file mode 100644 index 0000000..9aa77f3 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Services.pdb differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..e9b8cf7 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..68e38a2 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..9c52aed Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/WebAPIExam.deps.json b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/WebAPIExam.deps.json new file mode 100644 index 0000000..f9a9ff7 --- /dev/null +++ b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/WebAPIExam.deps.json @@ -0,0 +1,956 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "WebAPIExam/1.0.0": { + "dependencies": { + "DateOnlyTimeOnly.AspNet": "2.1.1", + "DateOnlyTimeOnly.AspNet.Swashbuckle": "2.1.1", + "FluentValidation": "11.9.0", + "FluentValidation.DependencyInjectionExtensions": "11.9.0", + "Serilog.AspNetCore": "8.0.1", + "Services": "1.0.0", + "Swashbuckle.AspNetCore": "6.4.0" + }, + "runtime": { + "WebAPIExam.dll": {} + } + }, + "DateOnlyTimeOnly.AspNet/2.1.1": { + "runtime": { + "lib/net7.0/DateOnlyTimeOnly.AspNet.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.0" + } + } + }, + "DateOnlyTimeOnly.AspNet.Swashbuckle/2.1.1": { + "dependencies": { + "DateOnlyTimeOnly.AspNet": "2.1.1", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0" + }, + "runtime": { + "lib/net7.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.0" + } + } + }, + "FluentValidation/11.9.0": { + "runtime": { + "lib/net8.0/FluentValidation.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.9.0.0" + } + } + }, + "FluentValidation.DependencyInjectionExtensions/11.9.0": { + "dependencies": { + "FluentValidation": "11.9.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.9.0.0" + } + } + }, + "MediatR/11.1.0": { + "dependencies": { + "MediatR.Contracts": "2.0.1" + }, + "runtime": { + "lib/netstandard2.1/MediatR.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.1.0.0" + } + } + }, + "MediatR.Contracts/2.0.1": { + "runtime": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "assemblyVersion": "2.0.1.0", + "fileVersion": "2.0.1.0" + } + } + }, + "MediatR.Extensions.Microsoft.DependencyInjection/11.1.0": { + "dependencies": { + "MediatR": "11.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.1.0.0" + } + } + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.3", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.3", + "Microsoft.Extensions.Caching.Memory": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": {}, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.3", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.3", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.3", + "Microsoft.EntityFrameworkCore.Relational": "8.0.3", + "Microsoft.Extensions.DependencyModel": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {}, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "System.Diagnostics.DiagnosticSource": "8.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Hosting.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Primitives/8.0.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Serilog/3.1.1": { + "runtime": { + "lib/net7.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "3.1.1.0" + } + } + }, + "Serilog.AspNetCore/8.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Serilog": "3.1.1", + "Serilog.Extensions.Hosting": "8.0.0", + "Serilog.Extensions.Logging": "8.0.0", + "Serilog.Formatting.Compact": "2.0.0", + "Serilog.Settings.Configuration": "8.0.0", + "Serilog.Sinks.Console": "5.0.0", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "5.0.0" + }, + "runtime": { + "lib/net8.0/Serilog.AspNetCore.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.0" + } + } + }, + "Serilog.Extensions.Hosting/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Serilog": "3.1.1", + "Serilog.Extensions.Logging": "8.0.0" + }, + "runtime": { + "lib/net8.0/Serilog.Extensions.Hosting.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "8.0.0.0" + } + } + }, + "Serilog.Extensions.Logging/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "8.0.0", + "Serilog": "3.1.1" + }, + "runtime": { + "lib/net8.0/Serilog.Extensions.Logging.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "8.0.0.0" + } + } + }, + "Serilog.Formatting.Compact/2.0.0": { + "dependencies": { + "Serilog": "3.1.1" + }, + "runtime": { + "lib/net7.0/Serilog.Formatting.Compact.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Serilog.Settings.Configuration/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.DependencyModel": "8.0.0", + "Serilog": "3.1.1" + }, + "runtime": { + "lib/net8.0/Serilog.Settings.Configuration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.0.0" + } + } + }, + "Serilog.Sinks.Console/5.0.0": { + "dependencies": { + "Serilog": "3.1.1" + }, + "runtime": { + "lib/net7.0/Serilog.Sinks.Console.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "dependencies": { + "Serilog": "3.1.1" + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "3.1.1" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.6", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.6" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.core/2.1.6": { + "dependencies": { + "System.Memory": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": { + "rid": "browser-wasm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "rid": "linux-musl-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "rid": "linux-musl-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "rid": "linux-ppc64le", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "rid": "linux-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "System.Diagnostics.DiagnosticSource/8.0.0": {}, + "System.Memory/4.5.3": {}, + "System.Text.Encodings.Web/8.0.0": {}, + "System.Text.Json/8.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "8.0.0" + } + }, + "Contracts/1.0.0": { + "dependencies": { + "MediatR.Contracts": "2.0.1" + }, + "runtime": { + "Contracts.dll": {} + } + }, + "Entity/1.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite": "8.0.3" + }, + "runtime": { + "Entity.dll": {} + } + }, + "Services/1.0.0": { + "dependencies": { + "Contracts": "1.0.0", + "Entity": "1.0.0", + "FluentValidation": "11.9.0", + "FluentValidation.DependencyInjectionExtensions": "11.9.0", + "MediatR": "11.1.0", + "MediatR.Extensions.Microsoft.DependencyInjection": "11.1.0" + }, + "runtime": { + "Services.dll": {} + } + } + } + }, + "libraries": { + "WebAPIExam/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "DateOnlyTimeOnly.AspNet/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7HlGV6sm0efRMquxnZaoqV3KybUMOs1IaJ4TaX85v7IZF01h1YV6Zscos9g4qQfrGYfvqLjbpe3Q54cmMBeISQ==", + "path": "dateonlytimeonly.aspnet/2.1.1", + "hashPath": "dateonlytimeonly.aspnet.2.1.1.nupkg.sha512" + }, + "DateOnlyTimeOnly.AspNet.Swashbuckle/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X2k2yelbE2jyBI/pOv5T615ell5Rhmb31MV1mM0Q+VpqNUran20gdGz9MBP9dbAcbH1EQ/l/s/EcX/+Bp365jQ==", + "path": "dateonlytimeonly.aspnet.swashbuckle/2.1.1", + "hashPath": "dateonlytimeonly.aspnet.swashbuckle.2.1.1.nupkg.sha512" + }, + "FluentValidation/11.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VneVlTvwYDkfHV5av3QrQ0amALgrLX6LV94wlYyEsh0B/klJBW7C8y2eAtj5tOZ3jH6CAVpr4s1ZGgew/QWyig==", + "path": "fluentvalidation/11.9.0", + "hashPath": "fluentvalidation.11.9.0.nupkg.sha512" + }, + "FluentValidation.DependencyInjectionExtensions/11.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ko++xvN7HUf4WlHJL6bhsybUj/uho8ApOYIdxGjpF8Ot7Fukz6LRfRJ06H0KXhWqmMHWEbu89hJbjKJHtg7b9g==", + "path": "fluentvalidation.dependencyinjectionextensions/11.9.0", + "hashPath": "fluentvalidation.dependencyinjectionextensions.11.9.0.nupkg.sha512" + }, + "MediatR/11.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YIbtrLOyeCuIv8vIuHL/mMdls5xmgS36pIOJDxKZuu55nxA2MI2Z+E/Uk0z+F/LE11AGmpjplOM0NZ91m5LQBA==", + "path": "mediatr/11.1.0", + "hashPath": "mediatr.11.1.0.nupkg.sha512" + }, + "MediatR.Contracts/2.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", + "path": "mediatr.contracts/2.0.1", + "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" + }, + "MediatR.Extensions.Microsoft.DependencyInjection/11.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RW3etRuy6Xp63cgqfC0r/ITOtUT0f9ymJl1+1XZdzsYUsfv7WBPC2kXGOP8IYpY/6c4Q6805vbIW/88DopUs3w==", + "path": "mediatr.extensions.microsoft.dependencyinjection/11.1.0", + "hashPath": "mediatr.extensions.microsoft.dependencyinjection.11.1.0.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1euU97SivROH7nVIh2c/V63e0nQ73Txr/YlysB7fJuTV8LcfeL9WO1gdiJWcRIDoq8/McxcTc7evY6JJ1pD95w==", + "path": "microsoft.data.sqlite.core/8.0.3", + "hashPath": "microsoft.data.sqlite.core.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QUPQbeq4yCjgIL/6PzkhfwhljXmai3CNOsErWFJ/WJ1Z41V8+At0Bi4PT8/2pX25kPgf83g0CUKIZd0QbeKT4A==", + "path": "microsoft.entityframeworkcore/8.0.3", + "hashPath": "microsoft.entityframeworkcore.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cW+SKdx34wZ25ZVKCpk/6+6z27wrZlQ1qXyx7UWpy34s9CyAojH0QiYlV/2owNOGSAH67rm+LxAjUOicsqlGzQ==", + "path": "microsoft.entityframeworkcore.abstractions/8.0.3", + "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3csRAzz5O5Gn+GQBMyLn26OICtEo2/U2iDDygQhKb3LnC78bAUvutkMqvb0Ek5A6uHrBcZQrKQJfkgfnRT5XZw==", + "path": "microsoft.entityframeworkcore.analyzers/8.0.3", + "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8JnVZHWaNFkrrD/FC0O4jekiHIYey8y6TQ4Co3OzLz0wd5Dm1cwJfTp++1TvaVu0BBd4bVDtiktppa5epuoPrA==", + "path": "microsoft.entityframeworkcore.relational/8.0.3", + "hashPath": "microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mdHNwlJkV71pKJU1MzIbjHWyjLw03S2kCO6mnuZL6V7uDv5ZxncoT5OELUiv7wRAYxnBucrl7ZPT76hwhBKBFw==", + "path": "microsoft.entityframeworkcore.sqlite/8.0.3", + "hashPath": "microsoft.entityframeworkcore.sqlite.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6DvYtnLdpViXgA5F2Z/cIJfWIv31Eby5j2YqUzr+sgJulKtCX+ypvmfooXlYnCwJDlcmIaMY27TMnlrCcUvZmA==", + "path": "microsoft.entityframeworkcore.sqlite.core/8.0.3", + "hashPath": "microsoft.entityframeworkcore.sqlite.core.8.0.3.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "path": "microsoft.extensions.caching.memory/8.0.0", + "hashPath": "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==", + "path": "microsoft.extensions.configuration.binder/8.0.0", + "hashPath": "microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", + "path": "microsoft.extensions.dependencymodel/8.0.0", + "hashPath": "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "path": "microsoft.extensions.diagnostics.abstractions/8.0.0", + "hashPath": "microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==", + "path": "microsoft.extensions.fileproviders.abstractions/8.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "path": "microsoft.extensions.hosting.abstractions/8.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "path": "microsoft.extensions.logging/8.0.0", + "hashPath": "microsoft.extensions.logging.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "path": "microsoft.extensions.logging.abstractions/8.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "path": "microsoft.extensions.options/8.0.0", + "hashPath": "microsoft.extensions.options.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "path": "microsoft.extensions.primitives/8.0.0", + "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Serilog/3.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P6G4/4Kt9bT635bhuwdXlJ2SCqqn2nhh4gqFqQueCOr9bK/e7W9ll/IoX1Ter948cV2Z/5+5v8pAfJYUISY03A==", + "path": "serilog/3.1.1", + "hashPath": "serilog.3.1.1.nupkg.sha512" + }, + "Serilog.AspNetCore/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B/X+wAfS7yWLVOTD83B+Ip9yl4MkhioaXj90JSoWi1Ayi8XHepEnsBdrkojg08eodCnmOKmShFUN2GgEc6c0CQ==", + "path": "serilog.aspnetcore/8.0.1", + "hashPath": "serilog.aspnetcore.8.0.1.nupkg.sha512" + }, + "Serilog.Extensions.Hosting/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-db0OcbWeSCvYQkHWu6n0v40N4kKaTAXNjlM3BKvcbwvNzYphQFcBR+36eQ/7hMMwOkJvAyLC2a9/jNdUL5NjtQ==", + "path": "serilog.extensions.hosting/8.0.0", + "hashPath": "serilog.extensions.hosting.8.0.0.nupkg.sha512" + }, + "Serilog.Extensions.Logging/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YEAMWu1UnWgf1c1KP85l1SgXGfiVo0Rz6x08pCiPOIBt2Qe18tcZLvdBUuV5o1QHvrs8FAry9wTIhgBRtjIlEg==", + "path": "serilog.extensions.logging/8.0.0", + "hashPath": "serilog.extensions.logging.8.0.0.nupkg.sha512" + }, + "Serilog.Formatting.Compact/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ob6z3ikzFM3D1xalhFuBIK1IOWf+XrQq+H4KeH4VqBcPpNcmUgZlRQ2h3Q7wvthpdZBBoY86qZOI2LCXNaLlNA==", + "path": "serilog.formatting.compact/2.0.0", + "hashPath": "serilog.formatting.compact.2.0.0.nupkg.sha512" + }, + "Serilog.Settings.Configuration/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nR0iL5HwKj5v6ULo3/zpP8NMcq9E2pxYA6XKTSWCbugVs4YqPyvaqaKOY+OMpPivKp7zMEpax2UKHnDodbRB0Q==", + "path": "serilog.settings.configuration/8.0.0", + "hashPath": "serilog.settings.configuration.8.0.0.nupkg.sha512" + }, + "Serilog.Sinks.Console/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IZ6bn79k+3SRXOBpwSOClUHikSkp2toGPCZ0teUkscv4dpDg9E2R2xVsNkLmwddE4OpNVO3N0xiYsAH556vN8Q==", + "path": "serilog.sinks.console/5.0.0", + "hashPath": "serilog.sinks.console.5.0.0.nupkg.sha512" + }, + "Serilog.Sinks.Debug/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==", + "path": "serilog.sinks.debug/2.0.0", + "hashPath": "serilog.sinks.debug.2.0.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==", + "path": "sqlitepclraw.core/2.1.6", + "hashPath": "sqlitepclraw.core.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "path": "swashbuckle.aspnetcore/6.4.0", + "hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==", + "path": "system.diagnostics.diagnosticsource/8.0.0", + "hashPath": "system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512" + }, + "System.Memory/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "path": "system.memory/4.5.3", + "hashPath": "system.memory.4.5.3.nupkg.sha512" + }, + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", + "path": "system.text.encodings.web/8.0.0", + "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512" + }, + "System.Text.Json/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", + "path": "system.text.json/8.0.0", + "hashPath": "system.text.json.8.0.0.nupkg.sha512" + }, + "Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Entity/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/WebAPIExam.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/WebAPIExam.dll new file mode 100644 index 0000000..e2bdab2 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/WebAPIExam.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/WebAPIExam.exe b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/WebAPIExam.exe new file mode 100644 index 0000000..3c53396 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/WebAPIExam.exe differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/WebAPIExam.pdb b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/WebAPIExam.pdb new file mode 100644 index 0000000..7e4ea3a Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/WebAPIExam.pdb differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/WebAPIExam.runtimeconfig.json b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/WebAPIExam.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/WebAPIExam.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/appsettings.Development.json b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/appsettings.json b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/appsettings.json new file mode 100644 index 0000000..a0f7e2f --- /dev/null +++ b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/appsettings.json @@ -0,0 +1,12 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "ConnectionStrings": { + "Sqlite": "" + } +} diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..1768037 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..7310fb0 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..5af6e0e Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..86c5af1 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..d9a801b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..2bb1465 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..d457408 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..998dc29 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..3cd7988 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..e6266e6 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..d5a8c37 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..e548e68 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..e014e2d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..d2d34a9 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..95ba380 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..fbd6f21 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..dca8640 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..388c3a8 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..52ca0cc Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..a160e8c Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..5aaa36b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..21e5f9a Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..f1b2ec1 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..95f5ff8 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..e863878 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..9021665 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..1d3b394 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..773c01f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..dd242e2 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..a6d1507 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..e1544b1 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..b973f38 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..f35bfe7 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..eade81b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..e6e46b6 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/nunit.engine.api.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/nunit.engine.api.dll new file mode 100644 index 0000000..ffd41b5 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/nunit.engine.api.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/nunit.engine.core.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/nunit.engine.core.dll new file mode 100644 index 0000000..6750450 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/nunit.engine.core.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/nunit.engine.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/nunit.engine.dll new file mode 100644 index 0000000..029f779 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/nunit.engine.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/nunit.framework.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/nunit.framework.dll new file mode 100644 index 0000000..5724561 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/nunit.framework.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/nunit_random_seed.tmp b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/nunit_random_seed.tmp new file mode 100644 index 0000000..d5286da --- /dev/null +++ b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/nunit_random_seed.tmp @@ -0,0 +1 @@ +1122159450 \ No newline at end of file diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..8d2ec40 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..fc39387 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..65efdcd Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..20e7c34 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..8fbbbf4 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..3d0d41c Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..64495e5 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..89213a1 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..7bea004 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..fd63906 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Antiforgery.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Antiforgery.dll new file mode 100644 index 0000000..4e597e6 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Antiforgery.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll new file mode 100644 index 0000000..605c4b7 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll new file mode 100644 index 0000000..62a6169 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll new file mode 100644 index 0000000..a3d2715 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.Core.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.Core.dll new file mode 100644 index 0000000..0e29eb5 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.Core.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll new file mode 100644 index 0000000..5d884f0 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.dll new file mode 100644 index 0000000..a346846 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authentication.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll new file mode 100644 index 0000000..6ff05a4 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authorization.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authorization.dll new file mode 100644 index 0000000..1dd22fc Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Authorization.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Authorization.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Authorization.dll new file mode 100644 index 0000000..71d4589 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Authorization.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll new file mode 100644 index 0000000..9aa2bf1 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Forms.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Forms.dll new file mode 100644 index 0000000..e599a20 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Server.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Server.dll new file mode 100644 index 0000000..b5b0c25 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Server.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Web.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Web.dll new file mode 100644 index 0000000..65b335a Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.dll new file mode 100644 index 0000000..5e6f0db Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Components.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100644 index 0000000..eadbc40 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.CookiePolicy.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.CookiePolicy.dll new file mode 100644 index 0000000..e659da3 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.CookiePolicy.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Cors.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Cors.dll new file mode 100644 index 0000000..8b91738 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Cors.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll new file mode 100644 index 0000000..f00d6bd Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll new file mode 100644 index 0000000..e7d8532 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll new file mode 100644 index 0000000..a159ce1 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll new file mode 100644 index 0000000..7653839 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.DataProtection.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.DataProtection.dll new file mode 100644 index 0000000..a67e9bc Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.DataProtection.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll new file mode 100644 index 0000000..5f0922f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll new file mode 100644 index 0000000..12a3cd6 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Diagnostics.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Diagnostics.dll new file mode 100644 index 0000000..a717d2c Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Diagnostics.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.HostFiltering.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.HostFiltering.dll new file mode 100644 index 0000000..794a80f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.HostFiltering.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll new file mode 100644 index 0000000..935b74c Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll new file mode 100644 index 0000000..1107cb9 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Hosting.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Hosting.dll new file mode 100644 index 0000000..0131a14 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Hosting.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll new file mode 100644 index 0000000..f294ed1 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll new file mode 100644 index 0000000..c9898e8 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll new file mode 100644 index 0000000..3c7023e Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Connections.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Connections.dll new file mode 100644 index 0000000..030adc3 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Connections.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Extensions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Extensions.dll new file mode 100644 index 0000000..39c9b7f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Extensions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Features.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Features.dll new file mode 100644 index 0000000..4a94bca Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Features.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Results.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Results.dll new file mode 100644 index 0000000..ecf6d0f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.Results.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.dll new file mode 100644 index 0000000..c376de0 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Http.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.HttpLogging.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.HttpLogging.dll new file mode 100644 index 0000000..73076d0 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.HttpLogging.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.HttpOverrides.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.HttpOverrides.dll new file mode 100644 index 0000000..9170ef1 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.HttpOverrides.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll new file mode 100644 index 0000000..66ade8e Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Identity.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Identity.dll new file mode 100644 index 0000000..4501650 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Identity.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Localization.Routing.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Localization.Routing.dll new file mode 100644 index 0000000..1399155 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Localization.Routing.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Localization.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Localization.dll new file mode 100644 index 0000000..d297519 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Localization.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Metadata.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Metadata.dll new file mode 100644 index 0000000..2df3e9e Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Metadata.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll new file mode 100644 index 0000000..b0e4d95 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll new file mode 100644 index 0000000..4f94332 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Core.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Core.dll new file mode 100644 index 0000000..2128031 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Core.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll new file mode 100644 index 0000000..37efc80 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll new file mode 100644 index 0000000..cd8ad6c Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll new file mode 100644 index 0000000..62a6a23 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll new file mode 100644 index 0000000..1e4a25e Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll new file mode 100644 index 0000000..8837ec4 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll new file mode 100644 index 0000000..ac75ba9 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll new file mode 100644 index 0000000..c0aa96c Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll new file mode 100644 index 0000000..99b848f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll new file mode 100644 index 0000000..46b56ed Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.dll new file mode 100644 index 0000000..110b6cd Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Mvc.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.OutputCaching.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.OutputCaching.dll new file mode 100644 index 0000000..960c01e Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.OutputCaching.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.RateLimiting.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.RateLimiting.dll new file mode 100644 index 0000000..877b1f1 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.RateLimiting.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll new file mode 100644 index 0000000..ba48b8a Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Razor.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Razor.dll new file mode 100644 index 0000000..c1886b4 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Razor.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.RequestDecompression.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.RequestDecompression.dll new file mode 100644 index 0000000..1dbf3a5 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.RequestDecompression.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll new file mode 100644 index 0000000..9fa2c47 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.ResponseCaching.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.ResponseCaching.dll new file mode 100644 index 0000000..6a1cb9b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.ResponseCaching.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.ResponseCompression.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.ResponseCompression.dll new file mode 100644 index 0000000..4eea8f3 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.ResponseCompression.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Rewrite.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Rewrite.dll new file mode 100644 index 0000000..61771c5 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Rewrite.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll new file mode 100644 index 0000000..05d65e6 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Routing.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Routing.dll new file mode 100644 index 0000000..ad083fb Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Routing.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll new file mode 100644 index 0000000..475a278 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.IIS.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.IIS.dll new file mode 100644 index 0000000..518275d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.IIS.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll new file mode 100644 index 0000000..1f0ffb8 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll new file mode 100644 index 0000000..e8a2e8c Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll new file mode 100644 index 0000000..2146a3d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll new file mode 100644 index 0000000..117a521 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll new file mode 100644 index 0000000..e3c59a9 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll new file mode 100644 index 0000000..ccf1237 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Session.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Session.dll new file mode 100644 index 0000000..189766d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.Session.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.SignalR.Common.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100644 index 0000000..e77d826 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.SignalR.Core.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.SignalR.Core.dll new file mode 100644 index 0000000..81cf054 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.SignalR.Core.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll new file mode 100644 index 0000000..2128d50 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.SignalR.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.SignalR.dll new file mode 100644 index 0000000..efd7820 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.SignalR.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.StaticFiles.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.StaticFiles.dll new file mode 100644 index 0000000..e2670e3 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.StaticFiles.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.WebSockets.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.WebSockets.dll new file mode 100644 index 0000000..642e582 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.WebSockets.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.WebUtilities.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.WebUtilities.dll new file mode 100644 index 0000000..9d89841 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.WebUtilities.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.dll new file mode 100644 index 0000000..504b53a Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.AspNetCore.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.CSharp.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.CSharp.dll new file mode 100644 index 0000000..65cd07b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.CSharp.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Caching.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Caching.Abstractions.dll new file mode 100644 index 0000000..898525d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Caching.Memory.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Caching.Memory.dll new file mode 100644 index 0000000..86a1803 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 0000000..535555b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Binder.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Binder.dll new file mode 100644 index 0000000..ec7a456 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll new file mode 100644 index 0000000..9872f28 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll new file mode 100644 index 0000000..6d0516f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100644 index 0000000..a9278eb Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Ini.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Ini.dll new file mode 100644 index 0000000..23086d7 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Ini.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Json.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Json.dll new file mode 100644 index 0000000..40d7300 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll new file mode 100644 index 0000000..9192650 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll new file mode 100644 index 0000000..708e0ae Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Xml.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Xml.dll new file mode 100644 index 0000000..6e7e942 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.Xml.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..6cf1fbc Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Configuration.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..6106818 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.DependencyInjection.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..54f379d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll new file mode 100644 index 0000000..0958b5b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll new file mode 100644 index 0000000..ca04249 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll new file mode 100644 index 0000000..da026f9 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Diagnostics.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Diagnostics.dll new file mode 100644 index 0000000..47ab556 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Diagnostics.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Features.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Features.dll new file mode 100644 index 0000000..56b49ec Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Features.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100644 index 0000000..5b6de52 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.FileProviders.Composite.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.FileProviders.Composite.dll new file mode 100644 index 0000000..bcde29c Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.FileProviders.Composite.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll new file mode 100644 index 0000000..d4152ff Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.FileProviders.Physical.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100644 index 0000000..5a7bd71 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100644 index 0000000..2518431 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll new file mode 100644 index 0000000..c802397 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Hosting.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Hosting.dll new file mode 100644 index 0000000..d3f3284 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Hosting.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Http.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Http.dll new file mode 100644 index 0000000..661fa50 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Http.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Identity.Core.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Identity.Core.dll new file mode 100644 index 0000000..09a990a Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Identity.Core.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Identity.Stores.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Identity.Stores.dll new file mode 100644 index 0000000..3ab5751 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Identity.Stores.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Localization.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Localization.Abstractions.dll new file mode 100644 index 0000000..b264ab5 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Localization.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Localization.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Localization.dll new file mode 100644 index 0000000..22e548f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Localization.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.Abstractions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..d6c2575 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.Configuration.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.Configuration.dll new file mode 100644 index 0000000..6607b44 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.Console.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.Console.dll new file mode 100644 index 0000000..01f5440 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.Console.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.Debug.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.Debug.dll new file mode 100644 index 0000000..b227550 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.EventLog.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.EventLog.dll new file mode 100644 index 0000000..199981c Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.EventLog.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.EventSource.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.EventSource.dll new file mode 100644 index 0000000..1fc6283 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.EventSource.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.TraceSource.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.TraceSource.dll new file mode 100644 index 0000000..1a4b4c8 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.TraceSource.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..6cee3bb Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Logging.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.ObjectPool.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.ObjectPool.dll new file mode 100644 index 0000000..f4e1776 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.ObjectPool.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll new file mode 100644 index 0000000..10aa267 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll new file mode 100644 index 0000000..28e1f4b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Options.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..1bbe0f8 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Options.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Primitives.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..4590120 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.Primitives.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.WebEncoders.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.WebEncoders.dll new file mode 100644 index 0000000..7cdf9c6 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Extensions.WebEncoders.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.JSInterop.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.JSInterop.dll new file mode 100644 index 0000000..b9647b5 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.JSInterop.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Net.Http.Headers.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Net.Http.Headers.dll new file mode 100644 index 0000000..0fa6e72 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Net.Http.Headers.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.VisualBasic.Core.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.VisualBasic.Core.dll new file mode 100644 index 0000000..7cc05b2 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.VisualBasic.Core.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.VisualBasic.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.VisualBasic.dll new file mode 100644 index 0000000..52f3a4c Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.VisualBasic.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Win32.Primitives.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Win32.Primitives.dll new file mode 100644 index 0000000..5d6d1a5 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Win32.Primitives.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Win32.Registry.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..848097e Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/Microsoft.Win32.Registry.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.AppContext.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.AppContext.dll new file mode 100644 index 0000000..273d28a Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.AppContext.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Buffers.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Buffers.dll new file mode 100644 index 0000000..659e98f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Buffers.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Collections.Concurrent.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Collections.Concurrent.dll new file mode 100644 index 0000000..a8dcc20 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Collections.Concurrent.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Collections.Immutable.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Collections.Immutable.dll new file mode 100644 index 0000000..20a4366 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Collections.Immutable.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Collections.NonGeneric.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..120f48c Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Collections.NonGeneric.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Collections.Specialized.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Collections.Specialized.dll new file mode 100644 index 0000000..92335c2 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Collections.Specialized.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Collections.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Collections.dll new file mode 100644 index 0000000..4735e27 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Collections.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.Annotations.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..41b5d80 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.Annotations.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.DataAnnotations.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.DataAnnotations.dll new file mode 100644 index 0000000..6db3270 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.DataAnnotations.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.EventBasedAsync.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.EventBasedAsync.dll new file mode 100644 index 0000000..55c3c99 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.EventBasedAsync.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.Primitives.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..a6f8d2c Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.Primitives.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.TypeConverter.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..a1b7005 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.TypeConverter.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.dll new file mode 100644 index 0000000..6c77ec9 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ComponentModel.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Configuration.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Configuration.dll new file mode 100644 index 0000000..d3fa2de Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Configuration.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Console.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Console.dll new file mode 100644 index 0000000..35eeb7d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Console.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Core.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Core.dll new file mode 100644 index 0000000..4f75966 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Core.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Data.Common.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Data.Common.dll new file mode 100644 index 0000000..5af8a6a Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Data.Common.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Data.DataSetExtensions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Data.DataSetExtensions.dll new file mode 100644 index 0000000..8ddc8bf Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Data.DataSetExtensions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Data.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Data.dll new file mode 100644 index 0000000..0696c63 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Data.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.Contracts.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.Contracts.dll new file mode 100644 index 0000000..60db640 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.Contracts.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.Debug.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.Debug.dll new file mode 100644 index 0000000..93b69f6 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.Debug.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.DiagnosticSource.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..84fb317 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.DiagnosticSource.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.EventLog.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..0435191 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.EventLog.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.FileVersionInfo.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.FileVersionInfo.dll new file mode 100644 index 0000000..d819c41 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.FileVersionInfo.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.Process.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.Process.dll new file mode 100644 index 0000000..4b56467 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.Process.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.StackTrace.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..0890df5 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.StackTrace.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.TextWriterTraceListener.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.TextWriterTraceListener.dll new file mode 100644 index 0000000..840b2f4 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.Tools.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.Tools.dll new file mode 100644 index 0000000..6d4b088 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.Tools.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.TraceSource.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..8444430 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.TraceSource.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.Tracing.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..f3421b5 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Diagnostics.Tracing.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Drawing.Primitives.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Drawing.Primitives.dll new file mode 100644 index 0000000..ffd1d54 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Drawing.Primitives.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Drawing.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Drawing.dll new file mode 100644 index 0000000..cabf07f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Drawing.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Dynamic.Runtime.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Dynamic.Runtime.dll new file mode 100644 index 0000000..19f83f1 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Dynamic.Runtime.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Formats.Asn1.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Formats.Asn1.dll new file mode 100644 index 0000000..a818eeb Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Formats.Asn1.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Formats.Tar.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Formats.Tar.dll new file mode 100644 index 0000000..d3648ca Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Formats.Tar.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Globalization.Calendars.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Globalization.Calendars.dll new file mode 100644 index 0000000..9024a91 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Globalization.Calendars.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Globalization.Extensions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Globalization.Extensions.dll new file mode 100644 index 0000000..0c195b6 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Globalization.Extensions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Globalization.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Globalization.dll new file mode 100644 index 0000000..1d4fe2d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Globalization.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Compression.Brotli.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..fa1618f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Compression.Brotli.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Compression.FileSystem.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Compression.FileSystem.dll new file mode 100644 index 0000000..1221470 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Compression.FileSystem.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Compression.ZipFile.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Compression.ZipFile.dll new file mode 100644 index 0000000..6cbd9ca Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Compression.ZipFile.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Compression.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Compression.dll new file mode 100644 index 0000000..b907fa2 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Compression.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.FileSystem.AccessControl.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.FileSystem.AccessControl.dll new file mode 100644 index 0000000..c1dc0f9 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.FileSystem.AccessControl.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.FileSystem.DriveInfo.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.FileSystem.DriveInfo.dll new file mode 100644 index 0000000..c498e9d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.FileSystem.DriveInfo.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.FileSystem.Primitives.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.FileSystem.Primitives.dll new file mode 100644 index 0000000..0f57803 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.FileSystem.Primitives.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.FileSystem.Watcher.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..14db088 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.FileSystem.Watcher.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.FileSystem.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.FileSystem.dll new file mode 100644 index 0000000..7c7e14f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.FileSystem.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.IsolatedStorage.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.IsolatedStorage.dll new file mode 100644 index 0000000..b996cf1 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.IsolatedStorage.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.MemoryMappedFiles.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..79636a3 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.MemoryMappedFiles.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Pipelines.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Pipelines.dll new file mode 100644 index 0000000..6a86868 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Pipelines.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Pipes.AccessControl.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Pipes.AccessControl.dll new file mode 100644 index 0000000..5ce3668 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Pipes.AccessControl.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Pipes.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Pipes.dll new file mode 100644 index 0000000..5593e18 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.Pipes.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.UnmanagedMemoryStream.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.UnmanagedMemoryStream.dll new file mode 100644 index 0000000..fd74d0f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.UnmanagedMemoryStream.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.dll new file mode 100644 index 0000000..4056c32 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.IO.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Linq.Expressions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Linq.Expressions.dll new file mode 100644 index 0000000..df19480 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Linq.Expressions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Linq.Parallel.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Linq.Parallel.dll new file mode 100644 index 0000000..168ff52 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Linq.Parallel.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Linq.Queryable.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Linq.Queryable.dll new file mode 100644 index 0000000..9f61d32 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Linq.Queryable.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Linq.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Linq.dll new file mode 100644 index 0000000..cc18b0f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Linq.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Memory.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Memory.dll new file mode 100644 index 0000000..4dc9a68 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Memory.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Http.Json.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Http.Json.dll new file mode 100644 index 0000000..62e63fa Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Http.Json.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Http.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Http.dll new file mode 100644 index 0000000..9b74fdf Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Http.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.HttpListener.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.HttpListener.dll new file mode 100644 index 0000000..497ae56 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.HttpListener.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Mail.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Mail.dll new file mode 100644 index 0000000..9c50816 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Mail.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.NameResolution.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.NameResolution.dll new file mode 100644 index 0000000..9986578 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.NameResolution.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.NetworkInformation.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..4755e9f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.NetworkInformation.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Ping.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Ping.dll new file mode 100644 index 0000000..09f1915 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Ping.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Primitives.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Primitives.dll new file mode 100644 index 0000000..1662014 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Primitives.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Quic.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Quic.dll new file mode 100644 index 0000000..2a475bc Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Quic.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Requests.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Requests.dll new file mode 100644 index 0000000..3aa0cdb Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Requests.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Security.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Security.dll new file mode 100644 index 0000000..cc95112 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Security.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.ServicePoint.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.ServicePoint.dll new file mode 100644 index 0000000..6d53da9 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.ServicePoint.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Sockets.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Sockets.dll new file mode 100644 index 0000000..f5194a4 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.Sockets.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.WebClient.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.WebClient.dll new file mode 100644 index 0000000..672191e Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.WebClient.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.WebHeaderCollection.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.WebHeaderCollection.dll new file mode 100644 index 0000000..d01b0af Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.WebHeaderCollection.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.WebProxy.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.WebProxy.dll new file mode 100644 index 0000000..d07a03b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.WebProxy.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.WebSockets.Client.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.WebSockets.Client.dll new file mode 100644 index 0000000..cbab419 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.WebSockets.Client.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.WebSockets.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.WebSockets.dll new file mode 100644 index 0000000..9a14017 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.WebSockets.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.dll new file mode 100644 index 0000000..89eab82 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Net.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Numerics.Vectors.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Numerics.Vectors.dll new file mode 100644 index 0000000..6c09191 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Numerics.Vectors.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Numerics.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Numerics.dll new file mode 100644 index 0000000..79d22c5 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Numerics.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ObjectModel.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ObjectModel.dll new file mode 100644 index 0000000..d0f18ef Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ObjectModel.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.DispatchProxy.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.DispatchProxy.dll new file mode 100644 index 0000000..d5cb9ce Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.DispatchProxy.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Emit.ILGeneration.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..108e6d1 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Emit.ILGeneration.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Emit.Lightweight.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Emit.Lightweight.dll new file mode 100644 index 0000000..cb86795 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Emit.Lightweight.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Emit.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Emit.dll new file mode 100644 index 0000000..f462833 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Emit.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Extensions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Extensions.dll new file mode 100644 index 0000000..780c933 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Extensions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Metadata.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Metadata.dll new file mode 100644 index 0000000..0d523cd Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Metadata.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Primitives.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Primitives.dll new file mode 100644 index 0000000..8256b13 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.Primitives.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.TypeExtensions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.TypeExtensions.dll new file mode 100644 index 0000000..b72c083 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.TypeExtensions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.dll new file mode 100644 index 0000000..92c4dcf Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Reflection.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Resources.Reader.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Resources.Reader.dll new file mode 100644 index 0000000..3e135a0 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Resources.Reader.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Resources.ResourceManager.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Resources.ResourceManager.dll new file mode 100644 index 0000000..88e369e Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Resources.ResourceManager.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Resources.Writer.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Resources.Writer.dll new file mode 100644 index 0000000..969dd8a Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Resources.Writer.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.CompilerServices.Unsafe.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.CompilerServices.Unsafe.dll new file mode 100644 index 0000000..49f2277 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.CompilerServices.VisualC.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.CompilerServices.VisualC.dll new file mode 100644 index 0000000..e157a4b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Extensions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Extensions.dll new file mode 100644 index 0000000..7d727ca Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Extensions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Handles.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Handles.dll new file mode 100644 index 0000000..e0775fd Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Handles.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.InteropServices.JavaScript.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.InteropServices.JavaScript.dll new file mode 100644 index 0000000..ef2f51d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.InteropServices.JavaScript.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..c795d0d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.InteropServices.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..b81b3e6 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.InteropServices.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Intrinsics.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Intrinsics.dll new file mode 100644 index 0000000..4d93125 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Intrinsics.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Loader.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Loader.dll new file mode 100644 index 0000000..6b82db2 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Loader.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Numerics.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Numerics.dll new file mode 100644 index 0000000..aa85812 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Numerics.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Serialization.Formatters.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..cd85a58 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Serialization.Formatters.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Serialization.Json.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Serialization.Json.dll new file mode 100644 index 0000000..cf1e113 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Serialization.Json.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Serialization.Primitives.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..184c09d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Serialization.Primitives.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Serialization.Xml.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..2500dff Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Serialization.Xml.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Serialization.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Serialization.dll new file mode 100644 index 0000000..1da2337 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.Serialization.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.dll new file mode 100644 index 0000000..0e92610 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Runtime.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.AccessControl.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.AccessControl.dll new file mode 100644 index 0000000..1377c7d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.AccessControl.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Claims.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Claims.dll new file mode 100644 index 0000000..74f9c12 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Claims.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Algorithms.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..27d414a Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Algorithms.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Cng.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..2fc1e17 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Cng.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Csp.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Csp.dll new file mode 100644 index 0000000..f968bcc Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Csp.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Encoding.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Encoding.dll new file mode 100644 index 0000000..061add5 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Encoding.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.OpenSsl.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.OpenSsl.dll new file mode 100644 index 0000000..f6a85c0 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.OpenSsl.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Primitives.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..3cf55de Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Primitives.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.X509Certificates.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.X509Certificates.dll new file mode 100644 index 0000000..160984f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.X509Certificates.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Xml.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Xml.dll new file mode 100644 index 0000000..a2db54a Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.Xml.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.dll new file mode 100644 index 0000000..f640d91 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Cryptography.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Principal.Windows.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..5c0b89a Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Principal.Windows.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Principal.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Principal.dll new file mode 100644 index 0000000..b59ceed Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.Principal.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.SecureString.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.SecureString.dll new file mode 100644 index 0000000..2c727d8 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.SecureString.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.dll new file mode 100644 index 0000000..ea5699d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Security.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ServiceModel.Web.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ServiceModel.Web.dll new file mode 100644 index 0000000..645db8c Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ServiceModel.Web.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ServiceProcess.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ServiceProcess.dll new file mode 100644 index 0000000..4aba112 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ServiceProcess.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.Encoding.CodePages.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.Encoding.CodePages.dll new file mode 100644 index 0000000..255d058 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.Encoding.CodePages.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.Encoding.Extensions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..47dcdb3 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.Encoding.Extensions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.Encoding.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.Encoding.dll new file mode 100644 index 0000000..32ec032 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.Encoding.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.Encodings.Web.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..2a13b70 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.Encodings.Web.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.Json.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.Json.dll new file mode 100644 index 0000000..dddf6cf Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.Json.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.RegularExpressions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..317dc04 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Text.RegularExpressions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Channels.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Channels.dll new file mode 100644 index 0000000..42be803 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Channels.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Overlapped.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Overlapped.dll new file mode 100644 index 0000000..5fca4d4 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Overlapped.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.RateLimiting.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.RateLimiting.dll new file mode 100644 index 0000000..e0a7aca Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.RateLimiting.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Tasks.Dataflow.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Tasks.Dataflow.dll new file mode 100644 index 0000000..d8e3648 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Tasks.Dataflow.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Tasks.Extensions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Tasks.Extensions.dll new file mode 100644 index 0000000..afbd37b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Tasks.Extensions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Tasks.Parallel.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Tasks.Parallel.dll new file mode 100644 index 0000000..97714a5 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Tasks.Parallel.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Tasks.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Tasks.dll new file mode 100644 index 0000000..b7915c3 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Tasks.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Thread.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Thread.dll new file mode 100644 index 0000000..2d98025 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Thread.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.ThreadPool.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..137a1db Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.ThreadPool.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Timer.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Timer.dll new file mode 100644 index 0000000..b8e6985 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.Timer.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.dll new file mode 100644 index 0000000..b70f93a Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Threading.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Transactions.Local.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Transactions.Local.dll new file mode 100644 index 0000000..758232f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Transactions.Local.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Transactions.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Transactions.dll new file mode 100644 index 0000000..20fdf6f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Transactions.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ValueTuple.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ValueTuple.dll new file mode 100644 index 0000000..d5878c1 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.ValueTuple.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Web.HttpUtility.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Web.HttpUtility.dll new file mode 100644 index 0000000..60ca0dd Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Web.HttpUtility.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Web.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Web.dll new file mode 100644 index 0000000..96d2bc8 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Web.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Windows.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Windows.dll new file mode 100644 index 0000000..efeee3f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Windows.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.Linq.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.Linq.dll new file mode 100644 index 0000000..fed2f35 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.Linq.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.ReaderWriter.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..26755a9 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.ReaderWriter.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.Serialization.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.Serialization.dll new file mode 100644 index 0000000..cf47f56 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.Serialization.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.XDocument.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.XDocument.dll new file mode 100644 index 0000000..0a818f1 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.XDocument.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.XPath.XDocument.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.XPath.XDocument.dll new file mode 100644 index 0000000..94e34de Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.XPath.XDocument.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.XPath.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.XPath.dll new file mode 100644 index 0000000..54f4fbb Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.XPath.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.XmlDocument.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.XmlDocument.dll new file mode 100644 index 0000000..26f921c Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.XmlDocument.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.XmlSerializer.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..f029696 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.XmlSerializer.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.dll new file mode 100644 index 0000000..7efbd52 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.Xml.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.dll new file mode 100644 index 0000000..91b3633 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/System.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/WindowsBase.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/WindowsBase.dll new file mode 100644 index 0000000..6bd090b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/WindowsBase.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/mscorlib.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/mscorlib.dll new file mode 100644 index 0000000..b36b172 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/mscorlib.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/netstandard.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/netstandard.dll new file mode 100644 index 0000000..161f5c2 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/refs/netstandard.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..aefa288 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..60fe8bb Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..d58604b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..a60916e Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..905b81d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a new file mode 100644 index 0000000..ace30e6 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-arm/native/libe_sqlite3.so b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..8520492 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..30b84ea Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-armel/native/libe_sqlite3.so b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..48de629 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..4f7d693 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..2c9dcda Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..53949cf Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..a043d7d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so new file mode 100644 index 0000000..3593c9b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so new file mode 100644 index 0000000..7e01b91 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-x64/native/libe_sqlite3.so b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..a8f9ae0 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-x86/native/libe_sqlite3.so b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..f9a9b69 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..e6612c5 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..3ad1142 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..21a8f42 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..ffaf82f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/win-arm/native/e_sqlite3.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..454821f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/win-arm64/native/e_sqlite3.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..70805d9 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/win-x64/native/e_sqlite3.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..379665c Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/win-x86/native/e_sqlite3.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..c0e722d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/testcentric.engine.metadata.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/testcentric.engine.metadata.dll new file mode 100644 index 0000000..b982b6b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/testcentric.engine.metadata.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/testhost.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/testhost.dll new file mode 100644 index 0000000..1293868 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/testhost.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/testhost.exe b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/testhost.exe new file mode 100644 index 0000000..28d7921 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/testhost.exe differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..d065beb Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..3ce4b68 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..0ae1f0a Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..af9add9 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..7b20360 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..3a8015b Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..edf5098 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..f57eeba Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..352f693 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..56dd542 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll new file mode 100644 index 0000000..6880d0d Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll new file mode 100644 index 0000000..2185e73 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll new file mode 100644 index 0000000..a5ba960 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll new file mode 100644 index 0000000..5ad986f Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll new file mode 100644 index 0000000..15c99a7 Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Debug/net8.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll differ diff --git a/WebAPIExam/AcceTickTest/bin/Release/net8.0/CoverletSourceRootsMapping_AcceTickTest b/WebAPIExam/AcceTickTest/bin/Release/net8.0/CoverletSourceRootsMapping_AcceTickTest new file mode 100644 index 0000000..926e0cb Binary files /dev/null and b/WebAPIExam/AcceTickTest/bin/Release/net8.0/CoverletSourceRootsMapping_AcceTickTest differ diff --git a/WebAPIExam/AcceTickTest/obj/AcceTickTest.csproj.nuget.dgspec.json b/WebAPIExam/AcceTickTest/obj/AcceTickTest.csproj.nuget.dgspec.json new file mode 100644 index 0000000..3f4d8ff --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/AcceTickTest.csproj.nuget.dgspec.json @@ -0,0 +1,411 @@ +{ + "format": 1, + "restore": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\AcceTickTest\\AcceTickTest.csproj": {} + }, + "projects": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\AcceTickTest\\AcceTickTest.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\AcceTickTest\\AcceTickTest.csproj", + "projectName": "AcceTickTest", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\AcceTickTest\\AcceTickTest.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\AcceTickTest\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj": { + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj" + }, + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam\\WebAPIExam.csproj": { + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam\\WebAPIExam.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Testing": { + "target": "Package", + "version": "[8.0.3, )" + }, + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[17.8.0, )" + }, + "NUnit": { + "target": "Package", + "version": "[3.14.0, )" + }, + "NUnit.Analyzers": { + "target": "Package", + "version": "[3.9.0, )" + }, + "NUnit3TestAdapter": { + "target": "Package", + "version": "[4.5.0, )" + }, + "coverlet.collector": { + "target": "Package", + "version": "[6.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj", + "projectName": "Contracts", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "MediatR.Contracts": { + "target": "Package", + "version": "[2.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj", + "projectName": "Entity", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite": { + "target": "Package", + "version": "[8.0.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj", + "projectName": "Services", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj": { + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj" + }, + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj": { + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "FluentValidation": { + "target": "Package", + "version": "[11.9.0, )" + }, + "FluentValidation.DependencyInjectionExtensions": { + "target": "Package", + "version": "[11.9.0, )" + }, + "MediatR": { + "target": "Package", + "version": "[11.1.0, )" + }, + "MediatR.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[11.1.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam\\WebAPIExam.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam\\WebAPIExam.csproj", + "projectName": "WebAPIExam", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam\\WebAPIExam.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj": { + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "DateOnlyTimeOnly.AspNet": { + "target": "Package", + "version": "[2.1.1, )" + }, + "DateOnlyTimeOnly.AspNet.Swashbuckle": { + "target": "Package", + "version": "[2.1.1, )" + }, + "FluentValidation": { + "target": "Package", + "version": "[11.9.0, )" + }, + "FluentValidation.DependencyInjectionExtensions": { + "target": "Package", + "version": "[11.9.0, )" + }, + "Serilog.AspNetCore": { + "target": "Package", + "version": "[8.0.1, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/WebAPIExam/AcceTickTest/obj/AcceTickTest.csproj.nuget.g.props b/WebAPIExam/AcceTickTest/obj/AcceTickTest.csproj.nuget.g.props new file mode 100644 index 0000000..2620961 --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/AcceTickTest.csproj.nuget.g.props @@ -0,0 +1,28 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\hanss\.nuget\packages\ + PackageReference + 6.9.2 + + + + + + + + + + + + + + + C:\Users\hanss\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5 + C:\Users\hanss\.nuget\packages\nunit.analyzers\3.9.0 + + \ No newline at end of file diff --git a/WebAPIExam/AcceTickTest/obj/AcceTickTest.csproj.nuget.g.targets b/WebAPIExam/AcceTickTest/obj/AcceTickTest.csproj.nuget.g.targets new file mode 100644 index 0000000..b8e2db2 --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/AcceTickTest.csproj.nuget.g.targets @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTick.565C9C20.Up2Date b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTick.565C9C20.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.AssemblyInfo.cs b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.AssemblyInfo.cs new file mode 100644 index 0000000..d2d7c21 --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("AcceTickTest")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+681184ef29f83f797ad525699016e2067c66a5fb")] +[assembly: System.Reflection.AssemblyProductAttribute("AcceTickTest")] +[assembly: System.Reflection.AssemblyTitleAttribute("AcceTickTest")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.AssemblyInfoInputs.cache b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8a7724c --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +ba5a1e70d0aec57b564de035a1a209b07d5fc12aceb7639697a9a390208bdee1 diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.GeneratedMSBuildEditorConfig.editorconfig b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..976c198 --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = AcceTickTest +build_property.ProjectDir = C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.GlobalUsings.g.cs b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.GlobalUsings.g.cs new file mode 100644 index 0000000..d32bf35 --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.GlobalUsings.g.cs @@ -0,0 +1,9 @@ +// +global using global::NUnit.Framework; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.assets.cache b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.assets.cache new file mode 100644 index 0000000..ba4261b Binary files /dev/null and b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.assets.cache differ diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.csproj.AssemblyReference.cache b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.csproj.AssemblyReference.cache new file mode 100644 index 0000000..06725b7 Binary files /dev/null and b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.csproj.AssemblyReference.cache differ diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.csproj.BuildWithSkipAnalyzers b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.csproj.CoreCompileInputs.cache b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..98b3848 --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +0cfee77a68ec21c9e9e8933136d9ec6d51d1e1c571e9baf30c86e9476a6ef064 diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.csproj.FileListAbsolute.txt b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..3cdf4a8 --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.csproj.FileListAbsolute.txt @@ -0,0 +1,468 @@ +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\CoverletSourceRootsMapping_AcceTickTest +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\testhost.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\WebAPIExam.deps.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\WebAPIExam.runtimeconfig.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\appsettings.Development.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\appsettings.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\WebAPIExam.exe +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\testhost.exe +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\MvcTestingAppManifest.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\NUnit3.TestAdapter.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\NUnit3.TestAdapter.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\nunit.engine.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\nunit.engine.api.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\nunit.engine.core.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\testcentric.engine.metadata.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\AcceTickTest.deps.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\AcceTickTest.runtimeconfig.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\AcceTickTest.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\AcceTickTest.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Antiforgery.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Authentication.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Authentication.BearerToken.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Authentication.Cookies.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Authentication.Core.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Authentication.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Authentication.OAuth.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Authorization.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Authorization.Policy.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Components.Authorization.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Components.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Components.Endpoints.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Components.Forms.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Components.Server.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Components.Web.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Connections.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.CookiePolicy.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Cors.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Cryptography.Internal.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.DataProtection.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.DataProtection.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.DataProtection.Extensions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Diagnostics.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.HostFiltering.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Hosting.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Hosting.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Html.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Http.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Http.Connections.Common.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Http.Connections.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Http.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Http.Extensions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Http.Features.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Http.Results.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.HttpLogging.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.HttpOverrides.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.HttpsPolicy.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Identity.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Localization.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Localization.Routing.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Metadata.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Mvc.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Mvc.Core.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Mvc.Cors.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Mvc.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Mvc.Localization.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Mvc.Razor.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Mvc.RazorPages.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Mvc.TagHelpers.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.OutputCaching.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.RateLimiting.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Razor.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Razor.Runtime.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.RequestDecompression.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.ResponseCaching.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.ResponseCompression.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Rewrite.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Routing.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Routing.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Server.HttpSys.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Server.IIS.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Server.IISIntegration.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Server.Kestrel.Core.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Server.Kestrel.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.Session.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.SignalR.Common.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.SignalR.Core.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.SignalR.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.StaticFiles.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.WebSockets.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.AspNetCore.WebUtilities.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.CSharp.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Caching.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Caching.Memory.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Configuration.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Configuration.Binder.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Configuration.CommandLine.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Configuration.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Configuration.FileExtensions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Configuration.Ini.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Configuration.Json.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Configuration.KeyPerFile.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Configuration.UserSecrets.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Configuration.Xml.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.DependencyInjection.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Diagnostics.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Diagnostics.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Diagnostics.HealthChecks.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Features.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.FileProviders.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.FileProviders.Composite.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.FileProviders.Embedded.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.FileProviders.Physical.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.FileSystemGlobbing.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Hosting.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Hosting.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Http.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Identity.Core.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Identity.Stores.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Localization.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Localization.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Logging.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Logging.Configuration.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Logging.Console.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Logging.Debug.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Logging.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Logging.EventLog.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Logging.EventSource.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Logging.TraceSource.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.ObjectPool.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Options.ConfigurationExtensions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Options.DataAnnotations.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Options.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.Primitives.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Extensions.WebEncoders.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.JSInterop.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Net.Http.Headers.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.VisualBasic.Core.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.VisualBasic.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Win32.Primitives.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\Microsoft.Win32.Registry.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\mscorlib.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\netstandard.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.AppContext.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Buffers.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Collections.Concurrent.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Collections.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Collections.Immutable.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Collections.NonGeneric.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Collections.Specialized.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.ComponentModel.Annotations.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.ComponentModel.DataAnnotations.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.ComponentModel.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.ComponentModel.EventBasedAsync.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.ComponentModel.Primitives.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.ComponentModel.TypeConverter.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Configuration.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Console.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Core.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Data.Common.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Data.DataSetExtensions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Data.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Diagnostics.Contracts.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Diagnostics.Debug.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Diagnostics.DiagnosticSource.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Diagnostics.EventLog.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Diagnostics.FileVersionInfo.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Diagnostics.Process.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Diagnostics.StackTrace.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Diagnostics.TextWriterTraceListener.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Diagnostics.Tools.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Diagnostics.TraceSource.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Diagnostics.Tracing.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Drawing.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Drawing.Primitives.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Dynamic.Runtime.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Formats.Asn1.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Formats.Tar.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Globalization.Calendars.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Globalization.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Globalization.Extensions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.IO.Compression.Brotli.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.IO.Compression.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.IO.Compression.FileSystem.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.IO.Compression.ZipFile.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.IO.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.IO.FileSystem.AccessControl.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.IO.FileSystem.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.IO.FileSystem.DriveInfo.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.IO.FileSystem.Primitives.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.IO.FileSystem.Watcher.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.IO.IsolatedStorage.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.IO.MemoryMappedFiles.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.IO.Pipelines.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.IO.Pipes.AccessControl.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.IO.Pipes.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.IO.UnmanagedMemoryStream.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Linq.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Linq.Expressions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Linq.Parallel.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Linq.Queryable.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Memory.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.Http.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.Http.Json.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.HttpListener.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.Mail.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.NameResolution.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.NetworkInformation.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.Ping.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.Primitives.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.Quic.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.Requests.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.Security.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.ServicePoint.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.Sockets.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.WebClient.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.WebHeaderCollection.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.WebProxy.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.WebSockets.Client.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Net.WebSockets.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Numerics.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Numerics.Vectors.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.ObjectModel.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Reflection.DispatchProxy.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Reflection.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Reflection.Emit.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Reflection.Emit.ILGeneration.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Reflection.Emit.Lightweight.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Reflection.Extensions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Reflection.Metadata.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Reflection.Primitives.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Reflection.TypeExtensions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Resources.Reader.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Resources.ResourceManager.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Resources.Writer.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Runtime.CompilerServices.Unsafe.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Runtime.CompilerServices.VisualC.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Runtime.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Runtime.Extensions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Runtime.Handles.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Runtime.InteropServices.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Runtime.InteropServices.JavaScript.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Runtime.Intrinsics.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Runtime.Loader.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Runtime.Numerics.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Runtime.Serialization.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Runtime.Serialization.Formatters.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Runtime.Serialization.Json.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Runtime.Serialization.Primitives.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Runtime.Serialization.Xml.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Security.AccessControl.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Security.Claims.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Security.Cryptography.Algorithms.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Security.Cryptography.Cng.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Security.Cryptography.Csp.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Security.Cryptography.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Security.Cryptography.Encoding.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Security.Cryptography.OpenSsl.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Security.Cryptography.Primitives.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Security.Cryptography.X509Certificates.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Security.Cryptography.Xml.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Security.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Security.Principal.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Security.Principal.Windows.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Security.SecureString.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.ServiceModel.Web.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.ServiceProcess.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Text.Encoding.CodePages.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Text.Encoding.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Text.Encoding.Extensions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Text.Encodings.Web.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Text.Json.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Text.RegularExpressions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Threading.Channels.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Threading.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Threading.Overlapped.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Threading.RateLimiting.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Threading.Tasks.Dataflow.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Threading.Tasks.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Threading.Tasks.Extensions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Threading.Tasks.Parallel.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Threading.Thread.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Threading.ThreadPool.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Threading.Timer.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Transactions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Transactions.Local.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.ValueTuple.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Web.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Web.HttpUtility.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Windows.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Xml.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Xml.Linq.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Xml.ReaderWriter.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Xml.Serialization.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Xml.XDocument.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Xml.XmlDocument.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Xml.XmlSerializer.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Xml.XPath.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\System.Xml.XPath.XDocument.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\refs\WindowsBase.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\DateOnlyTimeOnly.AspNet.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\DateOnlyTimeOnly.AspNet.Swashbuckle.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\FluentValidation.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\FluentValidation.DependencyInjectionExtensions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\MediatR.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\MediatR.Contracts.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\MediatR.Extensions.Microsoft.DependencyInjection.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Microsoft.AspNetCore.Mvc.Testing.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Microsoft.AspNetCore.TestHost.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Microsoft.VisualStudio.CodeCoverage.Shim.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Microsoft.Data.Sqlite.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Sqlite.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Microsoft.Extensions.DependencyModel.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Microsoft.OpenApi.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Microsoft.TestPlatform.CoreUtilities.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Microsoft.TestPlatform.PlatformAbstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Microsoft.VisualStudio.TestPlatform.ObjectModel.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Microsoft.TestPlatform.CommunicationUtilities.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Microsoft.TestPlatform.CrossPlatEngine.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Microsoft.TestPlatform.Utilities.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Microsoft.VisualStudio.TestPlatform.Common.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Newtonsoft.Json.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\NuGet.Frameworks.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\nunit.framework.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Serilog.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Serilog.AspNetCore.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Serilog.Extensions.Hosting.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Serilog.Extensions.Logging.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Serilog.Formatting.Compact.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Serilog.Settings.Configuration.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Serilog.Sinks.Console.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Serilog.Sinks.Debug.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Serilog.Sinks.File.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\SQLitePCLRaw.batteries_v2.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\SQLitePCLRaw.core.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\SQLitePCLRaw.provider.e_sqlite3.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\cs\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\cs\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\de\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\de\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\es\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\es\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\fr\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\fr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\it\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\it\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\ja\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\ja\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\ko\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\ko\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\pl\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\pl\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\pt-BR\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\pt-BR\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\ru\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\ru\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\tr\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\tr\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\zh-Hans\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\zh-Hant\Microsoft.TestPlatform.CoreUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\cs\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\cs\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\cs\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\de\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\de\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\de\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\es\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\es\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\es\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\fr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\fr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\fr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\it\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\it\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\it\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\ja\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\ja\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\ja\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\ko\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\ko\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\ko\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\pl\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\pl\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\pl\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\pt-BR\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\pt-BR\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\pt-BR\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\ru\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\ru\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\ru\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\tr\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\tr\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\tr\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\zh-Hans\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\zh-Hans\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\zh-Hans\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\zh-Hant\Microsoft.TestPlatform.CommunicationUtilities.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\zh-Hant\Microsoft.TestPlatform.CrossPlatEngine.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\zh-Hant\Microsoft.VisualStudio.TestPlatform.Common.resources.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\linux-arm\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\linux-arm64\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\linux-armel\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\linux-mips64\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\linux-musl-arm\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\linux-ppc64le\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\linux-s390x\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\linux-x64\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\linux-x86\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\osx-arm64\native\libe_sqlite3.dylib +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\osx-x64\native\libe_sqlite3.dylib +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\win-arm\native\e_sqlite3.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\win-arm64\native\e_sqlite3.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\win-x64\native\e_sqlite3.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\runtimes\win-x86\native\e_sqlite3.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Contracts.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Entity.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Services.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\WebAPIExam.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Entity.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\WebAPIExam.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Contracts.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\bin\Debug\net8.0\Services.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\obj\Debug\net8.0\AcceTickTest.csproj.AssemblyReference.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\obj\Debug\net8.0\MvcTestingAppManifest.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\obj\Debug\net8.0\AcceTickTest.GeneratedMSBuildEditorConfig.editorconfig +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\obj\Debug\net8.0\AcceTickTest.AssemblyInfoInputs.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\obj\Debug\net8.0\AcceTickTest.AssemblyInfo.cs +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\obj\Debug\net8.0\AcceTickTest.csproj.CoreCompileInputs.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\obj\Debug\net8.0\AcceTickTest.sourcelink.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\obj\Debug\net8.0\AcceTick.565C9C20.Up2Date +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\obj\Debug\net8.0\AcceTickTest.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\obj\Debug\net8.0\refint\AcceTickTest.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\obj\Debug\net8.0\AcceTickTest.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\obj\Debug\net8.0\AcceTickTest.genruntimeconfig.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\obj\Debug\net8.0\ref\AcceTickTest.dll diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.dll b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.dll new file mode 100644 index 0000000..bfe7ede Binary files /dev/null and b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.dll differ diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.genruntimeconfig.cache b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.genruntimeconfig.cache new file mode 100644 index 0000000..05247be --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.genruntimeconfig.cache @@ -0,0 +1 @@ +19ef1cfc744fb5e1ba0f88fe2fbb1759eaed558ba8cbfc606a290ab65c447c94 diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.pdb b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.pdb new file mode 100644 index 0000000..9da228f Binary files /dev/null and b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.pdb differ diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.sourcelink.json b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.sourcelink.json new file mode 100644 index 0000000..64b8044 --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/AcceTickTest.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\*":"https://raw.githubusercontent.com/accelist/ExamNETWebAPI/681184ef29f83f797ad525699016e2067c66a5fb/*"}} \ No newline at end of file diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/MvcTestingAppManifest.json b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/MvcTestingAppManifest.json new file mode 100644 index 0000000..742a725 --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/MvcTestingAppManifest.json @@ -0,0 +1,6 @@ +{ + "Contracts, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts", + "Entity, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity", + "Services, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services", + "WebAPIExam, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam" +} \ No newline at end of file diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/ref/AcceTickTest.dll b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/ref/AcceTickTest.dll new file mode 100644 index 0000000..2e0d7fc Binary files /dev/null and b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/ref/AcceTickTest.dll differ diff --git a/WebAPIExam/AcceTickTest/obj/Debug/net8.0/refint/AcceTickTest.dll b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/refint/AcceTickTest.dll new file mode 100644 index 0000000..2e0d7fc Binary files /dev/null and b/WebAPIExam/AcceTickTest/obj/Debug/net8.0/refint/AcceTickTest.dll differ diff --git a/WebAPIExam/AcceTickTest/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/WebAPIExam/AcceTickTest/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.AssemblyInfo.cs b/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.AssemblyInfo.cs new file mode 100644 index 0000000..89b29ff --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("AcceTickTest")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+681184ef29f83f797ad525699016e2067c66a5fb")] +[assembly: System.Reflection.AssemblyProductAttribute("AcceTickTest")] +[assembly: System.Reflection.AssemblyTitleAttribute("AcceTickTest")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.AssemblyInfoInputs.cache b/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.AssemblyInfoInputs.cache new file mode 100644 index 0000000..0648f7d --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +770c3a1de58245a8d374dc720b26fb414266418062d49d376d7c875ff2858153 diff --git a/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.GeneratedMSBuildEditorConfig.editorconfig b/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..976c198 --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = AcceTickTest +build_property.ProjectDir = C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\AcceTickTest\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.GlobalUsings.g.cs b/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.GlobalUsings.g.cs new file mode 100644 index 0000000..d32bf35 --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.GlobalUsings.g.cs @@ -0,0 +1,9 @@ +// +global using global::NUnit.Framework; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.assets.cache b/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.assets.cache new file mode 100644 index 0000000..0e35b99 Binary files /dev/null and b/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.assets.cache differ diff --git a/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.csproj.AssemblyReference.cache b/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.csproj.AssemblyReference.cache new file mode 100644 index 0000000..4604086 Binary files /dev/null and b/WebAPIExam/AcceTickTest/obj/Release/net8.0/AcceTickTest.csproj.AssemblyReference.cache differ diff --git a/WebAPIExam/AcceTickTest/obj/project.assets.json b/WebAPIExam/AcceTickTest/obj/project.assets.json new file mode 100644 index 0000000..0276649 --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/project.assets.json @@ -0,0 +1,4642 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "coverlet.collector/6.0.0": { + "type": "package", + "build": { + "build/netstandard1.0/coverlet.collector.targets": {} + } + }, + "DateOnlyTimeOnly.AspNet/2.1.1": { + "type": "package", + "compile": { + "lib/net7.0/DateOnlyTimeOnly.AspNet.dll": {} + }, + "runtime": { + "lib/net7.0/DateOnlyTimeOnly.AspNet.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "DateOnlyTimeOnly.AspNet.Swashbuckle/2.1.1": { + "type": "package", + "dependencies": { + "DateOnlyTimeOnly.AspNet": "2.1.1", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3" + }, + "compile": { + "lib/net7.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll": {} + }, + "runtime": { + "lib/net7.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll": {} + } + }, + "FluentValidation/11.9.0": { + "type": "package", + "compile": { + "lib/net8.0/FluentValidation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/FluentValidation.dll": { + "related": ".xml" + } + } + }, + "FluentValidation.DependencyInjectionExtensions/11.9.0": { + "type": "package", + "dependencies": { + "FluentValidation": "11.9.0", + "Microsoft.Extensions.Dependencyinjection.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + } + }, + "MediatR/11.1.0": { + "type": "package", + "dependencies": { + "MediatR.Contracts": "1.0.1" + }, + "compile": { + "lib/netstandard2.1/MediatR.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MediatR.dll": { + "related": ".xml" + } + } + }, + "MediatR.Contracts/2.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "related": ".xml" + } + } + }, + "MediatR.Extensions.Microsoft.DependencyInjection/11.1.0": { + "type": "package", + "dependencies": { + "MediatR": "[11.0.0, 12.0.0)", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" + }, + "compile": { + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Testing/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.TestHost": "8.0.3", + "Microsoft.Extensions.DependencyModel": "8.0.0", + "Microsoft.Extensions.Hosting": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.Testing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Mvc.Testing.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "buildTransitive/net8.0/Microsoft.AspNetCore.Mvc.Testing.targets": {} + } + }, + "Microsoft.AspNetCore.TestHost/8.0.3": { + "type": "package", + "dependencies": { + "System.IO.Pipelines": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.TestHost.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.TestHost.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.CodeCoverage/17.8.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "build": { + "build/netstandard2.0/Microsoft.CodeCoverage.props": {}, + "build/netstandard2.0/Microsoft.CodeCoverage.targets": {} + } + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "compile": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.3", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.3", + "Microsoft.Extensions.Caching.Memory": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.3", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.3", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + }, + "compile": { + "lib/net8.0/_._": {} + }, + "runtime": { + "lib/net8.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.3", + "Microsoft.EntityFrameworkCore.Relational": "8.0.3", + "Microsoft.Extensions.DependencyModel": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "build": { + "build/_._": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/_._": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} + } + }, + "Microsoft.Extensions.Configuration.CommandLine/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Physical": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Json/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.Json": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Physical": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.props": {}, + "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.targets": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "System.Diagnostics.DiagnosticSource": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Physical/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileSystemGlobbing/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "8.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "8.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "8.0.0", + "Microsoft.Extensions.Configuration.Json": "8.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "8.0.0", + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Diagnostics": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Physical": "8.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Configuration": "8.0.0", + "Microsoft.Extensions.Logging.Console": "8.0.0", + "Microsoft.Extensions.Logging.Debug": "8.0.0", + "Microsoft.Extensions.Logging.EventLog": "8.0.0", + "Microsoft.Extensions.Logging.EventSource": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Logging.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration": "8.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Console/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Configuration": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.EventLog/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "System.Diagnostics.EventLog": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.EventSource/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.NET.Test.Sdk/17.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "17.8.0", + "Microsoft.TestPlatform.TestHost": "17.8.0" + }, + "compile": { + "lib/netcoreapp3.1/_._": {} + }, + "runtime": { + "lib/netcoreapp3.1/_._": {} + }, + "build": { + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props": {}, + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} + } + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.TestPlatform.ObjectModel/17.8.0": { + "type": "package", + "dependencies": { + "NuGet.Frameworks": "6.5.0", + "System.Reflection.Metadata": "1.6.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/17.8.0": { + "type": "package", + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.8.0", + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp3.1/testhost.dll": { + "related": ".deps.json" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp3.1/testhost.dll": { + "related": ".deps.json" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props": {} + } + }, + "NETStandard.Library/2.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "1.1.0" + }, + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + }, + "build": { + "build/netstandard2.0/NETStandard.Library.targets": {} + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "NuGet.Frameworks/6.5.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/NuGet.Frameworks.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": {} + } + }, + "NUnit/3.14.0": { + "type": "package", + "dependencies": { + "NETStandard.Library": "2.0.0" + }, + "compile": { + "lib/netstandard2.0/nunit.framework.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/nunit.framework.dll": { + "related": ".xml" + } + }, + "build": { + "build/NUnit.props": {} + } + }, + "NUnit.Analyzers/3.9.0": { + "type": "package" + }, + "NUnit3TestAdapter/4.5.0": { + "type": "package", + "build": { + "build/netcoreapp3.1/NUnit3TestAdapter.props": {} + } + }, + "Serilog/3.1.1": { + "type": "package", + "compile": { + "lib/net7.0/Serilog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Serilog.dll": { + "related": ".xml" + } + } + }, + "Serilog.AspNetCore/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Serilog": "3.1.1", + "Serilog.Extensions.Hosting": "8.0.0", + "Serilog.Extensions.Logging": "8.0.0", + "Serilog.Formatting.Compact": "2.0.0", + "Serilog.Settings.Configuration": "8.0.0", + "Serilog.Sinks.Console": "5.0.0", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "5.0.0" + }, + "compile": { + "lib/net8.0/Serilog.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Serilog.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Serilog.Extensions.Hosting/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Serilog": "3.1.1", + "Serilog.Extensions.Logging": "8.0.0" + }, + "compile": { + "lib/net8.0/Serilog.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Serilog.Extensions.Hosting.dll": { + "related": ".xml" + } + } + }, + "Serilog.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging": "8.0.0", + "Serilog": "3.1.1" + }, + "compile": { + "lib/net8.0/Serilog.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Serilog.Extensions.Logging.dll": { + "related": ".xml" + } + } + }, + "Serilog.Formatting.Compact/2.0.0": { + "type": "package", + "dependencies": { + "Serilog": "3.1.0" + }, + "compile": { + "lib/net7.0/Serilog.Formatting.Compact.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Serilog.Formatting.Compact.dll": { + "related": ".xml" + } + } + }, + "Serilog.Settings.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.DependencyModel": "8.0.0", + "Serilog": "3.1.1" + }, + "compile": { + "lib/net8.0/Serilog.Settings.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Serilog.Settings.Configuration.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Console/5.0.0": { + "type": "package", + "dependencies": { + "Serilog": "3.1.0" + }, + "compile": { + "lib/net7.0/Serilog.Sinks.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Serilog.Sinks.Console.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "related": ".pdb;.xml" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.6", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.6" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + } + }, + "SQLitePCLRaw.core/2.1.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "build": { + "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets": {} + }, + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": { + "assetType": "native", + "rid": "browser-wasm" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm64" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-ppc64le" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-s390x" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-arm64" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-x64" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-arm64" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "compile": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + }, + "build": { + "build/_._": {} + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "System.Diagnostics.DiagnosticSource/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Diagnostics.EventLog/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Pipelines/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Memory/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Reflection.Metadata/1.6.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + } + }, + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/8.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/System.Text.Json.targets": {} + } + }, + "Contracts/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "MediatR.Contracts": "2.0.1" + }, + "compile": { + "bin/placeholder/Contracts.dll": {} + }, + "runtime": { + "bin/placeholder/Contracts.dll": {} + } + }, + "Entity/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite": "8.0.3" + }, + "compile": { + "bin/placeholder/Entity.dll": {} + }, + "runtime": { + "bin/placeholder/Entity.dll": {} + } + }, + "Services/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Contracts": "1.0.0", + "Entity": "1.0.0", + "FluentValidation": "11.9.0", + "FluentValidation.DependencyInjectionExtensions": "11.9.0", + "MediatR": "11.1.0", + "MediatR.Extensions.Microsoft.DependencyInjection": "11.1.0" + }, + "compile": { + "bin/placeholder/Services.dll": {} + }, + "runtime": { + "bin/placeholder/Services.dll": {} + } + }, + "WebAPIExam/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "DateOnlyTimeOnly.AspNet": "2.1.1", + "DateOnlyTimeOnly.AspNet.Swashbuckle": "2.1.1", + "FluentValidation": "11.9.0", + "FluentValidation.DependencyInjectionExtensions": "11.9.0", + "Serilog.AspNetCore": "8.0.1", + "Services": "1.0.0", + "Swashbuckle.AspNetCore": "6.4.0" + }, + "compile": { + "bin/placeholder/WebAPIExam.dll": {} + }, + "runtime": { + "bin/placeholder/WebAPIExam.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + } + } + }, + "libraries": { + "coverlet.collector/6.0.0": { + "sha512": "tW3lsNS+dAEII6YGUX/VMoJjBS1QvsxqJeqLaJXub08y1FSjasFPtQ4UBUsudE9PNrzLjooClMsPtY2cZLdXpQ==", + "type": "package", + "path": "coverlet.collector/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/netstandard1.0/Microsoft.Bcl.AsyncInterfaces.dll", + "build/netstandard1.0/Microsoft.CSharp.dll", + "build/netstandard1.0/Microsoft.DotNet.PlatformAbstractions.dll", + "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "build/netstandard1.0/Microsoft.Extensions.DependencyInjection.dll", + "build/netstandard1.0/Microsoft.Extensions.DependencyModel.dll", + "build/netstandard1.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "build/netstandard1.0/Microsoft.TestPlatform.CoreUtilities.dll", + "build/netstandard1.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netstandard1.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "build/netstandard1.0/Mono.Cecil.Mdb.dll", + "build/netstandard1.0/Mono.Cecil.Pdb.dll", + "build/netstandard1.0/Mono.Cecil.Rocks.dll", + "build/netstandard1.0/Mono.Cecil.dll", + "build/netstandard1.0/Newtonsoft.Json.dll", + "build/netstandard1.0/NuGet.Frameworks.dll", + "build/netstandard1.0/System.AppContext.dll", + "build/netstandard1.0/System.Collections.Immutable.dll", + "build/netstandard1.0/System.Dynamic.Runtime.dll", + "build/netstandard1.0/System.IO.FileSystem.Primitives.dll", + "build/netstandard1.0/System.Linq.Expressions.dll", + "build/netstandard1.0/System.Linq.dll", + "build/netstandard1.0/System.ObjectModel.dll", + "build/netstandard1.0/System.Reflection.Emit.ILGeneration.dll", + "build/netstandard1.0/System.Reflection.Emit.Lightweight.dll", + "build/netstandard1.0/System.Reflection.Emit.dll", + "build/netstandard1.0/System.Reflection.Metadata.dll", + "build/netstandard1.0/System.Reflection.TypeExtensions.dll", + "build/netstandard1.0/System.Runtime.CompilerServices.Unsafe.dll", + "build/netstandard1.0/System.Runtime.Serialization.Primitives.dll", + "build/netstandard1.0/System.Text.RegularExpressions.dll", + "build/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "build/netstandard1.0/System.Threading.dll", + "build/netstandard1.0/System.Xml.ReaderWriter.dll", + "build/netstandard1.0/System.Xml.XDocument.dll", + "build/netstandard1.0/coverlet.collector.deps.json", + "build/netstandard1.0/coverlet.collector.dll", + "build/netstandard1.0/coverlet.collector.pdb", + "build/netstandard1.0/coverlet.collector.targets", + "build/netstandard1.0/coverlet.core.dll", + "build/netstandard1.0/coverlet.core.pdb", + "coverlet-icon.png", + "coverlet.collector.6.0.0.nupkg.sha512", + "coverlet.collector.nuspec" + ] + }, + "DateOnlyTimeOnly.AspNet/2.1.1": { + "sha512": "7HlGV6sm0efRMquxnZaoqV3KybUMOs1IaJ4TaX85v7IZF01h1YV6Zscos9g4qQfrGYfvqLjbpe3Q54cmMBeISQ==", + "type": "package", + "path": "dateonlytimeonly.aspnet/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "dateonlytimeonly.aspnet.2.1.1.nupkg.sha512", + "dateonlytimeonly.aspnet.nuspec", + "lib/net6.0/DateOnlyTimeOnly.AspNet.dll", + "lib/net7.0/DateOnlyTimeOnly.AspNet.dll" + ] + }, + "DateOnlyTimeOnly.AspNet.Swashbuckle/2.1.1": { + "sha512": "X2k2yelbE2jyBI/pOv5T615ell5Rhmb31MV1mM0Q+VpqNUran20gdGz9MBP9dbAcbH1EQ/l/s/EcX/+Bp365jQ==", + "type": "package", + "path": "dateonlytimeonly.aspnet.swashbuckle/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "dateonlytimeonly.aspnet.swashbuckle.2.1.1.nupkg.sha512", + "dateonlytimeonly.aspnet.swashbuckle.nuspec", + "lib/net6.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll", + "lib/net7.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll" + ] + }, + "FluentValidation/11.9.0": { + "sha512": "VneVlTvwYDkfHV5av3QrQ0amALgrLX6LV94wlYyEsh0B/klJBW7C8y2eAtj5tOZ3jH6CAVpr4s1ZGgew/QWyig==", + "type": "package", + "path": "fluentvalidation/11.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.11.9.0.nupkg.sha512", + "fluentvalidation.nuspec", + "lib/net5.0/FluentValidation.dll", + "lib/net5.0/FluentValidation.xml", + "lib/net6.0/FluentValidation.dll", + "lib/net6.0/FluentValidation.xml", + "lib/net7.0/FluentValidation.dll", + "lib/net7.0/FluentValidation.xml", + "lib/net8.0/FluentValidation.dll", + "lib/net8.0/FluentValidation.xml", + "lib/netstandard2.0/FluentValidation.dll", + "lib/netstandard2.0/FluentValidation.xml", + "lib/netstandard2.1/FluentValidation.dll", + "lib/netstandard2.1/FluentValidation.xml" + ] + }, + "FluentValidation.DependencyInjectionExtensions/11.9.0": { + "sha512": "Ko++xvN7HUf4WlHJL6bhsybUj/uho8ApOYIdxGjpF8Ot7Fukz6LRfRJ06H0KXhWqmMHWEbu89hJbjKJHtg7b9g==", + "type": "package", + "path": "fluentvalidation.dependencyinjectionextensions/11.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.dependencyinjectionextensions.11.9.0.nupkg.sha512", + "fluentvalidation.dependencyinjectionextensions.nuspec", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.xml", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.xml" + ] + }, + "MediatR/11.1.0": { + "sha512": "YIbtrLOyeCuIv8vIuHL/mMdls5xmgS36pIOJDxKZuu55nxA2MI2Z+E/Uk0z+F/LE11AGmpjplOM0NZ91m5LQBA==", + "type": "package", + "path": "mediatr/11.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "gradient_128x128.png", + "lib/netstandard2.1/MediatR.dll", + "lib/netstandard2.1/MediatR.xml", + "mediatr.11.1.0.nupkg.sha512", + "mediatr.nuspec" + ] + }, + "MediatR.Contracts/2.0.1": { + "sha512": "FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", + "type": "package", + "path": "mediatr.contracts/2.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "gradient_128x128.png", + "lib/netstandard2.0/MediatR.Contracts.dll", + "lib/netstandard2.0/MediatR.Contracts.xml", + "mediatr.contracts.2.0.1.nupkg.sha512", + "mediatr.contracts.nuspec" + ] + }, + "MediatR.Extensions.Microsoft.DependencyInjection/11.1.0": { + "sha512": "RW3etRuy6Xp63cgqfC0r/ITOtUT0f9ymJl1+1XZdzsYUsfv7WBPC2kXGOP8IYpY/6c4Q6805vbIW/88DopUs3w==", + "type": "package", + "path": "mediatr.extensions.microsoft.dependencyinjection/11.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "gradient_128x128.png", + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll", + "mediatr.extensions.microsoft.dependencyinjection.11.1.0.nupkg.sha512", + "mediatr.extensions.microsoft.dependencyinjection.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Testing/8.0.3": { + "sha512": "g+RQYslZ86OmgcvOa4eZooCZ1IzrEqgKVpQ8SU3qwLSyvlBh8PUJAwMrpN6Lmm53DZ47ZqHSNB1rO5ZnTiAdrg==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.testing/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "build/net8.0/Microsoft.AspNetCore.Mvc.Testing.targets", + "buildTransitive/net8.0/Microsoft.AspNetCore.Mvc.Testing.targets", + "lib/net8.0/Microsoft.AspNetCore.Mvc.Testing.dll", + "lib/net8.0/Microsoft.AspNetCore.Mvc.Testing.xml", + "microsoft.aspnetcore.mvc.testing.8.0.3.nupkg.sha512", + "microsoft.aspnetcore.mvc.testing.nuspec", + "tasks/netstandard2.0/Microsoft.AspNetCore.Mvc.Testing.Tasks.dll" + ] + }, + "Microsoft.AspNetCore.TestHost/8.0.3": { + "sha512": "1uZ+wmx8cw5L/cdgEL+54/+6H83+joSfZP6j92nP4Hk2MejD25gnVdhlCsm6O4fiIwKqNoU2H3a9s3laQnTj5w==", + "type": "package", + "path": "microsoft.aspnetcore.testhost/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/Microsoft.AspNetCore.TestHost.dll", + "lib/net8.0/Microsoft.AspNetCore.TestHost.xml", + "microsoft.aspnetcore.testhost.8.0.3.nupkg.sha512", + "microsoft.aspnetcore.testhost.nuspec" + ] + }, + "Microsoft.CodeCoverage/17.8.0": { + "sha512": "KC8SXWbGIdoFVdlxKk9WHccm0llm9HypcHMLUUFabRiTS3SO2fQXNZfdiF3qkEdTJhbRrxhdRxjL4jbtwPq4Ew==", + "type": "package", + "path": "microsoft.codecoverage/17.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_MIT.txt", + "ThirdPartyNotices.txt", + "build/netstandard2.0/CodeCoverage/CodeCoverage.config", + "build/netstandard2.0/CodeCoverage/CodeCoverage.exe", + "build/netstandard2.0/CodeCoverage/VanguardInstrumentationProfiler_x86.config", + "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe", + "build/netstandard2.0/CodeCoverage/amd64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll", + "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll", + "build/netstandard2.0/CodeCoverage/arm64/VanguardInstrumentationProfiler_arm64.config", + "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll", + "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll", + "build/netstandard2.0/CodeCoverage/codecoveragemessages.dll", + "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "build/netstandard2.0/CodeCoverage/covrun32.dll", + "build/netstandard2.0/CodeCoverage/msdia140.dll", + "build/netstandard2.0/InstrumentationEngine/alpine/x64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard2.0/InstrumentationEngine/alpine/x64/libCoverageInstrumentationMethod.so", + "build/netstandard2.0/InstrumentationEngine/alpine/x64/libInstrumentationEngine.so", + "build/netstandard2.0/InstrumentationEngine/arm64/MicrosoftInstrumentationEngine_arm64.dll", + "build/netstandard2.0/InstrumentationEngine/macos/x64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard2.0/InstrumentationEngine/macos/x64/libCoverageInstrumentationMethod.dylib", + "build/netstandard2.0/InstrumentationEngine/macos/x64/libInstrumentationEngine.dylib", + "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/VanguardInstrumentationProfiler_x64.config", + "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/libCoverageInstrumentationMethod.so", + "build/netstandard2.0/InstrumentationEngine/ubuntu/x64/libInstrumentationEngine.so", + "build/netstandard2.0/InstrumentationEngine/x64/MicrosoftInstrumentationEngine_x64.dll", + "build/netstandard2.0/InstrumentationEngine/x86/MicrosoftInstrumentationEngine_x86.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.props", + "build/netstandard2.0/Microsoft.CodeCoverage.targets", + "build/netstandard2.0/Microsoft.DiaSymReader.dll", + "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll", + "build/netstandard2.0/Mono.Cecil.Pdb.dll", + "build/netstandard2.0/Mono.Cecil.Rocks.dll", + "build/netstandard2.0/Mono.Cecil.dll", + "build/netstandard2.0/ThirdPartyNotices.txt", + "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "microsoft.codecoverage.17.8.0.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "sha512": "1euU97SivROH7nVIh2c/V63e0nQ73Txr/YlysB7fJuTV8LcfeL9WO1gdiJWcRIDoq8/McxcTc7evY6JJ1pD95w==", + "type": "package", + "path": "microsoft.data.sqlite.core/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net6.0/Microsoft.Data.Sqlite.dll", + "lib/net6.0/Microsoft.Data.Sqlite.xml", + "lib/net8.0/Microsoft.Data.Sqlite.dll", + "lib/net8.0/Microsoft.Data.Sqlite.xml", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.8.0.3.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "sha512": "QUPQbeq4yCjgIL/6PzkhfwhljXmai3CNOsErWFJ/WJ1Z41V8+At0Bi4PT8/2pX25kPgf83g0CUKIZd0QbeKT4A==", + "type": "package", + "path": "microsoft.entityframeworkcore/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "sha512": "cW+SKdx34wZ25ZVKCpk/6+6z27wrZlQ1qXyx7UWpy34s9CyAojH0QiYlV/2owNOGSAH67rm+LxAjUOicsqlGzQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": { + "sha512": "3csRAzz5O5Gn+GQBMyLn26OICtEo2/U2iDDygQhKb3LnC78bAUvutkMqvb0Ek5A6uHrBcZQrKQJfkgfnRT5XZw==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "sha512": "8JnVZHWaNFkrrD/FC0O4jekiHIYey8y6TQ4Co3OzLz0wd5Dm1cwJfTp++1TvaVu0BBd4bVDtiktppa5epuoPrA==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "sha512": "mdHNwlJkV71pKJU1MzIbjHWyjLw03S2kCO6mnuZL6V7uDv5ZxncoT5OELUiv7wRAYxnBucrl7ZPT76hwhBKBFw==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/_._", + "microsoft.entityframeworkcore.sqlite.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.sqlite.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "sha512": "6DvYtnLdpViXgA5F2Z/cIJfWIv31Eby5j2YqUzr+sgJulKtCX+ypvmfooXlYnCwJDlcmIaMY27TMnlrCcUvZmA==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite.core/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.xml", + "microsoft.entityframeworkcore.sqlite.core.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.sqlite.core.nuspec" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "type": "package", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/Microsoft.Extensions.ApiDescription.Server.props", + "build/Microsoft.Extensions.ApiDescription.Server.targets", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", + "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "microsoft.extensions.apidescription.server.nuspec", + "tools/Newtonsoft.Json.dll", + "tools/dotnet-getdocument.deps.json", + "tools/dotnet-getdocument.dll", + "tools/dotnet-getdocument.runtimeconfig.json", + "tools/net461-x86/GetDocument.Insider.exe", + "tools/net461-x86/GetDocument.Insider.exe.config", + "tools/net461-x86/Microsoft.Win32.Primitives.dll", + "tools/net461-x86/System.AppContext.dll", + "tools/net461-x86/System.Buffers.dll", + "tools/net461-x86/System.Collections.Concurrent.dll", + "tools/net461-x86/System.Collections.NonGeneric.dll", + "tools/net461-x86/System.Collections.Specialized.dll", + "tools/net461-x86/System.Collections.dll", + "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll", + "tools/net461-x86/System.ComponentModel.Primitives.dll", + "tools/net461-x86/System.ComponentModel.TypeConverter.dll", + "tools/net461-x86/System.ComponentModel.dll", + "tools/net461-x86/System.Console.dll", + "tools/net461-x86/System.Data.Common.dll", + "tools/net461-x86/System.Diagnostics.Contracts.dll", + "tools/net461-x86/System.Diagnostics.Debug.dll", + "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll", + "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll", + "tools/net461-x86/System.Diagnostics.Process.dll", + "tools/net461-x86/System.Diagnostics.StackTrace.dll", + "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net461-x86/System.Diagnostics.Tools.dll", + "tools/net461-x86/System.Diagnostics.TraceSource.dll", + "tools/net461-x86/System.Diagnostics.Tracing.dll", + "tools/net461-x86/System.Drawing.Primitives.dll", + "tools/net461-x86/System.Dynamic.Runtime.dll", + "tools/net461-x86/System.Globalization.Calendars.dll", + "tools/net461-x86/System.Globalization.Extensions.dll", + "tools/net461-x86/System.Globalization.dll", + "tools/net461-x86/System.IO.Compression.ZipFile.dll", + "tools/net461-x86/System.IO.Compression.dll", + "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll", + "tools/net461-x86/System.IO.FileSystem.Primitives.dll", + "tools/net461-x86/System.IO.FileSystem.Watcher.dll", + "tools/net461-x86/System.IO.FileSystem.dll", + "tools/net461-x86/System.IO.IsolatedStorage.dll", + "tools/net461-x86/System.IO.MemoryMappedFiles.dll", + "tools/net461-x86/System.IO.Pipes.dll", + "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll", + "tools/net461-x86/System.IO.dll", + "tools/net461-x86/System.Linq.Expressions.dll", + "tools/net461-x86/System.Linq.Parallel.dll", + "tools/net461-x86/System.Linq.Queryable.dll", + "tools/net461-x86/System.Linq.dll", + "tools/net461-x86/System.Memory.dll", + "tools/net461-x86/System.Net.Http.dll", + "tools/net461-x86/System.Net.NameResolution.dll", + "tools/net461-x86/System.Net.NetworkInformation.dll", + "tools/net461-x86/System.Net.Ping.dll", + "tools/net461-x86/System.Net.Primitives.dll", + "tools/net461-x86/System.Net.Requests.dll", + "tools/net461-x86/System.Net.Security.dll", + "tools/net461-x86/System.Net.Sockets.dll", + "tools/net461-x86/System.Net.WebHeaderCollection.dll", + "tools/net461-x86/System.Net.WebSockets.Client.dll", + "tools/net461-x86/System.Net.WebSockets.dll", + "tools/net461-x86/System.Numerics.Vectors.dll", + "tools/net461-x86/System.ObjectModel.dll", + "tools/net461-x86/System.Reflection.Extensions.dll", + "tools/net461-x86/System.Reflection.Primitives.dll", + "tools/net461-x86/System.Reflection.dll", + "tools/net461-x86/System.Resources.Reader.dll", + "tools/net461-x86/System.Resources.ResourceManager.dll", + "tools/net461-x86/System.Resources.Writer.dll", + "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll", + "tools/net461-x86/System.Runtime.Extensions.dll", + "tools/net461-x86/System.Runtime.Handles.dll", + "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net461-x86/System.Runtime.InteropServices.dll", + "tools/net461-x86/System.Runtime.Numerics.dll", + "tools/net461-x86/System.Runtime.Serialization.Formatters.dll", + "tools/net461-x86/System.Runtime.Serialization.Json.dll", + "tools/net461-x86/System.Runtime.Serialization.Primitives.dll", + "tools/net461-x86/System.Runtime.Serialization.Xml.dll", + "tools/net461-x86/System.Runtime.dll", + "tools/net461-x86/System.Security.Claims.dll", + "tools/net461-x86/System.Security.Cryptography.Algorithms.dll", + "tools/net461-x86/System.Security.Cryptography.Csp.dll", + "tools/net461-x86/System.Security.Cryptography.Encoding.dll", + "tools/net461-x86/System.Security.Cryptography.Primitives.dll", + "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll", + "tools/net461-x86/System.Security.Principal.dll", + "tools/net461-x86/System.Security.SecureString.dll", + "tools/net461-x86/System.Text.Encoding.Extensions.dll", + "tools/net461-x86/System.Text.Encoding.dll", + "tools/net461-x86/System.Text.RegularExpressions.dll", + "tools/net461-x86/System.Threading.Overlapped.dll", + "tools/net461-x86/System.Threading.Tasks.Parallel.dll", + "tools/net461-x86/System.Threading.Tasks.dll", + "tools/net461-x86/System.Threading.Thread.dll", + "tools/net461-x86/System.Threading.ThreadPool.dll", + "tools/net461-x86/System.Threading.Timer.dll", + "tools/net461-x86/System.Threading.dll", + "tools/net461-x86/System.ValueTuple.dll", + "tools/net461-x86/System.Xml.ReaderWriter.dll", + "tools/net461-x86/System.Xml.XDocument.dll", + "tools/net461-x86/System.Xml.XPath.XDocument.dll", + "tools/net461-x86/System.Xml.XPath.dll", + "tools/net461-x86/System.Xml.XmlDocument.dll", + "tools/net461-x86/System.Xml.XmlSerializer.dll", + "tools/net461-x86/netstandard.dll", + "tools/net461/GetDocument.Insider.exe", + "tools/net461/GetDocument.Insider.exe.config", + "tools/net461/Microsoft.Win32.Primitives.dll", + "tools/net461/System.AppContext.dll", + "tools/net461/System.Buffers.dll", + "tools/net461/System.Collections.Concurrent.dll", + "tools/net461/System.Collections.NonGeneric.dll", + "tools/net461/System.Collections.Specialized.dll", + "tools/net461/System.Collections.dll", + "tools/net461/System.ComponentModel.EventBasedAsync.dll", + "tools/net461/System.ComponentModel.Primitives.dll", + "tools/net461/System.ComponentModel.TypeConverter.dll", + "tools/net461/System.ComponentModel.dll", + "tools/net461/System.Console.dll", + "tools/net461/System.Data.Common.dll", + "tools/net461/System.Diagnostics.Contracts.dll", + "tools/net461/System.Diagnostics.Debug.dll", + "tools/net461/System.Diagnostics.DiagnosticSource.dll", + "tools/net461/System.Diagnostics.FileVersionInfo.dll", + "tools/net461/System.Diagnostics.Process.dll", + "tools/net461/System.Diagnostics.StackTrace.dll", + "tools/net461/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net461/System.Diagnostics.Tools.dll", + "tools/net461/System.Diagnostics.TraceSource.dll", + "tools/net461/System.Diagnostics.Tracing.dll", + "tools/net461/System.Drawing.Primitives.dll", + "tools/net461/System.Dynamic.Runtime.dll", + "tools/net461/System.Globalization.Calendars.dll", + "tools/net461/System.Globalization.Extensions.dll", + "tools/net461/System.Globalization.dll", + "tools/net461/System.IO.Compression.ZipFile.dll", + "tools/net461/System.IO.Compression.dll", + "tools/net461/System.IO.FileSystem.DriveInfo.dll", + "tools/net461/System.IO.FileSystem.Primitives.dll", + "tools/net461/System.IO.FileSystem.Watcher.dll", + "tools/net461/System.IO.FileSystem.dll", + "tools/net461/System.IO.IsolatedStorage.dll", + "tools/net461/System.IO.MemoryMappedFiles.dll", + "tools/net461/System.IO.Pipes.dll", + "tools/net461/System.IO.UnmanagedMemoryStream.dll", + "tools/net461/System.IO.dll", + "tools/net461/System.Linq.Expressions.dll", + "tools/net461/System.Linq.Parallel.dll", + "tools/net461/System.Linq.Queryable.dll", + "tools/net461/System.Linq.dll", + "tools/net461/System.Memory.dll", + "tools/net461/System.Net.Http.dll", + "tools/net461/System.Net.NameResolution.dll", + "tools/net461/System.Net.NetworkInformation.dll", + "tools/net461/System.Net.Ping.dll", + "tools/net461/System.Net.Primitives.dll", + "tools/net461/System.Net.Requests.dll", + "tools/net461/System.Net.Security.dll", + "tools/net461/System.Net.Sockets.dll", + "tools/net461/System.Net.WebHeaderCollection.dll", + "tools/net461/System.Net.WebSockets.Client.dll", + "tools/net461/System.Net.WebSockets.dll", + "tools/net461/System.Numerics.Vectors.dll", + "tools/net461/System.ObjectModel.dll", + "tools/net461/System.Reflection.Extensions.dll", + "tools/net461/System.Reflection.Primitives.dll", + "tools/net461/System.Reflection.dll", + "tools/net461/System.Resources.Reader.dll", + "tools/net461/System.Resources.ResourceManager.dll", + "tools/net461/System.Resources.Writer.dll", + "tools/net461/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net461/System.Runtime.CompilerServices.VisualC.dll", + "tools/net461/System.Runtime.Extensions.dll", + "tools/net461/System.Runtime.Handles.dll", + "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net461/System.Runtime.InteropServices.dll", + "tools/net461/System.Runtime.Numerics.dll", + "tools/net461/System.Runtime.Serialization.Formatters.dll", + "tools/net461/System.Runtime.Serialization.Json.dll", + "tools/net461/System.Runtime.Serialization.Primitives.dll", + "tools/net461/System.Runtime.Serialization.Xml.dll", + "tools/net461/System.Runtime.dll", + "tools/net461/System.Security.Claims.dll", + "tools/net461/System.Security.Cryptography.Algorithms.dll", + "tools/net461/System.Security.Cryptography.Csp.dll", + "tools/net461/System.Security.Cryptography.Encoding.dll", + "tools/net461/System.Security.Cryptography.Primitives.dll", + "tools/net461/System.Security.Cryptography.X509Certificates.dll", + "tools/net461/System.Security.Principal.dll", + "tools/net461/System.Security.SecureString.dll", + "tools/net461/System.Text.Encoding.Extensions.dll", + "tools/net461/System.Text.Encoding.dll", + "tools/net461/System.Text.RegularExpressions.dll", + "tools/net461/System.Threading.Overlapped.dll", + "tools/net461/System.Threading.Tasks.Parallel.dll", + "tools/net461/System.Threading.Tasks.dll", + "tools/net461/System.Threading.Thread.dll", + "tools/net461/System.Threading.ThreadPool.dll", + "tools/net461/System.Threading.Timer.dll", + "tools/net461/System.Threading.dll", + "tools/net461/System.ValueTuple.dll", + "tools/net461/System.Xml.ReaderWriter.dll", + "tools/net461/System.Xml.XDocument.dll", + "tools/net461/System.Xml.XPath.XDocument.dll", + "tools/net461/System.Xml.XPath.dll", + "tools/net461/System.Xml.XmlDocument.dll", + "tools/net461/System.Xml.XmlSerializer.dll", + "tools/net461/netstandard.dll", + "tools/netcoreapp2.1/GetDocument.Insider.deps.json", + "tools/netcoreapp2.1/GetDocument.Insider.dll", + "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json", + "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "sha512": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "type": "package", + "path": "microsoft.extensions.caching.memory/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration/8.0.0": { + "sha512": "0J/9YNXTMWSZP2p2+nvl8p71zpSwokZXZuJW+VjdErkegAnFdO1XlqtA62SJtgVYHdKu3uPxJHcMR/r35HwFBA==", + "type": "package", + "path": "microsoft.extensions.configuration/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.targets", + "lib/net462/Microsoft.Extensions.Configuration.dll", + "lib/net462/Microsoft.Extensions.Configuration.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.xml", + "microsoft.extensions.configuration.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/8.0.0": { + "sha512": "mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", + "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", + "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.CommandLine/8.0.0": { + "sha512": "NZuZMz3Q8Z780nKX3ifV1fE7lS+6pynDHK71OfU4OZ1ItgvDOhyOC7E6z+JMZrAj63zRpwbdldYFk499t3+1dQ==", + "type": "package", + "path": "microsoft.extensions.configuration.commandline/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.CommandLine.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.CommandLine.targets", + "lib/net462/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net462/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.CommandLine.xml", + "microsoft.extensions.configuration.commandline.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.commandline.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/8.0.0": { + "sha512": "plvZ0ZIpq+97gdPNNvhwvrEZ92kNml9hd1pe3idMA7svR0PztdzVLkoWLcRFgySYXUJc3kSM3Xw3mNFMo/bxRA==", + "type": "package", + "path": "microsoft.extensions.configuration.environmentvariables/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.EnvironmentVariables.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.targets", + "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net462/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.EnvironmentVariables.xml", + "microsoft.extensions.configuration.environmentvariables.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.environmentvariables.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.FileExtensions/8.0.0": { + "sha512": "McP+Lz/EKwvtCv48z0YImw+L1gi1gy5rHhNaNIY2CrjloV+XY8gydT8DjMR6zWeL13AFK+DioVpppwAuO1Gi1w==", + "type": "package", + "path": "microsoft.extensions.configuration.fileextensions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.FileExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.FileExtensions.targets", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net462/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.FileExtensions.xml", + "microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.fileextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Json/8.0.0": { + "sha512": "C2wqUoh9OmRL1akaCcKSTmRU8z0kckfImG7zLNI8uyi47Lp+zd5LWAD17waPQEqCz3ioWOCrFUo+JJuoeZLOBw==", + "type": "package", + "path": "microsoft.extensions.configuration.json/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Json.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Json.targets", + "lib/net462/Microsoft.Extensions.Configuration.Json.dll", + "lib/net462/Microsoft.Extensions.Configuration.Json.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Json.xml", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.dll", + "lib/netstandard2.1/Microsoft.Extensions.Configuration.Json.xml", + "microsoft.extensions.configuration.json.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.UserSecrets/8.0.0": { + "sha512": "ihDHu2dJYQird9pl2CbdwuNDfvCZdOS0S7SPlNfhPt0B81UTT+yyZKz2pimFZGUp3AfuBRnqUCxB2SjsZKHVUw==", + "type": "package", + "path": "microsoft.extensions.configuration.usersecrets/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.props", + "buildTransitive/net462/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.props", + "buildTransitive/net6.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.props", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.targets", + "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net462/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.UserSecrets.xml", + "microsoft.extensions.configuration.usersecrets.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.usersecrets.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "sha512": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics/8.0.0": { + "sha512": "3PZp/YSkIXrF7QK7PfC1bkyRYwqOHpWFad8Qx+4wkuumAeXo1NHaxpS9LboNA9OvNSAu+QOVlXbMyoY+pHSqcw==", + "type": "package", + "path": "microsoft.extensions.diagnostics/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.targets", + "lib/net462/Microsoft.Extensions.Diagnostics.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.xml", + "lib/net6.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net6.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net7.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net7.0/Microsoft.Extensions.Diagnostics.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.xml", + "microsoft.extensions.diagnostics.8.0.0.nupkg.sha512", + "microsoft.extensions.diagnostics.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": { + "sha512": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "type": "package", + "path": "microsoft.extensions.diagnostics.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.diagnostics.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Physical/8.0.0": { + "sha512": "UboiXxpPUpwulHvIAVE36Knq0VSHaAmfrFkegLyBZeaADuKezJ/AIXYAW8F5GBlGk/VaibN2k/Zn1ca8YAfVdA==", + "type": "package", + "path": "microsoft.extensions.fileproviders.physical/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Physical.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Physical.targets", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net7.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/net8.0/Microsoft.Extensions.FileProviders.Physical.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Physical.xml", + "microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.physical.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileSystemGlobbing/8.0.0": { + "sha512": "OK+670i7esqlQrPjdIKRbsyMCe9g5kSLpRRQGSr4Q58AOYEe/hCnfLZprh7viNisSUUQZmMrbbuDaIrP+V1ebQ==", + "type": "package", + "path": "microsoft.extensions.filesystemglobbing/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileSystemGlobbing.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileSystemGlobbing.targets", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net462/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net6.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net7.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/net8.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.xml", + "microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512", + "microsoft.extensions.filesystemglobbing.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting/8.0.0": { + "sha512": "ItYHpdqVp5/oFLT5QqbopnkKlyFG9EW/9nhM6/yfObeKt6Su0wkBio6AizgRHGNwhJuAtlE5VIjow5JOTrip6w==", + "type": "package", + "path": "microsoft.extensions.hosting/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Hosting.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.targets", + "lib/net462/Microsoft.Extensions.Hosting.dll", + "lib/net462/Microsoft.Extensions.Hosting.xml", + "lib/net6.0/Microsoft.Extensions.Hosting.dll", + "lib/net6.0/Microsoft.Extensions.Hosting.xml", + "lib/net7.0/Microsoft.Extensions.Hosting.dll", + "lib/net7.0/Microsoft.Extensions.Hosting.xml", + "lib/net8.0/Microsoft.Extensions.Hosting.dll", + "lib/net8.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.xml", + "microsoft.extensions.hosting.8.0.0.nupkg.sha512", + "microsoft.extensions.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/8.0.0": { + "sha512": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/8.0.0": { + "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "type": "package", + "path": "microsoft.extensions.logging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Configuration/8.0.0": { + "sha512": "ixXXV0G/12g6MXK65TLngYN9V5hQQRuV+fZi882WIoVJT7h5JvoYoxTEwCgdqwLjSneqh1O+66gM8sMr9z/rsQ==", + "type": "package", + "path": "microsoft.extensions.logging.configuration/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Configuration.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Configuration.targets", + "lib/net462/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net462/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Configuration.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Configuration.xml", + "microsoft.extensions.logging.configuration.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.configuration.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Console/8.0.0": { + "sha512": "e+48o7DztoYog+PY430lPxrM4mm3PbA6qucvQtUDDwVo4MO+ejMw7YGc/o2rnxbxj4isPxdfKFzTxvXMwAz83A==", + "type": "package", + "path": "microsoft.extensions.logging.console/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Console.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Console.targets", + "lib/net462/Microsoft.Extensions.Logging.Console.dll", + "lib/net462/Microsoft.Extensions.Logging.Console.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Console.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Console.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Console.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Console.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Console.xml", + "microsoft.extensions.logging.console.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.console.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Debug/8.0.0": { + "sha512": "dt0x21qBdudHLW/bjMJpkixv858RRr8eSomgVbU8qljOyfrfDGi1JQvpF9w8S7ziRPtRKisuWaOwFxJM82GxeA==", + "type": "package", + "path": "microsoft.extensions.logging.debug/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.Debug.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Debug.targets", + "lib/net462/Microsoft.Extensions.Logging.Debug.dll", + "lib/net462/Microsoft.Extensions.Logging.Debug.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Debug.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Debug.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Debug.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Debug.xml", + "microsoft.extensions.logging.debug.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.debug.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventLog/8.0.0": { + "sha512": "3X9D3sl7EmOu7vQp5MJrmIJBl5XSdOhZPYXUeFfYa6Nnm9+tok8x3t3IVPLhm7UJtPOU61ohFchw8rNm9tIYOQ==", + "type": "package", + "path": "microsoft.extensions.logging.eventlog/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventLog.targets", + "lib/net462/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net462/Microsoft.Extensions.Logging.EventLog.xml", + "lib/net6.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net6.0/Microsoft.Extensions.Logging.EventLog.xml", + "lib/net7.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net7.0/Microsoft.Extensions.Logging.EventLog.xml", + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/net8.0/Microsoft.Extensions.Logging.EventLog.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventLog.xml", + "microsoft.extensions.logging.eventlog.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.EventSource/8.0.0": { + "sha512": "oKcPMrw+luz2DUAKhwFXrmFikZWnyc8l2RKoQwqU3KIZZjcfoJE0zRHAnqATfhRZhtcbjl/QkiY2Xjxp0xu+6w==", + "type": "package", + "path": "microsoft.extensions.logging.eventsource/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.EventSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.EventSource.targets", + "lib/net462/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net462/Microsoft.Extensions.Logging.EventSource.xml", + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net6.0/Microsoft.Extensions.Logging.EventSource.xml", + "lib/net7.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net7.0/Microsoft.Extensions.Logging.EventSource.xml", + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/net8.0/Microsoft.Extensions.Logging.EventSource.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.EventSource.xml", + "microsoft.extensions.logging.eventsource.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.eventsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/8.0.0": { + "sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "type": "package", + "path": "microsoft.extensions.options/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.8.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/8.0.0": { + "sha512": "0f4DMRqEd50zQh+UyJc+/HiBsZ3vhAQALgdkcQEalSH1L2isdC7Yj54M3cyo5e+BeO5fcBQ7Dxly8XiBBcvRgw==", + "type": "package", + "path": "microsoft.extensions.options.configurationextensions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.ConfigurationExtensions.targets", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net462/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net6.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net7.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/net8.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.ConfigurationExtensions.xml", + "microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512", + "microsoft.extensions.options.configurationextensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "type": "package", + "path": "microsoft.extensions.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.NET.Test.Sdk/17.8.0": { + "sha512": "BmTYGbD/YuDHmApIENdoyN1jCk0Rj1fJB0+B/fVekyTdVidr91IlzhqzytiUgaEAzL1ZJcYCme0MeBMYvJVzvw==", + "type": "package", + "path": "microsoft.net.test.sdk/17.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_MIT.txt", + "build/net462/Microsoft.NET.Test.Sdk.props", + "build/net462/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets", + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", + "lib/net462/_._", + "lib/netcoreapp3.1/_._", + "microsoft.net.test.sdk.17.8.0.nupkg.sha512", + "microsoft.net.test.sdk.nuspec" + ] + }, + "Microsoft.NETCore.Platforms/1.1.0": { + "sha512": "kz0PEW2lhqygehI/d6XsPCQzD7ff7gUJaVGPVETX611eadGsA3A877GdSlU0LRVMCTH/+P3o2iDTak+S08V2+A==", + "type": "package", + "path": "microsoft.netcore.platforms/1.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ThirdPartyNotices.txt", + "dotnet_library_license.txt", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json" + ] + }, + "Microsoft.OpenApi/1.2.3": { + "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "type": "package", + "path": "microsoft.openapi/1.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/Microsoft.OpenApi.dll", + "lib/net46/Microsoft.OpenApi.pdb", + "lib/net46/Microsoft.OpenApi.xml", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.1.2.3.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Microsoft.TestPlatform.ObjectModel/17.8.0": { + "sha512": "AYy6vlpGMfz5kOFq99L93RGbqftW/8eQTqjT9iGXW6s9MRP3UdtY8idJ8rJcjeSja8A18IhIro5YnH3uv1nz4g==", + "type": "package", + "path": "microsoft.testplatform.objectmodel/17.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_MIT.txt", + "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "microsoft.testplatform.objectmodel.17.8.0.nupkg.sha512", + "microsoft.testplatform.objectmodel.nuspec" + ] + }, + "Microsoft.TestPlatform.TestHost/17.8.0": { + "sha512": "9ivcl/7SGRmOT0YYrHQGohWiT5YCpkmy/UEzldfVisLm6QxbLaK3FAJqZXI34rnRLmqqDCeMQxKINwmKwAPiDw==", + "type": "package", + "path": "microsoft.testplatform.testhost/17.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE_MIT.txt", + "ThirdPartyNotices.txt", + "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props", + "build/netcoreapp3.1/x64/testhost.dll", + "build/netcoreapp3.1/x64/testhost.exe", + "build/netcoreapp3.1/x86/testhost.x86.dll", + "build/netcoreapp3.1/x86/testhost.x86.exe", + "lib/net462/_._", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/testhost.deps.json", + "lib/netcoreapp3.1/testhost.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/x64/msdia140.dll", + "lib/netcoreapp3.1/x86/msdia140.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "microsoft.testplatform.testhost.17.8.0.nupkg.sha512", + "microsoft.testplatform.testhost.nuspec" + ] + }, + "NETStandard.Library/2.0.0": { + "sha512": "7jnbRU+L08FXKMxqUflxEXtVymWvNOrS8yHgu9s6EM8Anr6T/wIX4nZ08j/u3Asz+tCufp3YVwFSEvFTPYmBPA==", + "type": "package", + "path": "netstandard.library/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "build/NETStandard.Library.targets", + "build/netstandard2.0/NETStandard.Library.targets", + "build/netstandard2.0/ref/Microsoft.Win32.Primitives.dll", + "build/netstandard2.0/ref/System.AppContext.dll", + "build/netstandard2.0/ref/System.Collections.Concurrent.dll", + "build/netstandard2.0/ref/System.Collections.NonGeneric.dll", + "build/netstandard2.0/ref/System.Collections.Specialized.dll", + "build/netstandard2.0/ref/System.Collections.dll", + "build/netstandard2.0/ref/System.ComponentModel.Composition.dll", + "build/netstandard2.0/ref/System.ComponentModel.EventBasedAsync.dll", + "build/netstandard2.0/ref/System.ComponentModel.Primitives.dll", + "build/netstandard2.0/ref/System.ComponentModel.TypeConverter.dll", + "build/netstandard2.0/ref/System.ComponentModel.dll", + "build/netstandard2.0/ref/System.Console.dll", + "build/netstandard2.0/ref/System.Core.dll", + "build/netstandard2.0/ref/System.Data.Common.dll", + "build/netstandard2.0/ref/System.Data.dll", + "build/netstandard2.0/ref/System.Diagnostics.Contracts.dll", + "build/netstandard2.0/ref/System.Diagnostics.Debug.dll", + "build/netstandard2.0/ref/System.Diagnostics.FileVersionInfo.dll", + "build/netstandard2.0/ref/System.Diagnostics.Process.dll", + "build/netstandard2.0/ref/System.Diagnostics.StackTrace.dll", + "build/netstandard2.0/ref/System.Diagnostics.TextWriterTraceListener.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tools.dll", + "build/netstandard2.0/ref/System.Diagnostics.TraceSource.dll", + "build/netstandard2.0/ref/System.Diagnostics.Tracing.dll", + "build/netstandard2.0/ref/System.Drawing.Primitives.dll", + "build/netstandard2.0/ref/System.Drawing.dll", + "build/netstandard2.0/ref/System.Dynamic.Runtime.dll", + "build/netstandard2.0/ref/System.Globalization.Calendars.dll", + "build/netstandard2.0/ref/System.Globalization.Extensions.dll", + "build/netstandard2.0/ref/System.Globalization.dll", + "build/netstandard2.0/ref/System.IO.Compression.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.Compression.ZipFile.dll", + "build/netstandard2.0/ref/System.IO.Compression.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.DriveInfo.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Primitives.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.Watcher.dll", + "build/netstandard2.0/ref/System.IO.FileSystem.dll", + "build/netstandard2.0/ref/System.IO.IsolatedStorage.dll", + "build/netstandard2.0/ref/System.IO.MemoryMappedFiles.dll", + "build/netstandard2.0/ref/System.IO.Pipes.dll", + "build/netstandard2.0/ref/System.IO.UnmanagedMemoryStream.dll", + "build/netstandard2.0/ref/System.IO.dll", + "build/netstandard2.0/ref/System.Linq.Expressions.dll", + "build/netstandard2.0/ref/System.Linq.Parallel.dll", + "build/netstandard2.0/ref/System.Linq.Queryable.dll", + "build/netstandard2.0/ref/System.Linq.dll", + "build/netstandard2.0/ref/System.Net.Http.dll", + "build/netstandard2.0/ref/System.Net.NameResolution.dll", + "build/netstandard2.0/ref/System.Net.NetworkInformation.dll", + "build/netstandard2.0/ref/System.Net.Ping.dll", + "build/netstandard2.0/ref/System.Net.Primitives.dll", + "build/netstandard2.0/ref/System.Net.Requests.dll", + "build/netstandard2.0/ref/System.Net.Security.dll", + "build/netstandard2.0/ref/System.Net.Sockets.dll", + "build/netstandard2.0/ref/System.Net.WebHeaderCollection.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.Client.dll", + "build/netstandard2.0/ref/System.Net.WebSockets.dll", + "build/netstandard2.0/ref/System.Net.dll", + "build/netstandard2.0/ref/System.Numerics.dll", + "build/netstandard2.0/ref/System.ObjectModel.dll", + "build/netstandard2.0/ref/System.Reflection.Extensions.dll", + "build/netstandard2.0/ref/System.Reflection.Primitives.dll", + "build/netstandard2.0/ref/System.Reflection.dll", + "build/netstandard2.0/ref/System.Resources.Reader.dll", + "build/netstandard2.0/ref/System.Resources.ResourceManager.dll", + "build/netstandard2.0/ref/System.Resources.Writer.dll", + "build/netstandard2.0/ref/System.Runtime.CompilerServices.VisualC.dll", + "build/netstandard2.0/ref/System.Runtime.Extensions.dll", + "build/netstandard2.0/ref/System.Runtime.Handles.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.RuntimeInformation.dll", + "build/netstandard2.0/ref/System.Runtime.InteropServices.dll", + "build/netstandard2.0/ref/System.Runtime.Numerics.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Formatters.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Json.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Primitives.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.Xml.dll", + "build/netstandard2.0/ref/System.Runtime.Serialization.dll", + "build/netstandard2.0/ref/System.Runtime.dll", + "build/netstandard2.0/ref/System.Security.Claims.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Algorithms.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Csp.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Encoding.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.Primitives.dll", + "build/netstandard2.0/ref/System.Security.Cryptography.X509Certificates.dll", + "build/netstandard2.0/ref/System.Security.Principal.dll", + "build/netstandard2.0/ref/System.Security.SecureString.dll", + "build/netstandard2.0/ref/System.ServiceModel.Web.dll", + "build/netstandard2.0/ref/System.Text.Encoding.Extensions.dll", + "build/netstandard2.0/ref/System.Text.Encoding.dll", + "build/netstandard2.0/ref/System.Text.RegularExpressions.dll", + "build/netstandard2.0/ref/System.Threading.Overlapped.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.Parallel.dll", + "build/netstandard2.0/ref/System.Threading.Tasks.dll", + "build/netstandard2.0/ref/System.Threading.Thread.dll", + "build/netstandard2.0/ref/System.Threading.ThreadPool.dll", + "build/netstandard2.0/ref/System.Threading.Timer.dll", + "build/netstandard2.0/ref/System.Threading.dll", + "build/netstandard2.0/ref/System.Transactions.dll", + "build/netstandard2.0/ref/System.ValueTuple.dll", + "build/netstandard2.0/ref/System.Web.dll", + "build/netstandard2.0/ref/System.Windows.dll", + "build/netstandard2.0/ref/System.Xml.Linq.dll", + "build/netstandard2.0/ref/System.Xml.ReaderWriter.dll", + "build/netstandard2.0/ref/System.Xml.Serialization.dll", + "build/netstandard2.0/ref/System.Xml.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.XDocument.dll", + "build/netstandard2.0/ref/System.Xml.XPath.dll", + "build/netstandard2.0/ref/System.Xml.XmlDocument.dll", + "build/netstandard2.0/ref/System.Xml.XmlSerializer.dll", + "build/netstandard2.0/ref/System.Xml.dll", + "build/netstandard2.0/ref/System.dll", + "build/netstandard2.0/ref/mscorlib.dll", + "build/netstandard2.0/ref/netstandard.dll", + "build/netstandard2.0/ref/netstandard.xml", + "lib/netstandard1.0/_._", + "netstandard.library.2.0.0.nupkg.sha512", + "netstandard.library.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "NuGet.Frameworks/6.5.0": { + "sha512": "QWINE2x3MbTODsWT1Gh71GaGb5icBz4chS8VYvTgsBnsi8esgN6wtHhydd7fvToWECYGq7T4cgBBDiKD/363fg==", + "type": "package", + "path": "nuget.frameworks/6.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net472/NuGet.Frameworks.dll", + "lib/netstandard2.0/NuGet.Frameworks.dll", + "nuget.frameworks.6.5.0.nupkg.sha512", + "nuget.frameworks.nuspec" + ] + }, + "NUnit/3.14.0": { + "sha512": "R7iPwD7kbOaP3o2zldWJbWeMQAvDKD0uld27QvA3PAALl1unl7x0v2J7eGiJOYjimV/BuGT4VJmr45RjS7z4LA==", + "type": "package", + "path": "nunit/3.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGES.md", + "LICENSE.txt", + "NOTICES.txt", + "README.md", + "build/NUnit.props", + "icon.png", + "lib/net35/nunit.framework.dll", + "lib/net35/nunit.framework.xml", + "lib/net40/nunit.framework.dll", + "lib/net40/nunit.framework.xml", + "lib/net45/nunit.framework.dll", + "lib/net45/nunit.framework.xml", + "lib/netstandard2.0/nunit.framework.dll", + "lib/netstandard2.0/nunit.framework.xml", + "nunit.3.14.0.nupkg.sha512", + "nunit.nuspec" + ] + }, + "NUnit.Analyzers/3.9.0": { + "sha512": "8bGAEljlBnzR+uU8oGQhTVKnbgBw1Mo71qjVkgzHdvtUkiB5XOIDyjAcS4KUo/j+F2Zv/xBUZRkCWXmejx4bfA==", + "type": "package", + "path": "nunit.analyzers/3.9.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "analyzers/dotnet/cs/nunit.analyzers.dll", + "docs/README.md", + "images/nunit_256.png", + "license.txt", + "nunit.analyzers.3.9.0.nupkg.sha512", + "nunit.analyzers.nuspec", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "NUnit3TestAdapter/4.5.0": { + "sha512": "s8JpqTe9bI2f49Pfr3dFRfoVSuFQyraTj68c3XXjIS/MRGvvkLnrg6RLqnTjdShX+AdFUCCU/4Xex58AdUfs6A==", + "type": "package", + "path": "nunit3testadapter/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/net462/NUnit3.TestAdapter.dll", + "build/net462/NUnit3.TestAdapter.pdb", + "build/net462/NUnit3TestAdapter.props", + "build/net462/nunit.engine.api.dll", + "build/net462/nunit.engine.core.dll", + "build/net462/nunit.engine.dll", + "build/net462/testcentric.engine.metadata.dll", + "build/netcoreapp3.1/NUnit3.TestAdapter.dll", + "build/netcoreapp3.1/NUnit3.TestAdapter.pdb", + "build/netcoreapp3.1/NUnit3TestAdapter.props", + "build/netcoreapp3.1/nunit.engine.api.dll", + "build/netcoreapp3.1/nunit.engine.core.dll", + "build/netcoreapp3.1/nunit.engine.dll", + "build/netcoreapp3.1/testcentric.engine.metadata.dll", + "docs/README.md", + "nunit3testadapter.4.5.0.nupkg.sha512", + "nunit3testadapter.nuspec", + "nunit_256.png" + ] + }, + "Serilog/3.1.1": { + "sha512": "P6G4/4Kt9bT635bhuwdXlJ2SCqqn2nhh4gqFqQueCOr9bK/e7W9ll/IoX1Ter948cV2Z/5+5v8pAfJYUISY03A==", + "type": "package", + "path": "serilog/3.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.dll", + "lib/net462/Serilog.xml", + "lib/net471/Serilog.dll", + "lib/net471/Serilog.xml", + "lib/net5.0/Serilog.dll", + "lib/net5.0/Serilog.xml", + "lib/net6.0/Serilog.dll", + "lib/net6.0/Serilog.xml", + "lib/net7.0/Serilog.dll", + "lib/net7.0/Serilog.xml", + "lib/netstandard2.0/Serilog.dll", + "lib/netstandard2.0/Serilog.xml", + "lib/netstandard2.1/Serilog.dll", + "lib/netstandard2.1/Serilog.xml", + "serilog.3.1.1.nupkg.sha512", + "serilog.nuspec" + ] + }, + "Serilog.AspNetCore/8.0.1": { + "sha512": "B/X+wAfS7yWLVOTD83B+Ip9yl4MkhioaXj90JSoWi1Ayi8XHepEnsBdrkojg08eodCnmOKmShFUN2GgEc6c0CQ==", + "type": "package", + "path": "serilog.aspnetcore/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.AspNetCore.dll", + "lib/net462/Serilog.AspNetCore.xml", + "lib/net6.0/Serilog.AspNetCore.dll", + "lib/net6.0/Serilog.AspNetCore.xml", + "lib/net7.0/Serilog.AspNetCore.dll", + "lib/net7.0/Serilog.AspNetCore.xml", + "lib/net8.0/Serilog.AspNetCore.dll", + "lib/net8.0/Serilog.AspNetCore.xml", + "lib/netstandard2.0/Serilog.AspNetCore.dll", + "lib/netstandard2.0/Serilog.AspNetCore.xml", + "serilog.aspnetcore.8.0.1.nupkg.sha512", + "serilog.aspnetcore.nuspec" + ] + }, + "Serilog.Extensions.Hosting/8.0.0": { + "sha512": "db0OcbWeSCvYQkHWu6n0v40N4kKaTAXNjlM3BKvcbwvNzYphQFcBR+36eQ/7hMMwOkJvAyLC2a9/jNdUL5NjtQ==", + "type": "package", + "path": "serilog.extensions.hosting/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.Extensions.Hosting.dll", + "lib/net462/Serilog.Extensions.Hosting.xml", + "lib/net6.0/Serilog.Extensions.Hosting.dll", + "lib/net6.0/Serilog.Extensions.Hosting.xml", + "lib/net7.0/Serilog.Extensions.Hosting.dll", + "lib/net7.0/Serilog.Extensions.Hosting.xml", + "lib/net8.0/Serilog.Extensions.Hosting.dll", + "lib/net8.0/Serilog.Extensions.Hosting.xml", + "lib/netstandard2.0/Serilog.Extensions.Hosting.dll", + "lib/netstandard2.0/Serilog.Extensions.Hosting.xml", + "serilog.extensions.hosting.8.0.0.nupkg.sha512", + "serilog.extensions.hosting.nuspec" + ] + }, + "Serilog.Extensions.Logging/8.0.0": { + "sha512": "YEAMWu1UnWgf1c1KP85l1SgXGfiVo0Rz6x08pCiPOIBt2Qe18tcZLvdBUuV5o1QHvrs8FAry9wTIhgBRtjIlEg==", + "type": "package", + "path": "serilog.extensions.logging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Serilog.Extensions.Logging.dll", + "lib/net462/Serilog.Extensions.Logging.xml", + "lib/net6.0/Serilog.Extensions.Logging.dll", + "lib/net6.0/Serilog.Extensions.Logging.xml", + "lib/net7.0/Serilog.Extensions.Logging.dll", + "lib/net7.0/Serilog.Extensions.Logging.xml", + "lib/net8.0/Serilog.Extensions.Logging.dll", + "lib/net8.0/Serilog.Extensions.Logging.xml", + "lib/netstandard2.0/Serilog.Extensions.Logging.dll", + "lib/netstandard2.0/Serilog.Extensions.Logging.xml", + "lib/netstandard2.1/Serilog.Extensions.Logging.dll", + "lib/netstandard2.1/Serilog.Extensions.Logging.xml", + "serilog-extension-nuget.png", + "serilog.extensions.logging.8.0.0.nupkg.sha512", + "serilog.extensions.logging.nuspec" + ] + }, + "Serilog.Formatting.Compact/2.0.0": { + "sha512": "ob6z3ikzFM3D1xalhFuBIK1IOWf+XrQq+H4KeH4VqBcPpNcmUgZlRQ2h3Q7wvthpdZBBoY86qZOI2LCXNaLlNA==", + "type": "package", + "path": "serilog.formatting.compact/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Serilog.Formatting.Compact.dll", + "lib/net462/Serilog.Formatting.Compact.xml", + "lib/net471/Serilog.Formatting.Compact.dll", + "lib/net471/Serilog.Formatting.Compact.xml", + "lib/net6.0/Serilog.Formatting.Compact.dll", + "lib/net6.0/Serilog.Formatting.Compact.xml", + "lib/net7.0/Serilog.Formatting.Compact.dll", + "lib/net7.0/Serilog.Formatting.Compact.xml", + "lib/netstandard2.0/Serilog.Formatting.Compact.dll", + "lib/netstandard2.0/Serilog.Formatting.Compact.xml", + "lib/netstandard2.1/Serilog.Formatting.Compact.dll", + "lib/netstandard2.1/Serilog.Formatting.Compact.xml", + "serilog-extension-nuget.png", + "serilog.formatting.compact.2.0.0.nupkg.sha512", + "serilog.formatting.compact.nuspec" + ] + }, + "Serilog.Settings.Configuration/8.0.0": { + "sha512": "nR0iL5HwKj5v6ULo3/zpP8NMcq9E2pxYA6XKTSWCbugVs4YqPyvaqaKOY+OMpPivKp7zMEpax2UKHnDodbRB0Q==", + "type": "package", + "path": "serilog.settings.configuration/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.Settings.Configuration.dll", + "lib/net462/Serilog.Settings.Configuration.xml", + "lib/net6.0/Serilog.Settings.Configuration.dll", + "lib/net6.0/Serilog.Settings.Configuration.xml", + "lib/net7.0/Serilog.Settings.Configuration.dll", + "lib/net7.0/Serilog.Settings.Configuration.xml", + "lib/net8.0/Serilog.Settings.Configuration.dll", + "lib/net8.0/Serilog.Settings.Configuration.xml", + "lib/netstandard2.0/Serilog.Settings.Configuration.dll", + "lib/netstandard2.0/Serilog.Settings.Configuration.xml", + "serilog.settings.configuration.8.0.0.nupkg.sha512", + "serilog.settings.configuration.nuspec" + ] + }, + "Serilog.Sinks.Console/5.0.0": { + "sha512": "IZ6bn79k+3SRXOBpwSOClUHikSkp2toGPCZ0teUkscv4dpDg9E2R2xVsNkLmwddE4OpNVO3N0xiYsAH556vN8Q==", + "type": "package", + "path": "serilog.sinks.console/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.Sinks.Console.dll", + "lib/net462/Serilog.Sinks.Console.xml", + "lib/net471/Serilog.Sinks.Console.dll", + "lib/net471/Serilog.Sinks.Console.xml", + "lib/net5.0/Serilog.Sinks.Console.dll", + "lib/net5.0/Serilog.Sinks.Console.xml", + "lib/net6.0/Serilog.Sinks.Console.dll", + "lib/net6.0/Serilog.Sinks.Console.xml", + "lib/net7.0/Serilog.Sinks.Console.dll", + "lib/net7.0/Serilog.Sinks.Console.xml", + "lib/netstandard2.0/Serilog.Sinks.Console.dll", + "lib/netstandard2.0/Serilog.Sinks.Console.xml", + "lib/netstandard2.1/Serilog.Sinks.Console.dll", + "lib/netstandard2.1/Serilog.Sinks.Console.xml", + "serilog.sinks.console.5.0.0.nupkg.sha512", + "serilog.sinks.console.nuspec" + ] + }, + "Serilog.Sinks.Debug/2.0.0": { + "sha512": "Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==", + "type": "package", + "path": "serilog.sinks.debug/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.Sinks.Debug.dll", + "lib/net45/Serilog.Sinks.Debug.xml", + "lib/net46/Serilog.Sinks.Debug.dll", + "lib/net46/Serilog.Sinks.Debug.xml", + "lib/netstandard1.0/Serilog.Sinks.Debug.dll", + "lib/netstandard1.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.0/Serilog.Sinks.Debug.dll", + "lib/netstandard2.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.1/Serilog.Sinks.Debug.dll", + "lib/netstandard2.1/Serilog.Sinks.Debug.xml", + "serilog.sinks.debug.2.0.0.nupkg.sha512", + "serilog.sinks.debug.nuspec" + ] + }, + "Serilog.Sinks.File/5.0.0": { + "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "type": "package", + "path": "serilog.sinks.file/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "images/icon.png", + "lib/net45/Serilog.Sinks.File.dll", + "lib/net45/Serilog.Sinks.File.pdb", + "lib/net45/Serilog.Sinks.File.xml", + "lib/net5.0/Serilog.Sinks.File.dll", + "lib/net5.0/Serilog.Sinks.File.pdb", + "lib/net5.0/Serilog.Sinks.File.xml", + "lib/netstandard1.3/Serilog.Sinks.File.dll", + "lib/netstandard1.3/Serilog.Sinks.File.pdb", + "lib/netstandard1.3/Serilog.Sinks.File.xml", + "lib/netstandard2.0/Serilog.Sinks.File.dll", + "lib/netstandard2.0/Serilog.Sinks.File.pdb", + "lib/netstandard2.0/Serilog.Sinks.File.xml", + "lib/netstandard2.1/Serilog.Sinks.File.dll", + "lib/netstandard2.1/Serilog.Sinks.File.pdb", + "lib/netstandard2.1/Serilog.Sinks.File.xml", + "serilog.sinks.file.5.0.0.nupkg.sha512", + "serilog.sinks.file.nuspec" + ] + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "sha512": "BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==", + "type": "package", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid90/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.xml", + "lib/net6.0-ios14.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-ios14.2/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-tvos10.0/SQLitePCLRaw.batteries_v2.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "lib/xamarinios10/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.1.6": { + "sha512": "wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==", + "type": "package", + "path": "sqlitepclraw.core/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.1.6.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "sha512": "2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "buildTransitive/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net7.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-arm/native/libe_sqlite3.so", + "runtimes/linux-musl-arm64/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-ppc64le/native/libe_sqlite3.so", + "runtimes/linux-s390x/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib", + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib", + "runtimes/osx-arm64/native/libe_sqlite3.dylib", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "sha512": "PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==", + "type": "package", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.provider.e_sqlite3.nuspec" + ] + }, + "Swashbuckle.AspNetCore/6.4.0": { + "sha512": "eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "type": "package", + "path": "swashbuckle.aspnetcore/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Swashbuckle.AspNetCore.props", + "swashbuckle.aspnetcore.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "sha512": "nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", + "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "sha512": "lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "sha512": "1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/8.0.0": { + "sha512": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net7.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net7.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/8.0.0": { + "sha512": "fdYxcRjQqTTacKId/2IECojlDSFvp7LP5N78+0z/xH7v/Tuw5ZAxu23Y6PTCRinqyu2ePx+Gn1098NC6jM6d+A==", + "type": "package", + "path": "system.diagnostics.eventlog/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "lib/net462/System.Diagnostics.EventLog.dll", + "lib/net462/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/net7.0/System.Diagnostics.EventLog.dll", + "lib/net7.0/System.Diagnostics.EventLog.xml", + "lib/net8.0/System.Diagnostics.EventLog.dll", + "lib/net8.0/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.8.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IO.Pipelines/8.0.0": { + "sha512": "FHNOatmUq0sqJOkTx+UF/9YK1f180cnW5FVqnQMvYUN0elp6wFzbtPSiqbo1/ru8ICp43JM1i7kKkk6GsNGHlA==", + "type": "package", + "path": "system.io.pipelines/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Pipelines.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", + "lib/net462/System.IO.Pipelines.dll", + "lib/net462/System.IO.Pipelines.xml", + "lib/net6.0/System.IO.Pipelines.dll", + "lib/net6.0/System.IO.Pipelines.xml", + "lib/net7.0/System.IO.Pipelines.dll", + "lib/net7.0/System.IO.Pipelines.xml", + "lib/net8.0/System.IO.Pipelines.dll", + "lib/net8.0/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "system.io.pipelines.8.0.0.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Memory/4.5.3": { + "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "type": "package", + "path": "system.memory/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.3.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Metadata/1.6.0": { + "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "type": "package", + "path": "system.reflection.metadata/1.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.6.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encodings.Web/8.0.0": { + "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", + "type": "package", + "path": "system.text.encodings.web/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/net7.0/System.Text.Encodings.Web.dll", + "lib/net7.0/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.8.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/8.0.0": { + "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", + "type": "package", + "path": "system.text.json/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net6.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/net7.0/System.Text.Json.dll", + "lib/net7.0/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.8.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Contracts/1.0.0": { + "type": "project", + "path": "../Contracts/Contracts.csproj", + "msbuildProject": "../Contracts/Contracts.csproj" + }, + "Entity/1.0.0": { + "type": "project", + "path": "../Entity/Entity.csproj", + "msbuildProject": "../Entity/Entity.csproj" + }, + "Services/1.0.0": { + "type": "project", + "path": "../Services/Services.csproj", + "msbuildProject": "../Services/Services.csproj" + }, + "WebAPIExam/1.0.0": { + "type": "project", + "path": "../WebAPIExam/WebAPIExam.csproj", + "msbuildProject": "../WebAPIExam/WebAPIExam.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Entity >= 1.0.0", + "Microsoft.AspNetCore.Mvc.Testing >= 8.0.3", + "Microsoft.NET.Test.Sdk >= 17.8.0", + "NUnit >= 3.14.0", + "NUnit.Analyzers >= 3.9.0", + "NUnit3TestAdapter >= 4.5.0", + "WebAPIExam >= 1.0.0", + "coverlet.collector >= 6.0.0" + ] + }, + "packageFolders": { + "C:\\Users\\hanss\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\AcceTickTest\\AcceTickTest.csproj", + "projectName": "AcceTickTest", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\AcceTickTest\\AcceTickTest.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\AcceTickTest\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj": { + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj" + }, + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam\\WebAPIExam.csproj": { + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam\\WebAPIExam.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Testing": { + "target": "Package", + "version": "[8.0.3, )" + }, + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[17.8.0, )" + }, + "NUnit": { + "target": "Package", + "version": "[3.14.0, )" + }, + "NUnit.Analyzers": { + "target": "Package", + "version": "[3.9.0, )" + }, + "NUnit3TestAdapter": { + "target": "Package", + "version": "[4.5.0, )" + }, + "coverlet.collector": { + "target": "Package", + "version": "[6.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/WebAPIExam/AcceTickTest/obj/project.nuget.cache b/WebAPIExam/AcceTickTest/obj/project.nuget.cache new file mode 100644 index 0000000..8599993 --- /dev/null +++ b/WebAPIExam/AcceTickTest/obj/project.nuget.cache @@ -0,0 +1,93 @@ +{ + "version": 2, + "dgSpecHash": "KsGjXpTH1Vw00hgB5Y8ErXEJjTh4P1ap3H5f3U3vZXXLSaed8qrXAVwkMd4jdPushhGaYNv/xkQ9Xt8ce8H0Uw==", + "success": true, + "projectFilePath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\AcceTickTest\\AcceTickTest.csproj", + "expectedPackageFiles": [ + "C:\\Users\\hanss\\.nuget\\packages\\coverlet.collector\\6.0.0\\coverlet.collector.6.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\dateonlytimeonly.aspnet\\2.1.1\\dateonlytimeonly.aspnet.2.1.1.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\dateonlytimeonly.aspnet.swashbuckle\\2.1.1\\dateonlytimeonly.aspnet.swashbuckle.2.1.1.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\fluentvalidation\\11.9.0\\fluentvalidation.11.9.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\11.9.0\\fluentvalidation.dependencyinjectionextensions.11.9.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\mediatr\\11.1.0\\mediatr.11.1.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\mediatr.contracts\\2.0.1\\mediatr.contracts.2.0.1.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\mediatr.extensions.microsoft.dependencyinjection\\11.1.0\\mediatr.extensions.microsoft.dependencyinjection.11.1.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.aspnetcore.mvc.testing\\8.0.3\\microsoft.aspnetcore.mvc.testing.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.aspnetcore.testhost\\8.0.3\\microsoft.aspnetcore.testhost.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.codecoverage\\17.8.0\\microsoft.codecoverage.17.8.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.data.sqlite.core\\8.0.3\\microsoft.data.sqlite.core.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.3\\microsoft.entityframeworkcore.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.3\\microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.3\\microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.3\\microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite\\8.0.3\\microsoft.entityframeworkcore.sqlite.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite.core\\8.0.3\\microsoft.entityframeworkcore.sqlite.core.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.0\\microsoft.extensions.caching.memory.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.configuration\\8.0.0\\microsoft.extensions.configuration.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.configuration.binder\\8.0.0\\microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.configuration.commandline\\8.0.0\\microsoft.extensions.configuration.commandline.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.configuration.environmentvariables\\8.0.0\\microsoft.extensions.configuration.environmentvariables.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\8.0.0\\microsoft.extensions.configuration.fileextensions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.configuration.json\\8.0.0\\microsoft.extensions.configuration.json.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.configuration.usersecrets\\8.0.0\\microsoft.extensions.configuration.usersecrets.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.0\\microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.0\\microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.0\\microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.diagnostics\\8.0.0\\microsoft.extensions.diagnostics.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.diagnostics.abstractions\\8.0.0\\microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\8.0.0\\microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\8.0.0\\microsoft.extensions.fileproviders.physical.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\8.0.0\\microsoft.extensions.filesystemglobbing.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.hosting\\8.0.0\\microsoft.extensions.hosting.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\8.0.0\\microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.logging\\8.0.0\\microsoft.extensions.logging.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.0\\microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.logging.configuration\\8.0.0\\microsoft.extensions.logging.configuration.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.logging.console\\8.0.0\\microsoft.extensions.logging.console.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.logging.debug\\8.0.0\\microsoft.extensions.logging.debug.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.logging.eventlog\\8.0.0\\microsoft.extensions.logging.eventlog.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.logging.eventsource\\8.0.0\\microsoft.extensions.logging.eventsource.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.options\\8.0.0\\microsoft.extensions.options.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\8.0.0\\microsoft.extensions.options.configurationextensions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.net.test.sdk\\17.8.0\\microsoft.net.test.sdk.17.8.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.netcore.platforms\\1.1.0\\microsoft.netcore.platforms.1.1.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.testplatform.objectmodel\\17.8.0\\microsoft.testplatform.objectmodel.17.8.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.testplatform.testhost\\17.8.0\\microsoft.testplatform.testhost.17.8.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\netstandard.library\\2.0.0\\netstandard.library.2.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\newtonsoft.json\\13.0.1\\newtonsoft.json.13.0.1.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\nuget.frameworks\\6.5.0\\nuget.frameworks.6.5.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\nunit\\3.14.0\\nunit.3.14.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\nunit.analyzers\\3.9.0\\nunit.analyzers.3.9.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\nunit3testadapter\\4.5.0\\nunit3testadapter.4.5.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog\\3.1.1\\serilog.3.1.1.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog.aspnetcore\\8.0.1\\serilog.aspnetcore.8.0.1.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog.extensions.hosting\\8.0.0\\serilog.extensions.hosting.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog.extensions.logging\\8.0.0\\serilog.extensions.logging.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog.formatting.compact\\2.0.0\\serilog.formatting.compact.2.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog.settings.configuration\\8.0.0\\serilog.settings.configuration.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog.sinks.console\\5.0.0\\serilog.sinks.console.5.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog.sinks.debug\\2.0.0\\serilog.sinks.debug.2.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog.sinks.file\\5.0.0\\serilog.sinks.file.5.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.6\\sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\sqlitepclraw.core\\2.1.6\\sqlitepclraw.core.2.1.6.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.6\\sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.6\\sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\swashbuckle.aspnetcore\\6.4.0\\swashbuckle.aspnetcore.6.4.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.4.0\\swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.4.0\\swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.4.0\\swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.0\\system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\system.diagnostics.eventlog\\8.0.0\\system.diagnostics.eventlog.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\system.io.pipelines\\8.0.0\\system.io.pipelines.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\system.reflection.metadata\\1.6.0\\system.reflection.metadata.1.6.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\system.text.encodings.web\\8.0.0\\system.text.encodings.web.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\system.text.json\\8.0.0\\system.text.json.8.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/WebAPIExam/Contracts/Contracts.csproj b/WebAPIExam/Contracts/Contracts.csproj new file mode 100644 index 0000000..246ea08 --- /dev/null +++ b/WebAPIExam/Contracts/Contracts.csproj @@ -0,0 +1,13 @@ + + + + net8.0 + enable + enable + + + + + + + diff --git a/WebAPIExam/Contracts/RequestModels/BookedTicket/BookTicketRequest.cs b/WebAPIExam/Contracts/RequestModels/BookedTicket/BookTicketRequest.cs new file mode 100644 index 0000000..db2e59a --- /dev/null +++ b/WebAPIExam/Contracts/RequestModels/BookedTicket/BookTicketRequest.cs @@ -0,0 +1,15 @@ +using Contracts.ResponseModels.BookedTicket; +using MediatR; + +namespace Contracts.RequestModels.BookedTicket +{ + public class BookTicketRequest : IRequest + { + public List BookingList { get; set; } = []; + } + public class BookTicketModel + { + public Guid TicketId { get; set; } + public int Quantity { get; set; } + } +} diff --git a/WebAPIExam/Contracts/RequestModels/BookedTicket/BookedTicketDetailRequest.cs b/WebAPIExam/Contracts/RequestModels/BookedTicket/BookedTicketDetailRequest.cs new file mode 100644 index 0000000..808232e --- /dev/null +++ b/WebAPIExam/Contracts/RequestModels/BookedTicket/BookedTicketDetailRequest.cs @@ -0,0 +1,15 @@ + +using Contracts.ResponseModels.BookedTicket; +using MediatR; + +namespace Contracts.RequestModels.BookedTicket +{ + public class BookedTicketDetailRequest : BookedTicketDetailRequestModel, IRequest + { + + } + public class BookedTicketDetailRequestModel + { + public Guid BookedId { get; set; } + } +} diff --git a/WebAPIExam/Contracts/RequestModels/BookedTicket/DeleteBookedTicketsRequest.cs b/WebAPIExam/Contracts/RequestModels/BookedTicket/DeleteBookedTicketsRequest.cs new file mode 100644 index 0000000..08ea351 --- /dev/null +++ b/WebAPIExam/Contracts/RequestModels/BookedTicket/DeleteBookedTicketsRequest.cs @@ -0,0 +1,16 @@ +using Contracts.ResponseModels.BookedTicket; +using MediatR; + +namespace Contracts.RequestModels.BookedTicket +{ + public class DeleteBookedTicketsRequest : DeleteBookedTicketsModel, IRequest + { + + } + public class DeleteBookedTicketsModel + { + public Guid BookedId { get; set; } + public string TicketCode { get; set; } = string.Empty; + public int Quantity { get; set; } + } +} diff --git a/WebAPIExam/Contracts/RequestModels/BookedTicket/EditBookedTicketRequest.cs b/WebAPIExam/Contracts/RequestModels/BookedTicket/EditBookedTicketRequest.cs new file mode 100644 index 0000000..a781854 --- /dev/null +++ b/WebAPIExam/Contracts/RequestModels/BookedTicket/EditBookedTicketRequest.cs @@ -0,0 +1,17 @@ + +using Contracts.ResponseModels.BookedTicket; +using MediatR; +using System.Diagnostics.Contracts; + +namespace Contracts.RequestModels.BookedTicket +{ + public class EditBookedTicketRequest : EditBookedTicketModel, IRequest + { + public Guid BookedId { get; set; } + } + public class EditBookedTicketModel + { + public int Quantity { get; set; } + + } +} diff --git a/WebAPIExam/Contracts/RequestModels/Category/CreateCategoryRequest.cs b/WebAPIExam/Contracts/RequestModels/Category/CreateCategoryRequest.cs new file mode 100644 index 0000000..530d83a --- /dev/null +++ b/WebAPIExam/Contracts/RequestModels/Category/CreateCategoryRequest.cs @@ -0,0 +1,10 @@ +using Contracts.ResponseModels.Category; +using MediatR; + +namespace Contracts.RequestModels.Category +{ + public class CreateCategoryRequest : IRequest + { + public string CategoryName { get; set; } = string.Empty; + } +} diff --git a/WebAPIExam/Contracts/RequestModels/Category/GetCategoryRequest.cs b/WebAPIExam/Contracts/RequestModels/Category/GetCategoryRequest.cs new file mode 100644 index 0000000..ea854c9 --- /dev/null +++ b/WebAPIExam/Contracts/RequestModels/Category/GetCategoryRequest.cs @@ -0,0 +1,11 @@ + + +using MediatR; + +namespace Contracts.RequestModels.Category +{ + public class GetCategoryRequest : IRequest + { + + } +} diff --git a/WebAPIExam/Contracts/RequestModels/Ticket/CreateTicketRequest.cs b/WebAPIExam/Contracts/RequestModels/Ticket/CreateTicketRequest.cs new file mode 100644 index 0000000..6731d82 --- /dev/null +++ b/WebAPIExam/Contracts/RequestModels/Ticket/CreateTicketRequest.cs @@ -0,0 +1,16 @@ +using Contracts.ResponseModels.Ticket; +using MediatR; + +namespace Contracts.RequestModels.Ticket +{ + public class CreateTicketRequest : IRequest + { + public Guid CategoryId { get; set; } + public string TicketCode { get; set; } = string.Empty; + public string TicketName { get; set; } = string.Empty; + public decimal Price { get; set; } + public DateOnly EventDate { get; set; } + public int Quota { get; set; } + + } +} diff --git a/WebAPIExam/Contracts/RequestModels/Ticket/GetAllTicketRequest.cs b/WebAPIExam/Contracts/RequestModels/Ticket/GetAllTicketRequest.cs new file mode 100644 index 0000000..17e55b0 --- /dev/null +++ b/WebAPIExam/Contracts/RequestModels/Ticket/GetAllTicketRequest.cs @@ -0,0 +1,12 @@ + + +using Contracts.ResponseModels.Ticket; +using MediatR; + +namespace Contracts.RequestModels.Ticket +{ + public class GetAllTicketRequest : IRequest + { + + } +} diff --git a/WebAPIExam/Contracts/RequestModels/Ticket/GetAvailableTicketRequest.cs b/WebAPIExam/Contracts/RequestModels/Ticket/GetAvailableTicketRequest.cs new file mode 100644 index 0000000..f963852 --- /dev/null +++ b/WebAPIExam/Contracts/RequestModels/Ticket/GetAvailableTicketRequest.cs @@ -0,0 +1,19 @@ +using Contracts.ResponseModels.Ticket; +using MediatR; + +namespace Contracts.RequestModels.Ticket +{ + public class GetAvailableTicketRequest : IRequest + { + public string CategoryName { get; set; } = string.Empty; + public string TicketCode { get; set; } = string.Empty; + public string TicketName { get; set; } = string.Empty; + public decimal Price { get; set; } + public DateOnly EventDate { get; set; } + public DateOnly MinimumDate { get; set; } + public DateOnly MaximumDate { get; set; } + //OrderBy accepts property name as argument. Not case sensitive but spaces matter. + public string OrderBy { get; set; } = string.Empty; + public bool SortAscending { get; set; } = true; + } +} diff --git a/WebAPIExam/Contracts/ResponseModels/BookedTicket/BookTicketResponse.cs b/WebAPIExam/Contracts/ResponseModels/BookedTicket/BookTicketResponse.cs new file mode 100644 index 0000000..165d9a0 --- /dev/null +++ b/WebAPIExam/Contracts/ResponseModels/BookedTicket/BookTicketResponse.cs @@ -0,0 +1,22 @@ + +namespace Contracts.ResponseModels.BookedTicket +{ + public class BookTicketResponse + { + public decimal TotalPrice { get; set; } + public List TicketPerCategory { get; set; } = []; + + } + public class TicketPerCategoryModel + { + public string CategoryName { get; set; } = string.Empty; + public decimal SubTotal { get; set; } + public List Tickets { get; set; } = []; + } + public class TicketModel + { + public string TicketCode { get; set; } = string.Empty; + public string TicketName { get; set; } = string.Empty; + public decimal Price { get; set; } + } +} diff --git a/WebAPIExam/Contracts/ResponseModels/BookedTicket/BookedTicketDetailResponse.cs b/WebAPIExam/Contracts/ResponseModels/BookedTicket/BookedTicketDetailResponse.cs new file mode 100644 index 0000000..61449c3 --- /dev/null +++ b/WebAPIExam/Contracts/ResponseModels/BookedTicket/BookedTicketDetailResponse.cs @@ -0,0 +1,17 @@ +namespace Contracts.ResponseModels.BookedTicket +{ + public class BookedTicketDetailResponse + { + public int QuantityPerCategory { get; set; } + public string CategoryName { get; set; } = string.Empty; + public List Tickets { get; set; } = []; + + } + public class TicketDetailModel + { + public string TicketCode { get; set; } = string.Empty; + public string TicketName { get; set; } = string.Empty; + public DateOnly EventDate { get; set; } + + } +} diff --git a/WebAPIExam/Contracts/ResponseModels/BookedTicket/DeleteBookedTicketsResponse.cs b/WebAPIExam/Contracts/ResponseModels/BookedTicket/DeleteBookedTicketsResponse.cs new file mode 100644 index 0000000..aa4f382 --- /dev/null +++ b/WebAPIExam/Contracts/ResponseModels/BookedTicket/DeleteBookedTicketsResponse.cs @@ -0,0 +1,10 @@ + +namespace Contracts.ResponseModels.BookedTicket +{ + public class DeleteBookedTicketsResponse + { + public string TicketCode { get; set; } = string.Empty; + public int Quantity { get; set; } + public string CategoryName { get; set; } = string.Empty; + } +} diff --git a/WebAPIExam/Contracts/ResponseModels/BookedTicket/EditBookedTicketResponse.cs b/WebAPIExam/Contracts/ResponseModels/BookedTicket/EditBookedTicketResponse.cs new file mode 100644 index 0000000..33c4e3f --- /dev/null +++ b/WebAPIExam/Contracts/ResponseModels/BookedTicket/EditBookedTicketResponse.cs @@ -0,0 +1,10 @@ +namespace Contracts.ResponseModels.BookedTicket +{ + public class EditBookedTicketResponse + { + public string TicketName { get; set; } = string.Empty; + public string TicketCode { get; set; } = string.Empty; + public int Quantity { get; set; } + public string CategoryName { get; set; } = string.Empty; + } +} diff --git a/WebAPIExam/Contracts/ResponseModels/Category/CreateCategoryResponse.cs b/WebAPIExam/Contracts/ResponseModels/Category/CreateCategoryResponse.cs new file mode 100644 index 0000000..1e26dd4 --- /dev/null +++ b/WebAPIExam/Contracts/ResponseModels/Category/CreateCategoryResponse.cs @@ -0,0 +1,8 @@ + +namespace Contracts.ResponseModels.Category +{ + public class CreateCategoryResponse + { + public Guid CategoryId { get; set; } + } +} diff --git a/WebAPIExam/Contracts/ResponseModels/Category/GetCategoryResponse.cs b/WebAPIExam/Contracts/ResponseModels/Category/GetCategoryResponse.cs new file mode 100644 index 0000000..08c8492 --- /dev/null +++ b/WebAPIExam/Contracts/ResponseModels/Category/GetCategoryResponse.cs @@ -0,0 +1,12 @@ +namespace Contracts.RequestModels.Category +{ + public class GetCategoryResponse + { + public List categoryList { get; set; } = []; + } + public class GetCategoryModel + { + public Guid CategoryId { get; set; } + public string CategoryName { get; set; } = string.Empty; + } +} diff --git a/WebAPIExam/Contracts/ResponseModels/Ticket/CreateTicketResponse.cs b/WebAPIExam/Contracts/ResponseModels/Ticket/CreateTicketResponse.cs new file mode 100644 index 0000000..3bc91c7 --- /dev/null +++ b/WebAPIExam/Contracts/ResponseModels/Ticket/CreateTicketResponse.cs @@ -0,0 +1,9 @@ + +namespace Contracts.ResponseModels.Ticket +{ + public class CreateTicketResponse + { + public Guid TicketId { get; set; } + public string TicketName { get; set;} = string.Empty; + } +} diff --git a/WebAPIExam/Contracts/ResponseModels/Ticket/GetAllTicketResponse.cs b/WebAPIExam/Contracts/ResponseModels/Ticket/GetAllTicketResponse.cs new file mode 100644 index 0000000..c74e384 --- /dev/null +++ b/WebAPIExam/Contracts/ResponseModels/Ticket/GetAllTicketResponse.cs @@ -0,0 +1,17 @@ +namespace Contracts.ResponseModels.Ticket +{ + public class GetAllTicketResponse + { + public List TicketList { get; set; } = []; + } + public class GetAllTicketModel + { + public Guid TicketId { get; set; } + public Guid CategoryId { get; set; } + public string TicketCode { get; set; } = string.Empty; + public string TicketName { get; set; } = string.Empty; + public decimal Price { get; set; } + public DateOnly EventDate { get; set; } + public int Quota { get; set; } + } +} diff --git a/WebAPIExam/Contracts/ResponseModels/Ticket/GetAvailableTicketResponse.cs b/WebAPIExam/Contracts/ResponseModels/Ticket/GetAvailableTicketResponse.cs new file mode 100644 index 0000000..1a10ebb --- /dev/null +++ b/WebAPIExam/Contracts/ResponseModels/Ticket/GetAvailableTicketResponse.cs @@ -0,0 +1,17 @@ + +namespace Contracts.ResponseModels.Ticket +{ + public class GetAvailableTicketResponse + { + public List AvailableTickets { get; set; } = []; + } + public class GetAvailableTicketModel + { + public DateOnly EventDate { get; set; } + public int Quota { get; set; } + public string TicketCode { get; set; } = string.Empty; + public string TicketName { get; set; } = string.Empty; + public string CategoryName { get; set; } = string.Empty; + public decimal Price { get; set; } + } +} diff --git a/WebAPIExam/Contracts/bin/Debug/net8.0/Contracts.deps.json b/WebAPIExam/Contracts/bin/Debug/net8.0/Contracts.deps.json new file mode 100644 index 0000000..e1c6184 --- /dev/null +++ b/WebAPIExam/Contracts/bin/Debug/net8.0/Contracts.deps.json @@ -0,0 +1,41 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "Contracts/1.0.0": { + "dependencies": { + "MediatR.Contracts": "2.0.1" + }, + "runtime": { + "Contracts.dll": {} + } + }, + "MediatR.Contracts/2.0.1": { + "runtime": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "assemblyVersion": "2.0.1.0", + "fileVersion": "2.0.1.0" + } + } + } + } + }, + "libraries": { + "Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "MediatR.Contracts/2.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", + "path": "mediatr.contracts/2.0.1", + "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/WebAPIExam/Contracts/bin/Debug/net8.0/Contracts.dll b/WebAPIExam/Contracts/bin/Debug/net8.0/Contracts.dll new file mode 100644 index 0000000..f4e3772 Binary files /dev/null and b/WebAPIExam/Contracts/bin/Debug/net8.0/Contracts.dll differ diff --git a/WebAPIExam/Contracts/bin/Debug/net8.0/Contracts.pdb b/WebAPIExam/Contracts/bin/Debug/net8.0/Contracts.pdb new file mode 100644 index 0000000..858506a Binary files /dev/null and b/WebAPIExam/Contracts/bin/Debug/net8.0/Contracts.pdb differ diff --git a/WebAPIExam/Contracts/obj/Contracts.csproj.nuget.dgspec.json b/WebAPIExam/Contracts/obj/Contracts.csproj.nuget.dgspec.json new file mode 100644 index 0000000..ae690ad --- /dev/null +++ b/WebAPIExam/Contracts/obj/Contracts.csproj.nuget.dgspec.json @@ -0,0 +1,74 @@ +{ + "format": 1, + "restore": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj": {} + }, + "projects": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj", + "projectName": "Contracts", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "MediatR.Contracts": { + "target": "Package", + "version": "[2.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/WebAPIExam/Contracts/obj/Contracts.csproj.nuget.g.props b/WebAPIExam/Contracts/obj/Contracts.csproj.nuget.g.props new file mode 100644 index 0000000..9ef4339 --- /dev/null +++ b/WebAPIExam/Contracts/obj/Contracts.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\hanss\.nuget\packages\ + PackageReference + 6.9.2 + + + + + \ No newline at end of file diff --git a/WebAPIExam/Contracts/obj/Contracts.csproj.nuget.g.targets b/WebAPIExam/Contracts/obj/Contracts.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/WebAPIExam/Contracts/obj/Contracts.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/WebAPIExam/Contracts/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/WebAPIExam/Contracts/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/WebAPIExam/Contracts/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.AssemblyInfo.cs b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.AssemblyInfo.cs new file mode 100644 index 0000000..fc100c9 --- /dev/null +++ b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Contracts")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+681184ef29f83f797ad525699016e2067c66a5fb")] +[assembly: System.Reflection.AssemblyProductAttribute("Contracts")] +[assembly: System.Reflection.AssemblyTitleAttribute("Contracts")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.AssemblyInfoInputs.cache b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.AssemblyInfoInputs.cache new file mode 100644 index 0000000..036e684 --- /dev/null +++ b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +8720ef3742761ccaffa34134c02e176ad060b02013b8f8b9e3e92951841b2309 diff --git a/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2f4ec1f --- /dev/null +++ b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Contracts +build_property.ProjectDir = C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Contracts\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.GlobalUsings.g.cs b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.assets.cache b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.assets.cache new file mode 100644 index 0000000..91a867c Binary files /dev/null and b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.assets.cache differ diff --git a/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.csproj.AssemblyReference.cache b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.csproj.AssemblyReference.cache new file mode 100644 index 0000000..cd67f0f Binary files /dev/null and b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.csproj.AssemblyReference.cache differ diff --git a/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.csproj.BuildWithSkipAnalyzers b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.csproj.CoreCompileInputs.cache b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..5a747c6 --- /dev/null +++ b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +90b3866e2b704c432d107e2f26179250b21536a27265ea6a8cd4cd0cd3330bf4 diff --git a/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.csproj.FileListAbsolute.txt b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..cb41efa --- /dev/null +++ b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.csproj.FileListAbsolute.txt @@ -0,0 +1,13 @@ +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Contracts\bin\Debug\net8.0\Contracts.deps.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Contracts\bin\Debug\net8.0\Contracts.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Contracts\bin\Debug\net8.0\Contracts.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Contracts\obj\Debug\net8.0\Contracts.csproj.AssemblyReference.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Contracts\obj\Debug\net8.0\Contracts.GeneratedMSBuildEditorConfig.editorconfig +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Contracts\obj\Debug\net8.0\Contracts.AssemblyInfoInputs.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Contracts\obj\Debug\net8.0\Contracts.AssemblyInfo.cs +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Contracts\obj\Debug\net8.0\Contracts.csproj.CoreCompileInputs.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Contracts\obj\Debug\net8.0\Contracts.sourcelink.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Contracts\obj\Debug\net8.0\Contracts.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Contracts\obj\Debug\net8.0\refint\Contracts.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Contracts\obj\Debug\net8.0\Contracts.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Contracts\obj\Debug\net8.0\ref\Contracts.dll diff --git a/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.dll b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.dll new file mode 100644 index 0000000..f4e3772 Binary files /dev/null and b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.dll differ diff --git a/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.pdb b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.pdb new file mode 100644 index 0000000..858506a Binary files /dev/null and b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.pdb differ diff --git a/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.sourcelink.json b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.sourcelink.json new file mode 100644 index 0000000..64b8044 --- /dev/null +++ b/WebAPIExam/Contracts/obj/Debug/net8.0/Contracts.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\*":"https://raw.githubusercontent.com/accelist/ExamNETWebAPI/681184ef29f83f797ad525699016e2067c66a5fb/*"}} \ No newline at end of file diff --git a/WebAPIExam/Contracts/obj/Debug/net8.0/ref/Contracts.dll b/WebAPIExam/Contracts/obj/Debug/net8.0/ref/Contracts.dll new file mode 100644 index 0000000..db6c21a Binary files /dev/null and b/WebAPIExam/Contracts/obj/Debug/net8.0/ref/Contracts.dll differ diff --git a/WebAPIExam/Contracts/obj/Debug/net8.0/refint/Contracts.dll b/WebAPIExam/Contracts/obj/Debug/net8.0/refint/Contracts.dll new file mode 100644 index 0000000..db6c21a Binary files /dev/null and b/WebAPIExam/Contracts/obj/Debug/net8.0/refint/Contracts.dll differ diff --git a/WebAPIExam/Contracts/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/WebAPIExam/Contracts/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/WebAPIExam/Contracts/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.AssemblyInfo.cs b/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.AssemblyInfo.cs new file mode 100644 index 0000000..197a0cd --- /dev/null +++ b/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Contracts")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+681184ef29f83f797ad525699016e2067c66a5fb")] +[assembly: System.Reflection.AssemblyProductAttribute("Contracts")] +[assembly: System.Reflection.AssemblyTitleAttribute("Contracts")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.AssemblyInfoInputs.cache b/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.AssemblyInfoInputs.cache new file mode 100644 index 0000000..520057f --- /dev/null +++ b/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +79793a21148d003eefc92750cffb3f98074dbe299cc7af4565c439f47a261fe6 diff --git a/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig b/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2f4ec1f --- /dev/null +++ b/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Contracts +build_property.ProjectDir = C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Contracts\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.GlobalUsings.g.cs b/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.assets.cache b/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.assets.cache new file mode 100644 index 0000000..b886639 Binary files /dev/null and b/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.assets.cache differ diff --git a/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.csproj.AssemblyReference.cache b/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.csproj.AssemblyReference.cache new file mode 100644 index 0000000..cd67f0f Binary files /dev/null and b/WebAPIExam/Contracts/obj/Release/net8.0/Contracts.csproj.AssemblyReference.cache differ diff --git a/WebAPIExam/Contracts/obj/project.assets.json b/WebAPIExam/Contracts/obj/project.assets.json new file mode 100644 index 0000000..a465ec0 --- /dev/null +++ b/WebAPIExam/Contracts/obj/project.assets.json @@ -0,0 +1,110 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "MediatR.Contracts/2.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "related": ".xml" + } + } + } + } + }, + "libraries": { + "MediatR.Contracts/2.0.1": { + "sha512": "FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", + "type": "package", + "path": "mediatr.contracts/2.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "gradient_128x128.png", + "lib/netstandard2.0/MediatR.Contracts.dll", + "lib/netstandard2.0/MediatR.Contracts.xml", + "mediatr.contracts.2.0.1.nupkg.sha512", + "mediatr.contracts.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "MediatR.Contracts >= 2.0.1" + ] + }, + "packageFolders": { + "C:\\Users\\hanss\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj", + "projectName": "Contracts", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "MediatR.Contracts": { + "target": "Package", + "version": "[2.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/WebAPIExam/Contracts/obj/project.nuget.cache b/WebAPIExam/Contracts/obj/project.nuget.cache new file mode 100644 index 0000000..da5d049 --- /dev/null +++ b/WebAPIExam/Contracts/obj/project.nuget.cache @@ -0,0 +1,10 @@ +{ + "version": 2, + "dgSpecHash": "rDaVSy+Kt1QtU9FA7uXEJpqTxVbRR7at3umzShYvJioR5bFrBSzTP9VDn5pxNs+K5R0rAk1mmg+afC2lerFeHw==", + "success": true, + "projectFilePath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj", + "expectedPackageFiles": [ + "C:\\Users\\hanss\\.nuget\\packages\\mediatr.contracts\\2.0.1\\mediatr.contracts.2.0.1.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/WebAPIExam/Entity/Database/exam.db b/WebAPIExam/Entity/Database/exam.db new file mode 100644 index 0000000..e3ed04b Binary files /dev/null and b/WebAPIExam/Entity/Database/exam.db differ diff --git a/WebAPIExam/Entity/Entity.csproj b/WebAPIExam/Entity/Entity.csproj new file mode 100644 index 0000000..f461364 --- /dev/null +++ b/WebAPIExam/Entity/Entity.csproj @@ -0,0 +1,17 @@ + + + + net8.0 + enable + enable + + + + + + + + + + + diff --git a/WebAPIExam/Entity/Entity/BookedTicket.cs b/WebAPIExam/Entity/Entity/BookedTicket.cs new file mode 100644 index 0000000..989111e --- /dev/null +++ b/WebAPIExam/Entity/Entity/BookedTicket.cs @@ -0,0 +1,16 @@ +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace Entity.Entity +{ + public class BookedTicket + { + [Key] + public Guid BookedId { get; set; } + [ForeignKey("TicketId")] + public Guid TicketId { get; set; } + public int Quantity { get; set; } + + public Ticket? Tickets { get; set; } + } +} diff --git a/WebAPIExam/Entity/Entity/Category.cs b/WebAPIExam/Entity/Entity/Category.cs new file mode 100644 index 0000000..3ba196d --- /dev/null +++ b/WebAPIExam/Entity/Entity/Category.cs @@ -0,0 +1,13 @@ +using System.ComponentModel.DataAnnotations; + +namespace Entity.Entity +{ + public class Category + { + [Key] + public Guid CategoryId { get; set; } + public string CategoryName { get; set; } = string.Empty; + + public List Tickets { get; set; } = []; + } +} diff --git a/WebAPIExam/Entity/Entity/DBContext.cs b/WebAPIExam/Entity/Entity/DBContext.cs new file mode 100644 index 0000000..9d3441b --- /dev/null +++ b/WebAPIExam/Entity/Entity/DBContext.cs @@ -0,0 +1,17 @@ + +using Microsoft.EntityFrameworkCore; + +namespace Entity.Entity +{ + public class DBContext : DbContext + { + public DBContext(DbContextOptions dbContextOptions) : base(dbContextOptions) + { + + } + public DbSet Tickets => Set(); + public DbSet Categories => Set(); + public DbSet BookedTickets => Set(); + + } +} diff --git a/WebAPIExam/Entity/Entity/Ticket.cs b/WebAPIExam/Entity/Entity/Ticket.cs new file mode 100644 index 0000000..c4f71f8 --- /dev/null +++ b/WebAPIExam/Entity/Entity/Ticket.cs @@ -0,0 +1,22 @@ + +using System.ComponentModel.DataAnnotations; +using System.ComponentModel.DataAnnotations.Schema; + +namespace Entity.Entity +{ + public class Ticket + { + [Key] + public Guid TicketId { get; set; } + [ForeignKey("CategoryId")] + public Guid CategoryId { get; set; } + public string TicketCode { get; set; } = string.Empty; + public string TicketName { get; set; } = string.Empty; + public decimal Price { get; set; } + public DateOnly EventDate { get; set; } + public int Quota { get; set; } + + public Category? Category { get; set; } + public List BookedTickets { get; set; } = []; + } +} diff --git a/WebAPIExam/Entity/bin/Debug/net8.0/Entity.deps.json b/WebAPIExam/Entity/bin/Debug/net8.0/Entity.deps.json new file mode 100644 index 0000000..987bdd7 --- /dev/null +++ b/WebAPIExam/Entity/bin/Debug/net8.0/Entity.deps.json @@ -0,0 +1,516 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "Entity/1.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite": "8.0.3" + }, + "runtime": { + "Entity.dll": {} + } + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.3", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.3", + "Microsoft.Extensions.Caching.Memory": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": {}, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.3", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.3", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.3", + "Microsoft.EntityFrameworkCore.Relational": "8.0.3", + "Microsoft.Extensions.DependencyModel": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.6", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.6" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.core/2.1.6": { + "dependencies": { + "System.Memory": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": { + "rid": "browser-wasm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "rid": "linux-musl-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "rid": "linux-musl-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "rid": "linux-ppc64le", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "rid": "linux-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "System.Memory/4.5.3": {}, + "System.Text.Encodings.Web/8.0.0": {}, + "System.Text.Json/8.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "8.0.0" + } + } + } + }, + "libraries": { + "Entity/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1euU97SivROH7nVIh2c/V63e0nQ73Txr/YlysB7fJuTV8LcfeL9WO1gdiJWcRIDoq8/McxcTc7evY6JJ1pD95w==", + "path": "microsoft.data.sqlite.core/8.0.3", + "hashPath": "microsoft.data.sqlite.core.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QUPQbeq4yCjgIL/6PzkhfwhljXmai3CNOsErWFJ/WJ1Z41V8+At0Bi4PT8/2pX25kPgf83g0CUKIZd0QbeKT4A==", + "path": "microsoft.entityframeworkcore/8.0.3", + "hashPath": "microsoft.entityframeworkcore.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cW+SKdx34wZ25ZVKCpk/6+6z27wrZlQ1qXyx7UWpy34s9CyAojH0QiYlV/2owNOGSAH67rm+LxAjUOicsqlGzQ==", + "path": "microsoft.entityframeworkcore.abstractions/8.0.3", + "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3csRAzz5O5Gn+GQBMyLn26OICtEo2/U2iDDygQhKb3LnC78bAUvutkMqvb0Ek5A6uHrBcZQrKQJfkgfnRT5XZw==", + "path": "microsoft.entityframeworkcore.analyzers/8.0.3", + "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8JnVZHWaNFkrrD/FC0O4jekiHIYey8y6TQ4Co3OzLz0wd5Dm1cwJfTp++1TvaVu0BBd4bVDtiktppa5epuoPrA==", + "path": "microsoft.entityframeworkcore.relational/8.0.3", + "hashPath": "microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mdHNwlJkV71pKJU1MzIbjHWyjLw03S2kCO6mnuZL6V7uDv5ZxncoT5OELUiv7wRAYxnBucrl7ZPT76hwhBKBFw==", + "path": "microsoft.entityframeworkcore.sqlite/8.0.3", + "hashPath": "microsoft.entityframeworkcore.sqlite.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6DvYtnLdpViXgA5F2Z/cIJfWIv31Eby5j2YqUzr+sgJulKtCX+ypvmfooXlYnCwJDlcmIaMY27TMnlrCcUvZmA==", + "path": "microsoft.entityframeworkcore.sqlite.core/8.0.3", + "hashPath": "microsoft.entityframeworkcore.sqlite.core.8.0.3.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "path": "microsoft.extensions.caching.memory/8.0.0", + "hashPath": "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", + "path": "microsoft.extensions.dependencymodel/8.0.0", + "hashPath": "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "path": "microsoft.extensions.logging/8.0.0", + "hashPath": "microsoft.extensions.logging.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "path": "microsoft.extensions.logging.abstractions/8.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "path": "microsoft.extensions.options/8.0.0", + "hashPath": "microsoft.extensions.options.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "path": "microsoft.extensions.primitives/8.0.0", + "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==", + "path": "sqlitepclraw.core/2.1.6", + "hashPath": "sqlitepclraw.core.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512" + }, + "System.Memory/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "path": "system.memory/4.5.3", + "hashPath": "system.memory.4.5.3.nupkg.sha512" + }, + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", + "path": "system.text.encodings.web/8.0.0", + "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512" + }, + "System.Text.Json/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", + "path": "system.text.json/8.0.0", + "hashPath": "system.text.json.8.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/WebAPIExam/Entity/bin/Debug/net8.0/Entity.dll b/WebAPIExam/Entity/bin/Debug/net8.0/Entity.dll new file mode 100644 index 0000000..33cec7f Binary files /dev/null and b/WebAPIExam/Entity/bin/Debug/net8.0/Entity.dll differ diff --git a/WebAPIExam/Entity/bin/Debug/net8.0/Entity.pdb b/WebAPIExam/Entity/bin/Debug/net8.0/Entity.pdb new file mode 100644 index 0000000..ec7d0c0 Binary files /dev/null and b/WebAPIExam/Entity/bin/Debug/net8.0/Entity.pdb differ diff --git a/WebAPIExam/Entity/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/WebAPIExam/Entity/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/WebAPIExam/Entity/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/WebAPIExam/Entity/obj/Debug/net8.0/Entity.AssemblyInfo.cs b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.AssemblyInfo.cs new file mode 100644 index 0000000..434ecc1 --- /dev/null +++ b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Entity")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+681184ef29f83f797ad525699016e2067c66a5fb")] +[assembly: System.Reflection.AssemblyProductAttribute("Entity")] +[assembly: System.Reflection.AssemblyTitleAttribute("Entity")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/WebAPIExam/Entity/obj/Debug/net8.0/Entity.AssemblyInfoInputs.cache b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.AssemblyInfoInputs.cache new file mode 100644 index 0000000..06c210b --- /dev/null +++ b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +853f16c16798ffda6e8c203b643d50928fb296fe6ec0d96bca02b5e6753aa7f2 diff --git a/WebAPIExam/Entity/obj/Debug/net8.0/Entity.GeneratedMSBuildEditorConfig.editorconfig b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..bdb2846 --- /dev/null +++ b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Entity +build_property.ProjectDir = C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Entity\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/WebAPIExam/Entity/obj/Debug/net8.0/Entity.GlobalUsings.g.cs b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WebAPIExam/Entity/obj/Debug/net8.0/Entity.assets.cache b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.assets.cache new file mode 100644 index 0000000..b3e46d9 Binary files /dev/null and b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.assets.cache differ diff --git a/WebAPIExam/Entity/obj/Debug/net8.0/Entity.csproj.AssemblyReference.cache b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.csproj.AssemblyReference.cache new file mode 100644 index 0000000..a494a5e Binary files /dev/null and b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.csproj.AssemblyReference.cache differ diff --git a/WebAPIExam/Entity/obj/Debug/net8.0/Entity.csproj.BuildWithSkipAnalyzers b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/WebAPIExam/Entity/obj/Debug/net8.0/Entity.csproj.CoreCompileInputs.cache b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..687abde --- /dev/null +++ b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +3b23e3250deb3864412c60f7236d2cd7302ea08cc5c96c74eb45cbb14686ec90 diff --git a/WebAPIExam/Entity/obj/Debug/net8.0/Entity.csproj.FileListAbsolute.txt b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..aae806a --- /dev/null +++ b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.csproj.FileListAbsolute.txt @@ -0,0 +1,13 @@ +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Entity\bin\Debug\net8.0\Entity.deps.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Entity\bin\Debug\net8.0\Entity.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Entity\bin\Debug\net8.0\Entity.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Entity\obj\Debug\net8.0\Entity.csproj.AssemblyReference.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Entity\obj\Debug\net8.0\Entity.GeneratedMSBuildEditorConfig.editorconfig +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Entity\obj\Debug\net8.0\Entity.AssemblyInfoInputs.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Entity\obj\Debug\net8.0\Entity.AssemblyInfo.cs +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Entity\obj\Debug\net8.0\Entity.csproj.CoreCompileInputs.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Entity\obj\Debug\net8.0\Entity.sourcelink.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Entity\obj\Debug\net8.0\Entity.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Entity\obj\Debug\net8.0\refint\Entity.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Entity\obj\Debug\net8.0\Entity.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Entity\obj\Debug\net8.0\ref\Entity.dll diff --git a/WebAPIExam/Entity/obj/Debug/net8.0/Entity.dll b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.dll new file mode 100644 index 0000000..33cec7f Binary files /dev/null and b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.dll differ diff --git a/WebAPIExam/Entity/obj/Debug/net8.0/Entity.pdb b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.pdb new file mode 100644 index 0000000..ec7d0c0 Binary files /dev/null and b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.pdb differ diff --git a/WebAPIExam/Entity/obj/Debug/net8.0/Entity.sourcelink.json b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.sourcelink.json new file mode 100644 index 0000000..64b8044 --- /dev/null +++ b/WebAPIExam/Entity/obj/Debug/net8.0/Entity.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\*":"https://raw.githubusercontent.com/accelist/ExamNETWebAPI/681184ef29f83f797ad525699016e2067c66a5fb/*"}} \ No newline at end of file diff --git a/WebAPIExam/Entity/obj/Debug/net8.0/ref/Entity.dll b/WebAPIExam/Entity/obj/Debug/net8.0/ref/Entity.dll new file mode 100644 index 0000000..a07c06b Binary files /dev/null and b/WebAPIExam/Entity/obj/Debug/net8.0/ref/Entity.dll differ diff --git a/WebAPIExam/Entity/obj/Debug/net8.0/refint/Entity.dll b/WebAPIExam/Entity/obj/Debug/net8.0/refint/Entity.dll new file mode 100644 index 0000000..a07c06b Binary files /dev/null and b/WebAPIExam/Entity/obj/Debug/net8.0/refint/Entity.dll differ diff --git a/WebAPIExam/Entity/obj/Entity.csproj.nuget.dgspec.json b/WebAPIExam/Entity/obj/Entity.csproj.nuget.dgspec.json new file mode 100644 index 0000000..33bb719 --- /dev/null +++ b/WebAPIExam/Entity/obj/Entity.csproj.nuget.dgspec.json @@ -0,0 +1,74 @@ +{ + "format": 1, + "restore": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj": {} + }, + "projects": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj", + "projectName": "Entity", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite": { + "target": "Package", + "version": "[8.0.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/WebAPIExam/Entity/obj/Entity.csproj.nuget.g.props b/WebAPIExam/Entity/obj/Entity.csproj.nuget.g.props new file mode 100644 index 0000000..268aef8 --- /dev/null +++ b/WebAPIExam/Entity/obj/Entity.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\hanss\.nuget\packages\ + PackageReference + 6.9.2 + + + + + + + + \ No newline at end of file diff --git a/WebAPIExam/Entity/obj/Entity.csproj.nuget.g.targets b/WebAPIExam/Entity/obj/Entity.csproj.nuget.g.targets new file mode 100644 index 0000000..ea344a7 --- /dev/null +++ b/WebAPIExam/Entity/obj/Entity.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/WebAPIExam/Entity/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/WebAPIExam/Entity/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/WebAPIExam/Entity/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/WebAPIExam/Entity/obj/Release/net8.0/Entity.AssemblyInfo.cs b/WebAPIExam/Entity/obj/Release/net8.0/Entity.AssemblyInfo.cs new file mode 100644 index 0000000..b76dfca --- /dev/null +++ b/WebAPIExam/Entity/obj/Release/net8.0/Entity.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Entity")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+681184ef29f83f797ad525699016e2067c66a5fb")] +[assembly: System.Reflection.AssemblyProductAttribute("Entity")] +[assembly: System.Reflection.AssemblyTitleAttribute("Entity")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/WebAPIExam/Entity/obj/Release/net8.0/Entity.AssemblyInfoInputs.cache b/WebAPIExam/Entity/obj/Release/net8.0/Entity.AssemblyInfoInputs.cache new file mode 100644 index 0000000..24323a9 --- /dev/null +++ b/WebAPIExam/Entity/obj/Release/net8.0/Entity.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6c4ad0aa5b156ab128ae1611f4185c5ae03c57315896037c6832ec4d5a0e25ea diff --git a/WebAPIExam/Entity/obj/Release/net8.0/Entity.GeneratedMSBuildEditorConfig.editorconfig b/WebAPIExam/Entity/obj/Release/net8.0/Entity.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..bdb2846 --- /dev/null +++ b/WebAPIExam/Entity/obj/Release/net8.0/Entity.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Entity +build_property.ProjectDir = C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Entity\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/WebAPIExam/Entity/obj/Release/net8.0/Entity.GlobalUsings.g.cs b/WebAPIExam/Entity/obj/Release/net8.0/Entity.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/WebAPIExam/Entity/obj/Release/net8.0/Entity.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WebAPIExam/Entity/obj/Release/net8.0/Entity.assets.cache b/WebAPIExam/Entity/obj/Release/net8.0/Entity.assets.cache new file mode 100644 index 0000000..45a2874 Binary files /dev/null and b/WebAPIExam/Entity/obj/Release/net8.0/Entity.assets.cache differ diff --git a/WebAPIExam/Entity/obj/Release/net8.0/Entity.csproj.AssemblyReference.cache b/WebAPIExam/Entity/obj/Release/net8.0/Entity.csproj.AssemblyReference.cache new file mode 100644 index 0000000..a494a5e Binary files /dev/null and b/WebAPIExam/Entity/obj/Release/net8.0/Entity.csproj.AssemblyReference.cache differ diff --git a/WebAPIExam/Entity/obj/project.assets.json b/WebAPIExam/Entity/obj/project.assets.json new file mode 100644 index 0000000..fd08114 --- /dev/null +++ b/WebAPIExam/Entity/obj/project.assets.json @@ -0,0 +1,1257 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "Microsoft.Data.Sqlite.Core/8.0.3": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "compile": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.3", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.3", + "Microsoft.Extensions.Caching.Memory": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.3", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.3", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + }, + "compile": { + "lib/net8.0/_._": {} + }, + "runtime": { + "lib/net8.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.3", + "Microsoft.EntityFrameworkCore.Relational": "8.0.3", + "Microsoft.Extensions.DependencyModel": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.6", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.6" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + } + }, + "SQLitePCLRaw.core/2.1.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "build": { + "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets": {} + }, + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": { + "assetType": "native", + "rid": "browser-wasm" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm64" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-ppc64le" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-s390x" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-arm64" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-x64" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-arm64" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "compile": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + } + }, + "System.Memory/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/8.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/System.Text.Json.targets": {} + } + } + } + }, + "libraries": { + "Microsoft.Data.Sqlite.Core/8.0.3": { + "sha512": "1euU97SivROH7nVIh2c/V63e0nQ73Txr/YlysB7fJuTV8LcfeL9WO1gdiJWcRIDoq8/McxcTc7evY6JJ1pD95w==", + "type": "package", + "path": "microsoft.data.sqlite.core/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net6.0/Microsoft.Data.Sqlite.dll", + "lib/net6.0/Microsoft.Data.Sqlite.xml", + "lib/net8.0/Microsoft.Data.Sqlite.dll", + "lib/net8.0/Microsoft.Data.Sqlite.xml", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.8.0.3.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "sha512": "QUPQbeq4yCjgIL/6PzkhfwhljXmai3CNOsErWFJ/WJ1Z41V8+At0Bi4PT8/2pX25kPgf83g0CUKIZd0QbeKT4A==", + "type": "package", + "path": "microsoft.entityframeworkcore/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "sha512": "cW+SKdx34wZ25ZVKCpk/6+6z27wrZlQ1qXyx7UWpy34s9CyAojH0QiYlV/2owNOGSAH67rm+LxAjUOicsqlGzQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": { + "sha512": "3csRAzz5O5Gn+GQBMyLn26OICtEo2/U2iDDygQhKb3LnC78bAUvutkMqvb0Ek5A6uHrBcZQrKQJfkgfnRT5XZw==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "sha512": "8JnVZHWaNFkrrD/FC0O4jekiHIYey8y6TQ4Co3OzLz0wd5Dm1cwJfTp++1TvaVu0BBd4bVDtiktppa5epuoPrA==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "sha512": "mdHNwlJkV71pKJU1MzIbjHWyjLw03S2kCO6mnuZL6V7uDv5ZxncoT5OELUiv7wRAYxnBucrl7ZPT76hwhBKBFw==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/_._", + "microsoft.entityframeworkcore.sqlite.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.sqlite.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "sha512": "6DvYtnLdpViXgA5F2Z/cIJfWIv31Eby5j2YqUzr+sgJulKtCX+ypvmfooXlYnCwJDlcmIaMY27TMnlrCcUvZmA==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite.core/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.xml", + "microsoft.entityframeworkcore.sqlite.core.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.sqlite.core.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "sha512": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "type": "package", + "path": "microsoft.extensions.caching.memory/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "sha512": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/8.0.0": { + "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "type": "package", + "path": "microsoft.extensions.logging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/8.0.0": { + "sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "type": "package", + "path": "microsoft.extensions.options/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.8.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "type": "package", + "path": "microsoft.extensions.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "sha512": "BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==", + "type": "package", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid90/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.xml", + "lib/net6.0-ios14.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-ios14.2/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-tvos10.0/SQLitePCLRaw.batteries_v2.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "lib/xamarinios10/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.1.6": { + "sha512": "wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==", + "type": "package", + "path": "sqlitepclraw.core/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.1.6.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "sha512": "2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "buildTransitive/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net7.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-arm/native/libe_sqlite3.so", + "runtimes/linux-musl-arm64/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-ppc64le/native/libe_sqlite3.so", + "runtimes/linux-s390x/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib", + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib", + "runtimes/osx-arm64/native/libe_sqlite3.dylib", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "sha512": "PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==", + "type": "package", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.provider.e_sqlite3.nuspec" + ] + }, + "System.Memory/4.5.3": { + "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "type": "package", + "path": "system.memory/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.3.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encodings.Web/8.0.0": { + "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", + "type": "package", + "path": "system.text.encodings.web/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/net7.0/System.Text.Encodings.Web.dll", + "lib/net7.0/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.8.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/8.0.0": { + "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", + "type": "package", + "path": "system.text.json/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net6.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/net7.0/System.Text.Json.dll", + "lib/net7.0/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.8.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Microsoft.EntityFrameworkCore.Sqlite >= 8.0.3" + ] + }, + "packageFolders": { + "C:\\Users\\hanss\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj", + "projectName": "Entity", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite": { + "target": "Package", + "version": "[8.0.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/WebAPIExam/Entity/obj/project.nuget.cache b/WebAPIExam/Entity/obj/project.nuget.cache new file mode 100644 index 0000000..35aa834 --- /dev/null +++ b/WebAPIExam/Entity/obj/project.nuget.cache @@ -0,0 +1,33 @@ +{ + "version": 2, + "dgSpecHash": "ZMiapEcn0maFCbFNp8ZSPAzA5HRHV/pgs1ZiIY55puyFJaciLc6ryxRPy/uWHQstrVHGytpOr/uXx/Z/gf8PvQ==", + "success": true, + "projectFilePath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj", + "expectedPackageFiles": [ + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.data.sqlite.core\\8.0.3\\microsoft.data.sqlite.core.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.3\\microsoft.entityframeworkcore.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.3\\microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.3\\microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.3\\microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite\\8.0.3\\microsoft.entityframeworkcore.sqlite.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite.core\\8.0.3\\microsoft.entityframeworkcore.sqlite.core.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.0\\microsoft.extensions.caching.memory.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.0\\microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.0\\microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.0\\microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.logging\\8.0.0\\microsoft.extensions.logging.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.0\\microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.options\\8.0.0\\microsoft.extensions.options.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.6\\sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\sqlitepclraw.core\\2.1.6\\sqlitepclraw.core.2.1.6.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.6\\sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.6\\sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\system.text.encodings.web\\8.0.0\\system.text.encodings.web.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\system.text.json\\8.0.0\\system.text.json.8.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/WebAPIExam/Services/Handlers/HandleBookedTicket/BookTicketHandler.cs b/WebAPIExam/Services/Handlers/HandleBookedTicket/BookTicketHandler.cs new file mode 100644 index 0000000..da00c55 --- /dev/null +++ b/WebAPIExam/Services/Handlers/HandleBookedTicket/BookTicketHandler.cs @@ -0,0 +1,97 @@ + +using Contracts.RequestModels.BookedTicket; +using Contracts.ResponseModels.BookedTicket; +using Entity.Entity; +using MediatR; +using Microsoft.EntityFrameworkCore; + +namespace Services.Handlers.HandleBookedTicket +{ + public class BookTicketHandler : IRequestHandler + { + private readonly DBContext _db; + public BookTicketHandler(DBContext db) + { + _db = db; + } + public async Task Handle(BookTicketRequest request, CancellationToken cancellationToken) + { + foreach(BookTicketModel ticket in request.BookingList) + { + var selectedTicket = await _db.Tickets.Where(Q=>Q.TicketId == ticket.TicketId).Select(Q => Q).FirstOrDefaultAsync(cancellationToken); + if(selectedTicket == null) + { + continue; + } + if(selectedTicket.Quota < ticket.Quantity) + { + ticket.Quantity = ticket.Quantity - selectedTicket.Quota; + selectedTicket.Quota = 0; + } + else + { + selectedTicket.Quota -= ticket.Quantity; + + } + var data = new BookedTicket + { + BookedId = Guid.NewGuid(), + TicketId = ticket.TicketId, + Quantity = ticket.Quantity, + }; + _db.Add(data); + } + await _db.SaveChangesAsync(cancellationToken); + + var databaseData = await (from b in _db.BookedTickets + join t in _db.Tickets on b.TicketId equals t.TicketId + join c in _db.Categories on t.CategoryId equals c.CategoryId + select new + { + c.CategoryName, + t.TicketCode, + t.TicketName, + t.Price, + b.Quantity, + b.BookedId, + b.TicketId, + c.CategoryId, + } + ).AsNoTracking().ToListAsync(cancellationToken); + var categories = await _db.Categories.AsNoTracking().ToListAsync(cancellationToken); + + var response = new BookTicketResponse + { + TotalPrice = 0, + }; + foreach(var category in categories) + { + var categoryModel = new TicketPerCategoryModel + { + CategoryName = category.CategoryName, + SubTotal = 0, + Tickets = [], + }; + + foreach(var data in databaseData) + { + if(data.CategoryId == category.CategoryId) + { + categoryModel.SubTotal += data.Price * data.Quantity; + var ticket = new TicketModel + { + TicketCode = data.TicketCode, + TicketName = data.TicketName, + Price = data.Price * data.Quantity, + }; + categoryModel.Tickets.Add(ticket); + } + } + response.TotalPrice += categoryModel.SubTotal; + response.TicketPerCategory.Add(categoryModel); + } + + return response; + } + } +} diff --git a/WebAPIExam/Services/Handlers/HandleBookedTicket/BookedTicketDetailHandler.cs b/WebAPIExam/Services/Handlers/HandleBookedTicket/BookedTicketDetailHandler.cs new file mode 100644 index 0000000..d0b7db6 --- /dev/null +++ b/WebAPIExam/Services/Handlers/HandleBookedTicket/BookedTicketDetailHandler.cs @@ -0,0 +1,65 @@ + +using Contracts.RequestModels.BookedTicket; +using Contracts.ResponseModels.BookedTicket; +using Entity.Entity; +using MediatR; +using Microsoft.EntityFrameworkCore; + +namespace Services.Handlers.HandleBookedTicket +{ + public class BookedTicketDetailHandler : IRequestHandler + { + private readonly DBContext _db; + public BookedTicketDetailHandler(DBContext db) + { + _db = db; + } + public async Task Handle(BookedTicketDetailRequest request, CancellationToken cancellationToken) + { + var bookedTickets = await (from b in _db.BookedTickets + join t in _db.Tickets on b.TicketId equals t.TicketId + join c in _db.Categories on t.CategoryId equals c.CategoryId + select new + { + c.CategoryName, + t.TicketCode, + t.TicketName, + t.EventDate, + b.Quantity, + b.BookedId, + b.TicketId, + c.CategoryId, + }).AsNoTracking().ToListAsync(cancellationToken); + + + var selectedBookedTicket = bookedTickets.Where(Q=>Q.BookedId == request.BookedId).FirstOrDefault(); + if (selectedBookedTicket == null) + { + return new BookedTicketDetailResponse(); + } + var response = new BookedTicketDetailResponse + { + CategoryName = selectedBookedTicket.CategoryName, + QuantityPerCategory = 0, + Tickets = [], + }; + + foreach(var bookedTicket in bookedTickets) + { + if(selectedBookedTicket.CategoryId == selectedBookedTicket.CategoryId) + { + var ticket = new TicketDetailModel + { + TicketCode = bookedTicket.TicketCode, + TicketName = bookedTicket.TicketName, + EventDate = bookedTicket.EventDate + }; + response.QuantityPerCategory += bookedTicket.Quantity; + response.Tickets.Add(ticket); + } + } + + return response; + } + } +} diff --git a/WebAPIExam/Services/Handlers/HandleBookedTicket/DeleteBookedTicketsHandler.cs b/WebAPIExam/Services/Handlers/HandleBookedTicket/DeleteBookedTicketsHandler.cs new file mode 100644 index 0000000..646a049 --- /dev/null +++ b/WebAPIExam/Services/Handlers/HandleBookedTicket/DeleteBookedTicketsHandler.cs @@ -0,0 +1,56 @@ + + +using Contracts.RequestModels.BookedTicket; +using Contracts.ResponseModels.BookedTicket; +using Entity.Entity; +using MediatR; +using Microsoft.EntityFrameworkCore; + +namespace Services.Handlers.HandleBookedTicket +{ + public class DeleteBookedTicketsHandler : IRequestHandler + { + + private readonly DBContext _db; + public DeleteBookedTicketsHandler(DBContext db) + { + _db = db; + } + public async Task Handle(DeleteBookedTicketsRequest request, CancellationToken cancellationToken) + { + var selectedData = await _db.BookedTickets.Where(Q=>Q.BookedId == request.BookedId).Select(Q=>Q).FirstOrDefaultAsync(cancellationToken); + if(selectedData == null) + { + return new DeleteBookedTicketsResponse(); + } + if(selectedData.Quantity == 0) + { + _db.Remove(selectedData); + await _db.SaveChangesAsync(cancellationToken); + } + else + { + if(selectedData.Quantity <= request.Quantity) + { + selectedData.Quantity = request.Quantity; + await _db.SaveChangesAsync(cancellationToken); + } + } + var response = await (from b in _db.BookedTickets + join t in _db.Tickets on b.TicketId equals t.TicketId + join c in _db.Categories on t.CategoryId equals c.CategoryId + select new DeleteBookedTicketsResponse + { + CategoryName = c.CategoryName, + TicketCode = request.TicketCode, + Quantity = request.Quantity, + } + ).AsNoTracking().FirstOrDefaultAsync(cancellationToken); + if (response == null) + { + return new DeleteBookedTicketsResponse(); + } + return response; + } + } +} diff --git a/WebAPIExam/Services/Handlers/HandleBookedTicket/EditBookedTicketHandler.cs b/WebAPIExam/Services/Handlers/HandleBookedTicket/EditBookedTicketHandler.cs new file mode 100644 index 0000000..b62e98a --- /dev/null +++ b/WebAPIExam/Services/Handlers/HandleBookedTicket/EditBookedTicketHandler.cs @@ -0,0 +1,44 @@ +using Contracts.RequestModels.BookedTicket; +using Contracts.ResponseModels.BookedTicket; +using Entity.Entity; +using MediatR; +using Microsoft.EntityFrameworkCore; + +namespace Services.Handlers.HandleBookedTicket +{ + public class EditBookedTicketHandler : IRequestHandler + { + private readonly DBContext _db; + public EditBookedTicketHandler(DBContext db) + { + _db = db; + } + public async Task Handle(EditBookedTicketRequest request, CancellationToken cancellationToken) + { + var selectedData = await _db.BookedTickets.Where(Q=>Q.BookedId == request.BookedId).FirstOrDefaultAsync(cancellationToken); + if (selectedData == null) + { + return new EditBookedTicketResponse(); + } + selectedData.Quantity = request.Quantity; + await _db.SaveChangesAsync(cancellationToken); + + var response = await (from b in _db.BookedTickets + join t in _db.Tickets on b.TicketId equals t.TicketId + join c in _db.Categories on t.CategoryId equals c.CategoryId + select new EditBookedTicketResponse + { + CategoryName = c.CategoryName, + TicketName = t.TicketName, + TicketCode = t.TicketCode, + Quantity = request.Quantity, + } + ).AsNoTracking().FirstOrDefaultAsync(cancellationToken); + if (response == null) + { + return new EditBookedTicketResponse(); + } + return response; + } + } +} diff --git a/WebAPIExam/Services/Handlers/HandleCategory/CreateCategoryHandler.cs b/WebAPIExam/Services/Handlers/HandleCategory/CreateCategoryHandler.cs new file mode 100644 index 0000000..58ad716 --- /dev/null +++ b/WebAPIExam/Services/Handlers/HandleCategory/CreateCategoryHandler.cs @@ -0,0 +1,29 @@ +using Contracts.RequestModels.Category; +using Contracts.ResponseModels.Category; +using Entity.Entity; +using MediatR; + +namespace Services.Handlers.HandleCategory +{ + public class CreateCategoryHandler : IRequestHandler + { + private readonly DBContext _db; + public CreateCategoryHandler(DBContext db) + { + _db = db; + } + + public async Task Handle(CreateCategoryRequest request, CancellationToken cancellationToken) + { + var data = new Category + { + CategoryId = Guid.NewGuid(), + CategoryName = request.CategoryName + }; + _db.Add(data); + await _db.SaveChangesAsync(cancellationToken); + + return new CreateCategoryResponse { CategoryId = data.CategoryId }; + } + } +} diff --git a/WebAPIExam/Services/Handlers/HandleCategory/GetCategoryHandler.cs b/WebAPIExam/Services/Handlers/HandleCategory/GetCategoryHandler.cs new file mode 100644 index 0000000..55895c6 --- /dev/null +++ b/WebAPIExam/Services/Handlers/HandleCategory/GetCategoryHandler.cs @@ -0,0 +1,32 @@ + +using Contracts.RequestModels.Category; +using Contracts.ResponseModels.Category; +using Entity.Entity; +using MediatR; +using Microsoft.EntityFrameworkCore; + +namespace Services.Handlers.HandleCategory +{ + public class GetCategoryHandler : IRequestHandler + { + private readonly DBContext _db; + public GetCategoryHandler(DBContext db) + { + _db = db; + } + + public async Task Handle(GetCategoryRequest request, CancellationToken cancellationToken) + { + var dataList = await _db.Categories.Select(Q=>new GetCategoryModel + { + CategoryId = Q.CategoryId, + CategoryName = Q.CategoryName, + }).AsNoTracking().ToListAsync(cancellationToken); + var response = new GetCategoryResponse() + { + categoryList = dataList + }; + return response; + } + } +} diff --git a/WebAPIExam/Services/Handlers/HandleTicket/CreateTicketHandler.cs b/WebAPIExam/Services/Handlers/HandleTicket/CreateTicketHandler.cs new file mode 100644 index 0000000..af3819b --- /dev/null +++ b/WebAPIExam/Services/Handlers/HandleTicket/CreateTicketHandler.cs @@ -0,0 +1,33 @@ +using Contracts.RequestModels.Ticket; +using Contracts.ResponseModels.Ticket; +using Entity.Entity; +using MediatR; + +namespace Services.Handlers.HandleTicket +{ + public class CreateTicketHandler : IRequestHandler + { + private readonly DBContext _db; + public CreateTicketHandler(DBContext db) + { + _db = db; + } + public async Task Handle(CreateTicketRequest request, CancellationToken cancellationToken) + { + var data = new Ticket + { + TicketId = Guid.NewGuid(), + CategoryId = request.CategoryId, + TicketCode = request.TicketCode, + TicketName = request.TicketName, + Price = request.Price, + EventDate = request.EventDate, + Quota = request.Quota, + }; + _db.Tickets.Add(data); + await _db.SaveChangesAsync(); + + return new CreateTicketResponse { TicketId = data.TicketId, TicketName = data.TicketName }; + } + } +} diff --git a/WebAPIExam/Services/Handlers/HandleTicket/GetAllTicketHandler.cs b/WebAPIExam/Services/Handlers/HandleTicket/GetAllTicketHandler.cs new file mode 100644 index 0000000..293bd40 --- /dev/null +++ b/WebAPIExam/Services/Handlers/HandleTicket/GetAllTicketHandler.cs @@ -0,0 +1,37 @@ + +using Contracts.RequestModels.Ticket; +using Contracts.ResponseModels.Ticket; +using Entity.Entity; +using MediatR; +using Microsoft.EntityFrameworkCore; + +namespace Services.Handlers.HandleTicket +{ + public class GetAllTicketHandler : IRequestHandler + { + private readonly DBContext _db; + public GetAllTicketHandler(DBContext db) + { + _db = db; + } + + public async Task Handle(GetAllTicketRequest request, CancellationToken cancellationToken) + { + var dataList = await _db.Tickets.Select(Q=> new GetAllTicketModel + { + TicketId = Q.TicketId, + CategoryId = Q.CategoryId, + TicketName = Q.TicketName, + TicketCode = Q.TicketCode, + Price = Q.Price, + EventDate = Q.EventDate, + Quota = Q.Quota, + }).AsNoTracking().ToListAsync(cancellationToken); + var response = new GetAllTicketResponse + { + TicketList = dataList, + }; + return response; + } + } +} diff --git a/WebAPIExam/Services/Handlers/HandleTicket/GetAvailableTicketHandler.cs b/WebAPIExam/Services/Handlers/HandleTicket/GetAvailableTicketHandler.cs new file mode 100644 index 0000000..674816b --- /dev/null +++ b/WebAPIExam/Services/Handlers/HandleTicket/GetAvailableTicketHandler.cs @@ -0,0 +1,141 @@ + +using Contracts.RequestModels.Ticket; +using Contracts.ResponseModels.Ticket; +using Entity.Entity; +using MediatR; +using Microsoft.EntityFrameworkCore; + +namespace Services.Handlers.HandleTicket +{ + public class GetAvailableTicketHandler : IRequestHandler + { + private readonly DBContext _db; + public GetAvailableTicketHandler(DBContext db) + { + _db = db; + } + + public async Task Handle(GetAvailableTicketRequest request, CancellationToken cancellationToken) + { + var dataList = await _db.Tickets.Include(Q => Q.Category).Where(Q => Q.Quota > 0) + .Select(Q=> new GetAvailableTicketModel + { + EventDate = Q.EventDate, + Quota = Q.Quota, + TicketCode = Q.TicketCode, + TicketName = Q.TicketName, + CategoryName = (Q.Category != null)? Q.Category.CategoryName : string.Empty, + Price = Q.Price, + }).AsNoTracking().OrderBy(Q=>Q.TicketCode).ToListAsync(cancellationToken); + //Query Logic + var response = new GetAvailableTicketResponse(); + if (request == null || (request.CategoryName == string.Empty && + request.TicketCode == string.Empty && + request.TicketName == string.Empty && + request.Price == default && + request.EventDate == default && + request.MinimumDate == default && + request.MaximumDate == default && + request.OrderBy == string.Empty && + request.SortAscending == true)) + { + response.AvailableTickets = dataList; + } + else + { + if(request.CategoryName != string.Empty) + { + dataList = dataList.Where(Q => Q.CategoryName.Contains(request.CategoryName)).ToList(); + } + if (request.TicketCode != string.Empty) + { + dataList = dataList.Where(Q => Q.TicketCode.Contains(request.TicketCode)).ToList(); + } + if (request.TicketName != string.Empty) + { + dataList = dataList.Where(Q => Q.TicketName.Contains(request.TicketName)).ToList(); + } + if (request.Price != default) + { + dataList = dataList.Where(Q => Q.Price == request.Price).ToList(); + } + if (request.EventDate != default) + { + dataList = dataList.Where(Q => Q.EventDate == request.EventDate).ToList(); + } + else + { + if (request.CategoryName != default) + { + dataList = dataList.Where(Q => Q.EventDate > request.MinimumDate).ToList(); + } + if (request.MaximumDate != default) + { + dataList = dataList.Where(Q => Q.EventDate < request.MaximumDate).ToList(); + } + } + if (request.OrderBy != string.Empty) + { + var orderBy = request.OrderBy.ToLower(); + if (request.SortAscending == true) + { + switch (orderBy) + { + case "categoryname": + case "category": + dataList = dataList.OrderBy(Q => Q.CategoryName).ToList(); + break; + case "ticketcode": + case "ticket": + dataList = dataList.OrderBy(Q => Q.TicketCode).ToList(); + break; + case "ticketname": + dataList = dataList.OrderBy(Q => Q.TicketName).ToList(); + break; + case "price": + dataList = dataList.OrderBy(Q => Q.Price).ToList(); + break; + case "eventdate": + case "date": + dataList = dataList.OrderBy(Q => Q.EventDate).ToList(); + break; + default: + dataList = dataList.OrderBy(Q => Q.TicketCode).ToList(); + break; + } + } + else + { + switch (orderBy) + { + case "categoryname": + case "category": + dataList = dataList.OrderByDescending(Q => Q.CategoryName).ToList(); + break; + case "ticketcode": + case "ticket": + dataList = dataList.OrderByDescending(Q => Q.TicketCode).ToList(); + break; + case "ticketname": + dataList = dataList.OrderByDescending(Q => Q.TicketName).ToList(); + break; + case "price": + dataList = dataList.OrderByDescending(Q => Q.Price).ToList(); + break; + case "eventdate": + case "date": + dataList = dataList.OrderByDescending(Q => Q.EventDate).ToList(); + break; + default: + dataList = dataList.OrderByDescending(Q => Q.TicketCode).ToList(); + break; + } + } + } + response.AvailableTickets = dataList; + } + + return response; + } + } +} diff --git a/WebAPIExam/Services/Services.csproj b/WebAPIExam/Services/Services.csproj new file mode 100644 index 0000000..178a4d7 --- /dev/null +++ b/WebAPIExam/Services/Services.csproj @@ -0,0 +1,21 @@ + + + + net8.0 + enable + enable + + + + + + + + + + + + + + + diff --git a/WebAPIExam/Services/Validators/BookTicketValidator.cs b/WebAPIExam/Services/Validators/BookTicketValidator.cs new file mode 100644 index 0000000..9417eb2 --- /dev/null +++ b/WebAPIExam/Services/Validators/BookTicketValidator.cs @@ -0,0 +1,31 @@ +using Contracts.RequestModels.BookedTicket; +using Entity.Entity; +using FluentValidation; +using Microsoft.EntityFrameworkCore; + +namespace Services.Validators +{ + public class BookTicketValidator : AbstractValidator + { + private readonly DBContext _db; + public BookTicketValidator(DBContext db) + { + _db = db; + RuleForEach(Q=>Q.BookingList) + .ChildRules(child => + child.RuleFor(X=>X.TicketId).MustAsync(CheckTicketIdExists).WithMessage("Ticket does not exist") + .MustAsync(CheckQuota).WithMessage("Quota insufficient")); + } + + public async Task CheckTicketIdExists(Guid id, CancellationToken cancellationToken) + { + var response = await _db.Tickets.Where(Q => Q.TicketId == id).AsNoTracking().AnyAsync(cancellationToken); + return response; + } + public async Task CheckQuota(Guid id, CancellationToken cancellationToken) + { + var response = await _db.Tickets.Where(Q => Q.Quota > 0).AsNoTracking().AnyAsync(cancellationToken); + return response; + } + } +} diff --git a/WebAPIExam/Services/Validators/BookedDetailResponseValidator.cs b/WebAPIExam/Services/Validators/BookedDetailResponseValidator.cs new file mode 100644 index 0000000..641245e --- /dev/null +++ b/WebAPIExam/Services/Validators/BookedDetailResponseValidator.cs @@ -0,0 +1,7 @@ + +namespace Services.Validators +{ + public class BookedDetailResponseValidator + { + } +} diff --git a/WebAPIExam/Services/Validators/BookedTicketDetailValidator.cs b/WebAPIExam/Services/Validators/BookedTicketDetailValidator.cs new file mode 100644 index 0000000..e57ed8a --- /dev/null +++ b/WebAPIExam/Services/Validators/BookedTicketDetailValidator.cs @@ -0,0 +1,22 @@ +using Contracts.RequestModels.BookedTicket; +using Entity.Entity; +using FluentValidation; +using Microsoft.EntityFrameworkCore; + +namespace Services.Validators +{ + public class BookedTicketDetailValidator : AbstractValidator + { + private readonly DBContext _db; + public BookedTicketDetailValidator(DBContext db) + { + _db = db; + RuleFor(Q => Q.BookedId).NotEmpty().MustAsync(CheckBookedTicketIdExists).WithMessage("Booked Ticked ID does not exist"); + } + public async Task CheckBookedTicketIdExists(Guid id, CancellationToken cancellationToken) + { + var response = await _db.BookedTickets.Where(Q => Q.BookedId == id).AsNoTracking().AnyAsync(cancellationToken); + return response; + } + } +} diff --git a/WebAPIExam/Services/Validators/DeleteBookedTicketValidator.cs b/WebAPIExam/Services/Validators/DeleteBookedTicketValidator.cs new file mode 100644 index 0000000..ad7fcdc --- /dev/null +++ b/WebAPIExam/Services/Validators/DeleteBookedTicketValidator.cs @@ -0,0 +1,29 @@ +using Contracts.RequestModels.BookedTicket; +using Entity.Entity; +using FluentValidation; +using Microsoft.EntityFrameworkCore; + +namespace Services.Validators +{ + public class DeleteBookedTicketValidator : AbstractValidator + { + private readonly DBContext _db; + public DeleteBookedTicketValidator(DBContext db) + { + _db = db; + RuleFor(Q => Q.BookedId).NotEmpty().MustAsync(CheckBookedTicketIdExists).WithMessage("Booked Ticked ID does not exist"); + RuleFor(Q => Q.Quantity).NotEmpty().GreaterThan(0); + RuleFor(Q => Q.TicketCode).NotEmpty().MustAsync(CheckTicketCodeExists).WithMessage("Ticket Code not found"); + } + public async Task CheckBookedTicketIdExists(Guid id, CancellationToken cancellationToken) + { + var response = await _db.BookedTickets.Where(Q => Q.BookedId == id).AsNoTracking().AnyAsync(cancellationToken); + return response; + } + public async Task CheckTicketCodeExists(string id, CancellationToken cancellationToken) + { + var response = await _db.Tickets.Where(Q => Q.TicketCode == id).AsNoTracking().AnyAsync(cancellationToken); + return response; + } + } +} diff --git a/WebAPIExam/Services/Validators/EditBookedTicketValidator.cs b/WebAPIExam/Services/Validators/EditBookedTicketValidator.cs new file mode 100644 index 0000000..b6d6c7e --- /dev/null +++ b/WebAPIExam/Services/Validators/EditBookedTicketValidator.cs @@ -0,0 +1,34 @@ +using Contracts.RequestModels.BookedTicket; +using Contracts.ResponseModels.BookedTicket; +using Entity.Entity; +using FluentValidation; +using MediatR; +using Microsoft.EntityFrameworkCore; + +namespace Services.Validators +{ + public class EditBookedTicketValidator : AbstractValidator + { + private readonly DBContext _db; + public EditBookedTicketValidator(DBContext db) + { + _db = db; + RuleFor(Q => Q.BookedId).NotEmpty().MustAsync(CheckBookedTicketIdExists).WithMessage("Booked Ticked ID does not exist"); + RuleFor(Q => Q.Quantity).NotEmpty().GreaterThan(0); + } + public async Task CheckBookedTicketIdExists(Guid id, CancellationToken cancellationToken) + { + var response = await _db.BookedTickets.Where(Q => Q.BookedId == id).AsNoTracking().AnyAsync(cancellationToken); + return response; + } + public async Task CheckTicketCodeExists(string id, CancellationToken cancellationToken) + { + var response = await (from b in _db.BookedTickets + join t in _db.Tickets on b.TicketId equals t.TicketId + where t.TicketCode == id + select b + ).AsNoTracking().AnyAsync(cancellationToken); + return response; + } + } +} diff --git a/WebAPIExam/Services/bin/Debug/net8.0/Contracts.dll b/WebAPIExam/Services/bin/Debug/net8.0/Contracts.dll new file mode 100644 index 0000000..f4e3772 Binary files /dev/null and b/WebAPIExam/Services/bin/Debug/net8.0/Contracts.dll differ diff --git a/WebAPIExam/Services/bin/Debug/net8.0/Contracts.pdb b/WebAPIExam/Services/bin/Debug/net8.0/Contracts.pdb new file mode 100644 index 0000000..858506a Binary files /dev/null and b/WebAPIExam/Services/bin/Debug/net8.0/Contracts.pdb differ diff --git a/WebAPIExam/Services/bin/Debug/net8.0/Entity.dll b/WebAPIExam/Services/bin/Debug/net8.0/Entity.dll new file mode 100644 index 0000000..33cec7f Binary files /dev/null and b/WebAPIExam/Services/bin/Debug/net8.0/Entity.dll differ diff --git a/WebAPIExam/Services/bin/Debug/net8.0/Entity.pdb b/WebAPIExam/Services/bin/Debug/net8.0/Entity.pdb new file mode 100644 index 0000000..ec7d0c0 Binary files /dev/null and b/WebAPIExam/Services/bin/Debug/net8.0/Entity.pdb differ diff --git a/WebAPIExam/Services/bin/Debug/net8.0/Services.deps.json b/WebAPIExam/Services/bin/Debug/net8.0/Services.deps.json new file mode 100644 index 0000000..cf82d10 --- /dev/null +++ b/WebAPIExam/Services/bin/Debug/net8.0/Services.deps.json @@ -0,0 +1,633 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "Services/1.0.0": { + "dependencies": { + "Contracts": "1.0.0", + "Entity": "1.0.0", + "FluentValidation": "11.9.0", + "FluentValidation.DependencyInjectionExtensions": "11.9.0", + "MediatR": "11.1.0", + "MediatR.Extensions.Microsoft.DependencyInjection": "11.1.0" + }, + "runtime": { + "Services.dll": {} + } + }, + "FluentValidation/11.9.0": { + "runtime": { + "lib/net8.0/FluentValidation.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.9.0.0" + } + } + }, + "FluentValidation.DependencyInjectionExtensions/11.9.0": { + "dependencies": { + "FluentValidation": "11.9.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.9.0.0" + } + } + }, + "MediatR/11.1.0": { + "dependencies": { + "MediatR.Contracts": "2.0.1" + }, + "runtime": { + "lib/netstandard2.1/MediatR.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.1.0.0" + } + } + }, + "MediatR.Contracts/2.0.1": { + "runtime": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "assemblyVersion": "2.0.1.0", + "fileVersion": "2.0.1.0" + } + } + }, + "MediatR.Extensions.Microsoft.DependencyInjection/11.1.0": { + "dependencies": { + "MediatR": "11.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.1.0.0" + } + } + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.3", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.3", + "Microsoft.Extensions.Caching.Memory": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": {}, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.3", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.3", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.3", + "Microsoft.EntityFrameworkCore.Relational": "8.0.3", + "Microsoft.Extensions.DependencyModel": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.6", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.6" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.core/2.1.6": { + "dependencies": { + "System.Memory": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": { + "rid": "browser-wasm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "rid": "linux-musl-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "rid": "linux-musl-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "rid": "linux-ppc64le", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "rid": "linux-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "System.Memory/4.5.3": {}, + "System.Text.Encodings.Web/8.0.0": {}, + "System.Text.Json/8.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "8.0.0" + } + }, + "Contracts/1.0.0": { + "dependencies": { + "MediatR.Contracts": "2.0.1" + }, + "runtime": { + "Contracts.dll": {} + } + }, + "Entity/1.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite": "8.0.3" + }, + "runtime": { + "Entity.dll": {} + } + } + } + }, + "libraries": { + "Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "FluentValidation/11.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VneVlTvwYDkfHV5av3QrQ0amALgrLX6LV94wlYyEsh0B/klJBW7C8y2eAtj5tOZ3jH6CAVpr4s1ZGgew/QWyig==", + "path": "fluentvalidation/11.9.0", + "hashPath": "fluentvalidation.11.9.0.nupkg.sha512" + }, + "FluentValidation.DependencyInjectionExtensions/11.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ko++xvN7HUf4WlHJL6bhsybUj/uho8ApOYIdxGjpF8Ot7Fukz6LRfRJ06H0KXhWqmMHWEbu89hJbjKJHtg7b9g==", + "path": "fluentvalidation.dependencyinjectionextensions/11.9.0", + "hashPath": "fluentvalidation.dependencyinjectionextensions.11.9.0.nupkg.sha512" + }, + "MediatR/11.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YIbtrLOyeCuIv8vIuHL/mMdls5xmgS36pIOJDxKZuu55nxA2MI2Z+E/Uk0z+F/LE11AGmpjplOM0NZ91m5LQBA==", + "path": "mediatr/11.1.0", + "hashPath": "mediatr.11.1.0.nupkg.sha512" + }, + "MediatR.Contracts/2.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", + "path": "mediatr.contracts/2.0.1", + "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" + }, + "MediatR.Extensions.Microsoft.DependencyInjection/11.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RW3etRuy6Xp63cgqfC0r/ITOtUT0f9ymJl1+1XZdzsYUsfv7WBPC2kXGOP8IYpY/6c4Q6805vbIW/88DopUs3w==", + "path": "mediatr.extensions.microsoft.dependencyinjection/11.1.0", + "hashPath": "mediatr.extensions.microsoft.dependencyinjection.11.1.0.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1euU97SivROH7nVIh2c/V63e0nQ73Txr/YlysB7fJuTV8LcfeL9WO1gdiJWcRIDoq8/McxcTc7evY6JJ1pD95w==", + "path": "microsoft.data.sqlite.core/8.0.3", + "hashPath": "microsoft.data.sqlite.core.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QUPQbeq4yCjgIL/6PzkhfwhljXmai3CNOsErWFJ/WJ1Z41V8+At0Bi4PT8/2pX25kPgf83g0CUKIZd0QbeKT4A==", + "path": "microsoft.entityframeworkcore/8.0.3", + "hashPath": "microsoft.entityframeworkcore.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cW+SKdx34wZ25ZVKCpk/6+6z27wrZlQ1qXyx7UWpy34s9CyAojH0QiYlV/2owNOGSAH67rm+LxAjUOicsqlGzQ==", + "path": "microsoft.entityframeworkcore.abstractions/8.0.3", + "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3csRAzz5O5Gn+GQBMyLn26OICtEo2/U2iDDygQhKb3LnC78bAUvutkMqvb0Ek5A6uHrBcZQrKQJfkgfnRT5XZw==", + "path": "microsoft.entityframeworkcore.analyzers/8.0.3", + "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8JnVZHWaNFkrrD/FC0O4jekiHIYey8y6TQ4Co3OzLz0wd5Dm1cwJfTp++1TvaVu0BBd4bVDtiktppa5epuoPrA==", + "path": "microsoft.entityframeworkcore.relational/8.0.3", + "hashPath": "microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mdHNwlJkV71pKJU1MzIbjHWyjLw03S2kCO6mnuZL6V7uDv5ZxncoT5OELUiv7wRAYxnBucrl7ZPT76hwhBKBFw==", + "path": "microsoft.entityframeworkcore.sqlite/8.0.3", + "hashPath": "microsoft.entityframeworkcore.sqlite.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6DvYtnLdpViXgA5F2Z/cIJfWIv31Eby5j2YqUzr+sgJulKtCX+ypvmfooXlYnCwJDlcmIaMY27TMnlrCcUvZmA==", + "path": "microsoft.entityframeworkcore.sqlite.core/8.0.3", + "hashPath": "microsoft.entityframeworkcore.sqlite.core.8.0.3.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "path": "microsoft.extensions.caching.memory/8.0.0", + "hashPath": "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", + "path": "microsoft.extensions.dependencymodel/8.0.0", + "hashPath": "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "path": "microsoft.extensions.logging/8.0.0", + "hashPath": "microsoft.extensions.logging.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "path": "microsoft.extensions.logging.abstractions/8.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "path": "microsoft.extensions.options/8.0.0", + "hashPath": "microsoft.extensions.options.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "path": "microsoft.extensions.primitives/8.0.0", + "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==", + "path": "sqlitepclraw.core/2.1.6", + "hashPath": "sqlitepclraw.core.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512" + }, + "System.Memory/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "path": "system.memory/4.5.3", + "hashPath": "system.memory.4.5.3.nupkg.sha512" + }, + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", + "path": "system.text.encodings.web/8.0.0", + "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512" + }, + "System.Text.Json/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", + "path": "system.text.json/8.0.0", + "hashPath": "system.text.json.8.0.0.nupkg.sha512" + }, + "Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Entity/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/WebAPIExam/Services/bin/Debug/net8.0/Services.dll b/WebAPIExam/Services/bin/Debug/net8.0/Services.dll new file mode 100644 index 0000000..e14730f Binary files /dev/null and b/WebAPIExam/Services/bin/Debug/net8.0/Services.dll differ diff --git a/WebAPIExam/Services/bin/Debug/net8.0/Services.pdb b/WebAPIExam/Services/bin/Debug/net8.0/Services.pdb new file mode 100644 index 0000000..9aa77f3 Binary files /dev/null and b/WebAPIExam/Services/bin/Debug/net8.0/Services.pdb differ diff --git a/WebAPIExam/Services/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/WebAPIExam/Services/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/WebAPIExam/Services/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/WebAPIExam/Services/obj/Debug/net8.0/Services.AssemblyInfo.cs b/WebAPIExam/Services/obj/Debug/net8.0/Services.AssemblyInfo.cs new file mode 100644 index 0000000..41fa20e --- /dev/null +++ b/WebAPIExam/Services/obj/Debug/net8.0/Services.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Services")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+681184ef29f83f797ad525699016e2067c66a5fb")] +[assembly: System.Reflection.AssemblyProductAttribute("Services")] +[assembly: System.Reflection.AssemblyTitleAttribute("Services")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/WebAPIExam/Services/obj/Debug/net8.0/Services.AssemblyInfoInputs.cache b/WebAPIExam/Services/obj/Debug/net8.0/Services.AssemblyInfoInputs.cache new file mode 100644 index 0000000..cf4520e --- /dev/null +++ b/WebAPIExam/Services/obj/Debug/net8.0/Services.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +16f891632becd5505cfd218f9e16e8949d7fd1050f27f166b7dbbf64ede027c9 diff --git a/WebAPIExam/Services/obj/Debug/net8.0/Services.GeneratedMSBuildEditorConfig.editorconfig b/WebAPIExam/Services/obj/Debug/net8.0/Services.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4172456 --- /dev/null +++ b/WebAPIExam/Services/obj/Debug/net8.0/Services.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Services +build_property.ProjectDir = C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/WebAPIExam/Services/obj/Debug/net8.0/Services.GlobalUsings.g.cs b/WebAPIExam/Services/obj/Debug/net8.0/Services.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/WebAPIExam/Services/obj/Debug/net8.0/Services.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WebAPIExam/Services/obj/Debug/net8.0/Services.assets.cache b/WebAPIExam/Services/obj/Debug/net8.0/Services.assets.cache new file mode 100644 index 0000000..5c6acc0 Binary files /dev/null and b/WebAPIExam/Services/obj/Debug/net8.0/Services.assets.cache differ diff --git a/WebAPIExam/Services/obj/Debug/net8.0/Services.csproj.AssemblyReference.cache b/WebAPIExam/Services/obj/Debug/net8.0/Services.csproj.AssemblyReference.cache new file mode 100644 index 0000000..4810462 Binary files /dev/null and b/WebAPIExam/Services/obj/Debug/net8.0/Services.csproj.AssemblyReference.cache differ diff --git a/WebAPIExam/Services/obj/Debug/net8.0/Services.csproj.BuildWithSkipAnalyzers b/WebAPIExam/Services/obj/Debug/net8.0/Services.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/WebAPIExam/Services/obj/Debug/net8.0/Services.csproj.CoreCompileInputs.cache b/WebAPIExam/Services/obj/Debug/net8.0/Services.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..6db433a --- /dev/null +++ b/WebAPIExam/Services/obj/Debug/net8.0/Services.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +12e1bc10e56a46f2a2409818ffad021b03996c60be9a4e3518f585dfb0276bcc diff --git a/WebAPIExam/Services/obj/Debug/net8.0/Services.csproj.FileListAbsolute.txt b/WebAPIExam/Services/obj/Debug/net8.0/Services.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..5bc2f26 --- /dev/null +++ b/WebAPIExam/Services/obj/Debug/net8.0/Services.csproj.FileListAbsolute.txt @@ -0,0 +1,18 @@ +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\bin\Debug\net8.0\Services.deps.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\bin\Debug\net8.0\Services.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\bin\Debug\net8.0\Services.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\bin\Debug\net8.0\Contracts.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\bin\Debug\net8.0\Entity.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\bin\Debug\net8.0\Contracts.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\bin\Debug\net8.0\Entity.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\obj\Debug\net8.0\Services.csproj.AssemblyReference.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\obj\Debug\net8.0\Services.GeneratedMSBuildEditorConfig.editorconfig +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\obj\Debug\net8.0\Services.AssemblyInfoInputs.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\obj\Debug\net8.0\Services.AssemblyInfo.cs +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\obj\Debug\net8.0\Services.csproj.CoreCompileInputs.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\obj\Debug\net8.0\Services.sourcelink.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\obj\Debug\net8.0\Services.csproj.Up2Date +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\obj\Debug\net8.0\Services.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\obj\Debug\net8.0\refint\Services.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\obj\Debug\net8.0\Services.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\obj\Debug\net8.0\ref\Services.dll diff --git a/WebAPIExam/Services/obj/Debug/net8.0/Services.csproj.Up2Date b/WebAPIExam/Services/obj/Debug/net8.0/Services.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/WebAPIExam/Services/obj/Debug/net8.0/Services.dll b/WebAPIExam/Services/obj/Debug/net8.0/Services.dll new file mode 100644 index 0000000..e14730f Binary files /dev/null and b/WebAPIExam/Services/obj/Debug/net8.0/Services.dll differ diff --git a/WebAPIExam/Services/obj/Debug/net8.0/Services.pdb b/WebAPIExam/Services/obj/Debug/net8.0/Services.pdb new file mode 100644 index 0000000..9aa77f3 Binary files /dev/null and b/WebAPIExam/Services/obj/Debug/net8.0/Services.pdb differ diff --git a/WebAPIExam/Services/obj/Debug/net8.0/Services.sourcelink.json b/WebAPIExam/Services/obj/Debug/net8.0/Services.sourcelink.json new file mode 100644 index 0000000..64b8044 --- /dev/null +++ b/WebAPIExam/Services/obj/Debug/net8.0/Services.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\*":"https://raw.githubusercontent.com/accelist/ExamNETWebAPI/681184ef29f83f797ad525699016e2067c66a5fb/*"}} \ No newline at end of file diff --git a/WebAPIExam/Services/obj/Debug/net8.0/ref/Services.dll b/WebAPIExam/Services/obj/Debug/net8.0/ref/Services.dll new file mode 100644 index 0000000..cb57d3d Binary files /dev/null and b/WebAPIExam/Services/obj/Debug/net8.0/ref/Services.dll differ diff --git a/WebAPIExam/Services/obj/Debug/net8.0/refint/Services.dll b/WebAPIExam/Services/obj/Debug/net8.0/refint/Services.dll new file mode 100644 index 0000000..cb57d3d Binary files /dev/null and b/WebAPIExam/Services/obj/Debug/net8.0/refint/Services.dll differ diff --git a/WebAPIExam/Services/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/WebAPIExam/Services/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/WebAPIExam/Services/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/WebAPIExam/Services/obj/Release/net8.0/Services.AssemblyInfo.cs b/WebAPIExam/Services/obj/Release/net8.0/Services.AssemblyInfo.cs new file mode 100644 index 0000000..0ad32d8 --- /dev/null +++ b/WebAPIExam/Services/obj/Release/net8.0/Services.AssemblyInfo.cs @@ -0,0 +1,23 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Services")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+681184ef29f83f797ad525699016e2067c66a5fb")] +[assembly: System.Reflection.AssemblyProductAttribute("Services")] +[assembly: System.Reflection.AssemblyTitleAttribute("Services")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/WebAPIExam/Services/obj/Release/net8.0/Services.AssemblyInfoInputs.cache b/WebAPIExam/Services/obj/Release/net8.0/Services.AssemblyInfoInputs.cache new file mode 100644 index 0000000..932a9fc --- /dev/null +++ b/WebAPIExam/Services/obj/Release/net8.0/Services.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6396a774aaba1f0640af10411e34c91c73f3e326ee1cadce20332a056cfdcebc diff --git a/WebAPIExam/Services/obj/Release/net8.0/Services.GeneratedMSBuildEditorConfig.editorconfig b/WebAPIExam/Services/obj/Release/net8.0/Services.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4172456 --- /dev/null +++ b/WebAPIExam/Services/obj/Release/net8.0/Services.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,13 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Services +build_property.ProjectDir = C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\Services\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = diff --git a/WebAPIExam/Services/obj/Release/net8.0/Services.GlobalUsings.g.cs b/WebAPIExam/Services/obj/Release/net8.0/Services.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/WebAPIExam/Services/obj/Release/net8.0/Services.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WebAPIExam/Services/obj/Release/net8.0/Services.assets.cache b/WebAPIExam/Services/obj/Release/net8.0/Services.assets.cache new file mode 100644 index 0000000..f554c57 Binary files /dev/null and b/WebAPIExam/Services/obj/Release/net8.0/Services.assets.cache differ diff --git a/WebAPIExam/Services/obj/Release/net8.0/Services.csproj.AssemblyReference.cache b/WebAPIExam/Services/obj/Release/net8.0/Services.csproj.AssemblyReference.cache new file mode 100644 index 0000000..99272e6 Binary files /dev/null and b/WebAPIExam/Services/obj/Release/net8.0/Services.csproj.AssemblyReference.cache differ diff --git a/WebAPIExam/Services/obj/Services.csproj.nuget.dgspec.json b/WebAPIExam/Services/obj/Services.csproj.nuget.dgspec.json new file mode 100644 index 0000000..497e3ff --- /dev/null +++ b/WebAPIExam/Services/obj/Services.csproj.nuget.dgspec.json @@ -0,0 +1,225 @@ +{ + "format": 1, + "restore": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj": {} + }, + "projects": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj", + "projectName": "Contracts", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "MediatR.Contracts": { + "target": "Package", + "version": "[2.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj", + "projectName": "Entity", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite": { + "target": "Package", + "version": "[8.0.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj", + "projectName": "Services", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj": { + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj" + }, + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj": { + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "FluentValidation": { + "target": "Package", + "version": "[11.9.0, )" + }, + "FluentValidation.DependencyInjectionExtensions": { + "target": "Package", + "version": "[11.9.0, )" + }, + "MediatR": { + "target": "Package", + "version": "[11.1.0, )" + }, + "MediatR.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[11.1.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/WebAPIExam/Services/obj/Services.csproj.nuget.g.props b/WebAPIExam/Services/obj/Services.csproj.nuget.g.props new file mode 100644 index 0000000..268aef8 --- /dev/null +++ b/WebAPIExam/Services/obj/Services.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\hanss\.nuget\packages\ + PackageReference + 6.9.2 + + + + + + + + \ No newline at end of file diff --git a/WebAPIExam/Services/obj/Services.csproj.nuget.g.targets b/WebAPIExam/Services/obj/Services.csproj.nuget.g.targets new file mode 100644 index 0000000..ea344a7 --- /dev/null +++ b/WebAPIExam/Services/obj/Services.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/WebAPIExam/Services/obj/project.assets.json b/WebAPIExam/Services/obj/project.assets.json new file mode 100644 index 0000000..14be73a --- /dev/null +++ b/WebAPIExam/Services/obj/project.assets.json @@ -0,0 +1,1472 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "FluentValidation/11.9.0": { + "type": "package", + "compile": { + "lib/net8.0/FluentValidation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/FluentValidation.dll": { + "related": ".xml" + } + } + }, + "FluentValidation.DependencyInjectionExtensions/11.9.0": { + "type": "package", + "dependencies": { + "FluentValidation": "11.9.0", + "Microsoft.Extensions.Dependencyinjection.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + } + }, + "MediatR/11.1.0": { + "type": "package", + "dependencies": { + "MediatR.Contracts": "1.0.1" + }, + "compile": { + "lib/netstandard2.1/MediatR.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MediatR.dll": { + "related": ".xml" + } + } + }, + "MediatR.Contracts/2.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "related": ".xml" + } + } + }, + "MediatR.Extensions.Microsoft.DependencyInjection/11.1.0": { + "type": "package", + "dependencies": { + "MediatR": "[11.0.0, 12.0.0)", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" + }, + "compile": { + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": {} + } + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "compile": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.3", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.3", + "Microsoft.Extensions.Caching.Memory": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.3", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.3", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + }, + "compile": { + "lib/net8.0/_._": {} + }, + "runtime": { + "lib/net8.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.3", + "Microsoft.EntityFrameworkCore.Relational": "8.0.3", + "Microsoft.Extensions.DependencyModel": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.6", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.6" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + } + }, + "SQLitePCLRaw.core/2.1.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "build": { + "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets": {} + }, + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": { + "assetType": "native", + "rid": "browser-wasm" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm64" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-ppc64le" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-s390x" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-arm64" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-x64" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-arm64" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "compile": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + } + }, + "System.Memory/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/8.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/System.Text.Json.targets": {} + } + }, + "Contracts/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "MediatR.Contracts": "2.0.1" + }, + "compile": { + "bin/placeholder/Contracts.dll": {} + }, + "runtime": { + "bin/placeholder/Contracts.dll": {} + } + }, + "Entity/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite": "8.0.3" + }, + "compile": { + "bin/placeholder/Entity.dll": {} + }, + "runtime": { + "bin/placeholder/Entity.dll": {} + } + } + } + }, + "libraries": { + "FluentValidation/11.9.0": { + "sha512": "VneVlTvwYDkfHV5av3QrQ0amALgrLX6LV94wlYyEsh0B/klJBW7C8y2eAtj5tOZ3jH6CAVpr4s1ZGgew/QWyig==", + "type": "package", + "path": "fluentvalidation/11.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.11.9.0.nupkg.sha512", + "fluentvalidation.nuspec", + "lib/net5.0/FluentValidation.dll", + "lib/net5.0/FluentValidation.xml", + "lib/net6.0/FluentValidation.dll", + "lib/net6.0/FluentValidation.xml", + "lib/net7.0/FluentValidation.dll", + "lib/net7.0/FluentValidation.xml", + "lib/net8.0/FluentValidation.dll", + "lib/net8.0/FluentValidation.xml", + "lib/netstandard2.0/FluentValidation.dll", + "lib/netstandard2.0/FluentValidation.xml", + "lib/netstandard2.1/FluentValidation.dll", + "lib/netstandard2.1/FluentValidation.xml" + ] + }, + "FluentValidation.DependencyInjectionExtensions/11.9.0": { + "sha512": "Ko++xvN7HUf4WlHJL6bhsybUj/uho8ApOYIdxGjpF8Ot7Fukz6LRfRJ06H0KXhWqmMHWEbu89hJbjKJHtg7b9g==", + "type": "package", + "path": "fluentvalidation.dependencyinjectionextensions/11.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.dependencyinjectionextensions.11.9.0.nupkg.sha512", + "fluentvalidation.dependencyinjectionextensions.nuspec", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.xml", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.xml" + ] + }, + "MediatR/11.1.0": { + "sha512": "YIbtrLOyeCuIv8vIuHL/mMdls5xmgS36pIOJDxKZuu55nxA2MI2Z+E/Uk0z+F/LE11AGmpjplOM0NZ91m5LQBA==", + "type": "package", + "path": "mediatr/11.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "gradient_128x128.png", + "lib/netstandard2.1/MediatR.dll", + "lib/netstandard2.1/MediatR.xml", + "mediatr.11.1.0.nupkg.sha512", + "mediatr.nuspec" + ] + }, + "MediatR.Contracts/2.0.1": { + "sha512": "FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", + "type": "package", + "path": "mediatr.contracts/2.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "gradient_128x128.png", + "lib/netstandard2.0/MediatR.Contracts.dll", + "lib/netstandard2.0/MediatR.Contracts.xml", + "mediatr.contracts.2.0.1.nupkg.sha512", + "mediatr.contracts.nuspec" + ] + }, + "MediatR.Extensions.Microsoft.DependencyInjection/11.1.0": { + "sha512": "RW3etRuy6Xp63cgqfC0r/ITOtUT0f9ymJl1+1XZdzsYUsfv7WBPC2kXGOP8IYpY/6c4Q6805vbIW/88DopUs3w==", + "type": "package", + "path": "mediatr.extensions.microsoft.dependencyinjection/11.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "gradient_128x128.png", + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll", + "mediatr.extensions.microsoft.dependencyinjection.11.1.0.nupkg.sha512", + "mediatr.extensions.microsoft.dependencyinjection.nuspec" + ] + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "sha512": "1euU97SivROH7nVIh2c/V63e0nQ73Txr/YlysB7fJuTV8LcfeL9WO1gdiJWcRIDoq8/McxcTc7evY6JJ1pD95w==", + "type": "package", + "path": "microsoft.data.sqlite.core/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net6.0/Microsoft.Data.Sqlite.dll", + "lib/net6.0/Microsoft.Data.Sqlite.xml", + "lib/net8.0/Microsoft.Data.Sqlite.dll", + "lib/net8.0/Microsoft.Data.Sqlite.xml", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.8.0.3.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "sha512": "QUPQbeq4yCjgIL/6PzkhfwhljXmai3CNOsErWFJ/WJ1Z41V8+At0Bi4PT8/2pX25kPgf83g0CUKIZd0QbeKT4A==", + "type": "package", + "path": "microsoft.entityframeworkcore/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "sha512": "cW+SKdx34wZ25ZVKCpk/6+6z27wrZlQ1qXyx7UWpy34s9CyAojH0QiYlV/2owNOGSAH67rm+LxAjUOicsqlGzQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": { + "sha512": "3csRAzz5O5Gn+GQBMyLn26OICtEo2/U2iDDygQhKb3LnC78bAUvutkMqvb0Ek5A6uHrBcZQrKQJfkgfnRT5XZw==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "sha512": "8JnVZHWaNFkrrD/FC0O4jekiHIYey8y6TQ4Co3OzLz0wd5Dm1cwJfTp++1TvaVu0BBd4bVDtiktppa5epuoPrA==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "sha512": "mdHNwlJkV71pKJU1MzIbjHWyjLw03S2kCO6mnuZL6V7uDv5ZxncoT5OELUiv7wRAYxnBucrl7ZPT76hwhBKBFw==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/_._", + "microsoft.entityframeworkcore.sqlite.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.sqlite.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "sha512": "6DvYtnLdpViXgA5F2Z/cIJfWIv31Eby5j2YqUzr+sgJulKtCX+ypvmfooXlYnCwJDlcmIaMY27TMnlrCcUvZmA==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite.core/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.xml", + "microsoft.entityframeworkcore.sqlite.core.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.sqlite.core.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "sha512": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "type": "package", + "path": "microsoft.extensions.caching.memory/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "sha512": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/8.0.0": { + "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "type": "package", + "path": "microsoft.extensions.logging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/8.0.0": { + "sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "type": "package", + "path": "microsoft.extensions.options/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.8.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "type": "package", + "path": "microsoft.extensions.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "sha512": "BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==", + "type": "package", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid90/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.xml", + "lib/net6.0-ios14.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-ios14.2/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-tvos10.0/SQLitePCLRaw.batteries_v2.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "lib/xamarinios10/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.1.6": { + "sha512": "wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==", + "type": "package", + "path": "sqlitepclraw.core/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.1.6.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "sha512": "2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "buildTransitive/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net7.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-arm/native/libe_sqlite3.so", + "runtimes/linux-musl-arm64/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-ppc64le/native/libe_sqlite3.so", + "runtimes/linux-s390x/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib", + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib", + "runtimes/osx-arm64/native/libe_sqlite3.dylib", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "sha512": "PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==", + "type": "package", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.provider.e_sqlite3.nuspec" + ] + }, + "System.Memory/4.5.3": { + "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "type": "package", + "path": "system.memory/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.3.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encodings.Web/8.0.0": { + "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", + "type": "package", + "path": "system.text.encodings.web/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/net7.0/System.Text.Encodings.Web.dll", + "lib/net7.0/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.8.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/8.0.0": { + "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", + "type": "package", + "path": "system.text.json/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net6.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/net7.0/System.Text.Json.dll", + "lib/net7.0/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.8.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Contracts/1.0.0": { + "type": "project", + "path": "../Contracts/Contracts.csproj", + "msbuildProject": "../Contracts/Contracts.csproj" + }, + "Entity/1.0.0": { + "type": "project", + "path": "../Entity/Entity.csproj", + "msbuildProject": "../Entity/Entity.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "Contracts >= 1.0.0", + "Entity >= 1.0.0", + "FluentValidation >= 11.9.0", + "FluentValidation.DependencyInjectionExtensions >= 11.9.0", + "MediatR >= 11.1.0", + "MediatR.Extensions.Microsoft.DependencyInjection >= 11.1.0" + ] + }, + "packageFolders": { + "C:\\Users\\hanss\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj", + "projectName": "Services", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj": { + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj" + }, + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj": { + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "FluentValidation": { + "target": "Package", + "version": "[11.9.0, )" + }, + "FluentValidation.DependencyInjectionExtensions": { + "target": "Package", + "version": "[11.9.0, )" + }, + "MediatR": { + "target": "Package", + "version": "[11.1.0, )" + }, + "MediatR.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[11.1.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/WebAPIExam/Services/obj/project.nuget.cache b/WebAPIExam/Services/obj/project.nuget.cache new file mode 100644 index 0000000..33eb26b --- /dev/null +++ b/WebAPIExam/Services/obj/project.nuget.cache @@ -0,0 +1,38 @@ +{ + "version": 2, + "dgSpecHash": "x/XorUJ7/JPQVFT+6Gofxa5fKEQc3M/ThvvLg/ncEBiTZzCFlAY78NlF+c3QnKY/uSIm1fUBy+NnMBe84r8lmw==", + "success": true, + "projectFilePath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj", + "expectedPackageFiles": [ + "C:\\Users\\hanss\\.nuget\\packages\\fluentvalidation\\11.9.0\\fluentvalidation.11.9.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\11.9.0\\fluentvalidation.dependencyinjectionextensions.11.9.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\mediatr\\11.1.0\\mediatr.11.1.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\mediatr.contracts\\2.0.1\\mediatr.contracts.2.0.1.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\mediatr.extensions.microsoft.dependencyinjection\\11.1.0\\mediatr.extensions.microsoft.dependencyinjection.11.1.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.data.sqlite.core\\8.0.3\\microsoft.data.sqlite.core.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.3\\microsoft.entityframeworkcore.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.3\\microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.3\\microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.3\\microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite\\8.0.3\\microsoft.entityframeworkcore.sqlite.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite.core\\8.0.3\\microsoft.entityframeworkcore.sqlite.core.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.0\\microsoft.extensions.caching.memory.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.0\\microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.0\\microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.0\\microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.logging\\8.0.0\\microsoft.extensions.logging.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.0\\microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.options\\8.0.0\\microsoft.extensions.options.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.6\\sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\sqlitepclraw.core\\2.1.6\\sqlitepclraw.core.2.1.6.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.6\\sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.6\\sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\system.text.encodings.web\\8.0.0\\system.text.encodings.web.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\system.text.json\\8.0.0\\system.text.json.8.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/WebAPIExam/WebAPIExam.sln b/WebAPIExam/WebAPIExam.sln new file mode 100644 index 0000000..6246661 --- /dev/null +++ b/WebAPIExam/WebAPIExam.sln @@ -0,0 +1,49 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.9.34714.143 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WebAPIExam", "WebAPIExam\WebAPIExam.csproj", "{EEB648CB-5CD2-4A16-978B-AF4653909621}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Entity", "Entity\Entity.csproj", "{2A75EEFA-EDFF-4251-B6EB-012BB3ADBDE2}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Contracts", "Contracts\Contracts.csproj", "{E460EAC1-E097-48EE-B843-8DDEB7B891EA}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Services", "Services\Services.csproj", "{8F26FE1B-3BF0-44BE-B31E-C956C5ADBC62}" +EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "AcceTickTest", "AcceTickTest\AcceTickTest.csproj", "{D23A7F91-7300-4869-BDB8-44B93B3C42EF}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {EEB648CB-5CD2-4A16-978B-AF4653909621}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EEB648CB-5CD2-4A16-978B-AF4653909621}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EEB648CB-5CD2-4A16-978B-AF4653909621}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EEB648CB-5CD2-4A16-978B-AF4653909621}.Release|Any CPU.Build.0 = Release|Any CPU + {2A75EEFA-EDFF-4251-B6EB-012BB3ADBDE2}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {2A75EEFA-EDFF-4251-B6EB-012BB3ADBDE2}.Debug|Any CPU.Build.0 = Debug|Any CPU + {2A75EEFA-EDFF-4251-B6EB-012BB3ADBDE2}.Release|Any CPU.ActiveCfg = Release|Any CPU + {2A75EEFA-EDFF-4251-B6EB-012BB3ADBDE2}.Release|Any CPU.Build.0 = Release|Any CPU + {E460EAC1-E097-48EE-B843-8DDEB7B891EA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E460EAC1-E097-48EE-B843-8DDEB7B891EA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E460EAC1-E097-48EE-B843-8DDEB7B891EA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E460EAC1-E097-48EE-B843-8DDEB7B891EA}.Release|Any CPU.Build.0 = Release|Any CPU + {8F26FE1B-3BF0-44BE-B31E-C956C5ADBC62}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {8F26FE1B-3BF0-44BE-B31E-C956C5ADBC62}.Debug|Any CPU.Build.0 = Debug|Any CPU + {8F26FE1B-3BF0-44BE-B31E-C956C5ADBC62}.Release|Any CPU.ActiveCfg = Release|Any CPU + {8F26FE1B-3BF0-44BE-B31E-C956C5ADBC62}.Release|Any CPU.Build.0 = Release|Any CPU + {D23A7F91-7300-4869-BDB8-44B93B3C42EF}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D23A7F91-7300-4869-BDB8-44B93B3C42EF}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D23A7F91-7300-4869-BDB8-44B93B3C42EF}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D23A7F91-7300-4869-BDB8-44B93B3C42EF}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {22275953-11E8-4312-8D16-C49337D288B9} + EndGlobalSection +EndGlobal diff --git a/WebAPIExam/WebAPIExam/Controllers/BookedTicketController.cs b/WebAPIExam/WebAPIExam/Controllers/BookedTicketController.cs new file mode 100644 index 0000000..281b53d --- /dev/null +++ b/WebAPIExam/WebAPIExam/Controllers/BookedTicketController.cs @@ -0,0 +1,73 @@ +using Contracts.RequestModels.BookedTicket; +using Contracts.ResponseModels.BookedTicket; +using MediatR; +using Microsoft.AspNetCore.Mvc; + +// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 + +namespace WebAPIExam.Controllers +{ + [Route("api/v1/booked")] + [ApiController] + public class BookedTicketController : ControllerBase + { + private readonly IMediator _mediator; + public BookedTicketController(IMediator mediator) + { + _mediator = mediator; + } + // GET: api/ + //[HttpGet] + //public IEnumerable Get() + //{ + // return new string[] { "value1", "value2" }; + //} + + // GET api//5 + [HttpGet("get-booked-ticket/{id}")] + public async Task> Get(Guid id, CancellationToken cancellationToken) + { + var request = new BookedTicketDetailRequest { BookedId = id }; + var result = await _mediator.Send(request, cancellationToken); + return Ok(result); + } + + // POST api/ + [Route("book-ticket")] + [HttpPost] + public async Task> Post([FromBody] BookTicketRequest request, CancellationToken cancellationToken) + { + var result = await _mediator.Send(request, cancellationToken); + return Ok(result); + } + + // PUT api//5 + [HttpPut("edit-booked-ticekt/{id}")] + public async Task>Put(Guid id,[FromBody] EditBookedTicketModel requestModel, CancellationToken cancellationToken) + { + var request = new EditBookedTicketRequest + { + BookedId = id, + Quantity = requestModel.Quantity, + }; + var result = await _mediator.Send(request, cancellationToken); + return Ok(result); + } + + // DELETE api//5 + [HttpDelete("revoke-ticket/{id}/{code}/{qty}")] + public async Task> Delete(Guid id, string code, int qty, CancellationToken cancellationToken) + { + var request = new DeleteBookedTicketsRequest + { + BookedId = id, + TicketCode = code, + Quantity = qty, + }; + + var result = await _mediator.Send(request, cancellationToken); + + return Ok(result); + } + } +} diff --git a/WebAPIExam/WebAPIExam/Controllers/CategoryController.cs b/WebAPIExam/WebAPIExam/Controllers/CategoryController.cs new file mode 100644 index 0000000..21c4ec2 --- /dev/null +++ b/WebAPIExam/WebAPIExam/Controllers/CategoryController.cs @@ -0,0 +1,49 @@ +using Contracts.RequestModels.Category; +using Contracts.ResponseModels.Category; +using MediatR; +using Microsoft.AspNetCore.Mvc; +using System.Threading; + +// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 + +namespace WebAPIExam.Controllers +{ + [Route("api/v1/category")] + [ApiController] + public class CategoryController : ControllerBase + { + private readonly IMediator _mediator; + public CategoryController(IMediator mediator) + { + _mediator = mediator; + } + // GET: api/ + [HttpGet] + public async Task> Get(CancellationToken cancellationToken) + { + var request = new GetCategoryRequest(); + var result = await _mediator.Send(request, cancellationToken); + return Ok(result); + } + + // POST api/ + [HttpPost] + public async Task> Post([FromBody] CreateCategoryRequest request, CancellationToken cancellationToken) + { + var result = await _mediator.Send(request, cancellationToken); + return Ok(result); + } + + // PUT api//5 + [HttpPut("{id}")] + public void Put(int id, [FromBody] string value) + { + } + + // DELETE api//5 + [HttpDelete("{id}")] + public void Delete(int id) + { + } + } +} diff --git a/WebAPIExam/WebAPIExam/Controllers/TicketController.cs b/WebAPIExam/WebAPIExam/Controllers/TicketController.cs new file mode 100644 index 0000000..e68d48c --- /dev/null +++ b/WebAPIExam/WebAPIExam/Controllers/TicketController.cs @@ -0,0 +1,53 @@ +using Contracts.RequestModels.Ticket; +using Contracts.ResponseModels.Ticket; +using FluentValidation; +using MediatR; +using Microsoft.AspNetCore.Mvc; + +// For more information on enabling Web API for empty projects, visit https://go.microsoft.com/fwlink/?LinkID=397860 + +namespace WebAPIExam.Controllers +{ + + [Route("api/v1/ticket")] + [ApiController] + public class TicketController : ControllerBase + { + private readonly IMediator _mediator; + public TicketController(IMediator mediator) + { + _mediator = mediator; + } + // GET: api/ + [Route("get-all")] + [HttpGet] + public async Task> Get(CancellationToken cancellationToken) + { + var request = new GetAllTicketRequest(); + var result = await _mediator.Send(request, cancellationToken); + return Ok(result); + } + + // POST api/ + [HttpPost] + public async Task> Post([FromBody] CreateTicketRequest request, CancellationToken cancellationToken) + { + //TODO validation + var result = await _mediator.Send(request, cancellationToken); + return Ok(result); + } + + [Route("get-available-ticket")] + [HttpGet] + public async Task> Get( + [FromQuery] GetAvailableTicketRequest request, + //[FromServices]IValidator _validator, + CancellationToken cancellationToken) + { + //TODO validation + var result = await _mediator.Send(request, cancellationToken); + return Ok(result); + } + + } +} diff --git a/WebAPIExam/WebAPIExam/Logs/Log-2024032620240326.log b/WebAPIExam/WebAPIExam/Logs/Log-2024032620240326.log new file mode 100644 index 0000000..c4fc1c7 --- /dev/null +++ b/WebAPIExam/WebAPIExam/Logs/Log-2024032620240326.log @@ -0,0 +1,187 @@ +2024-03-26 10:29:18.933 +07:00 [ERR] An unhandled exception has occurred while executing the request. +System.InvalidOperationException: Unable to resolve service for type 'MediatR.IMediator' while attempting to activate 'WebAPIExam.Controllers.CategoryController'. + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ThrowHelperUnableToResolveService(Type type, Type requiredBy) + at lambda_method10(Closure, IServiceProvider, Object[]) + at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass6_0.g__CreateController|0(ControllerContext controllerContext) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddlewareImpl.Invoke(HttpContext context) +2024-03-26 10:31:53.004 +07:00 [ERR] An unhandled exception has occurred while executing the request. +System.InvalidOperationException: Unable to resolve service for type 'MediatR.IMediator' while attempting to activate 'WebAPIExam.Controllers.CategoryController'. + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ThrowHelperUnableToResolveService(Type type, Type requiredBy) + at lambda_method10(Closure, IServiceProvider, Object[]) + at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass6_0.g__CreateController|0(ControllerContext controllerContext) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddlewareImpl.Invoke(HttpContext context) +2024-03-26 10:35:04.221 +07:00 [ERR] An unhandled exception has occurred while executing the request. +System.InvalidOperationException: Unable to resolve service for type 'MediatR.IMediator' while attempting to activate 'WebAPIExam.Controllers.CategoryController'. + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ThrowHelperUnableToResolveService(Type type, Type requiredBy) + at lambda_method10(Closure, IServiceProvider, Object[]) + at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass6_0.g__CreateController|0(ControllerContext controllerContext) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddlewareImpl.Invoke(HttpContext context) +2024-03-26 10:35:06.531 +07:00 [ERR] An unhandled exception has occurred while executing the request. +System.InvalidOperationException: Unable to resolve service for type 'MediatR.IMediator' while attempting to activate 'WebAPIExam.Controllers.CategoryController'. + at Microsoft.Extensions.DependencyInjection.ActivatorUtilities.ThrowHelperUnableToResolveService(Type type, Type requiredBy) + at lambda_method10(Closure, IServiceProvider, Object[]) + at Microsoft.AspNetCore.Mvc.Controllers.ControllerFactoryProvider.<>c__DisplayClass6_0.g__CreateController|0(ControllerContext controllerContext) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddlewareImpl.Invoke(HttpContext context) +2024-03-26 12:32:57.686 +07:00 [ERR] An unhandled exception has occurred while executing the request. +System.InvalidOperationException: No service for type 'FluentValidation.IValidator' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at Microsoft.AspNetCore.Mvc.ModelBinding.Binders.ServicesModelBinder.BindModelAsync(ModelBindingContext bindingContext) + at Microsoft.AspNetCore.Mvc.ModelBinding.ParameterBinder.BindModelAsync(ActionContext actionContext, IModelBinder modelBinder, IValueProvider valueProvider, ParameterDescriptor parameter, ModelMetadata metadata, Object value, Object container) + at Microsoft.AspNetCore.Mvc.Controllers.ControllerBinderDelegateProvider.<>c__DisplayClass0_0.<g__Bind|0>d.MoveNext() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|13_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddlewareImpl.Invoke(HttpContext context) +2024-03-26 12:33:28.729 +07:00 [ERR] An unhandled exception has occurred while executing the request. +System.InvalidOperationException: Error constructing handler for request of type MediatR.IRequestHandler`2[Contracts.RequestModels.Ticket.GetAvailableTicketRequest,Contracts.ResponseModels.Ticket.GetAvailableTicketResponse]. Register your handlers with the container. See the samples in GitHub for examples. + ---> System.InvalidOperationException: No service for type 'MediatR.IRequestHandler`2[Contracts.RequestModels.Ticket.GetAvailableTicketRequest,Contracts.ResponseModels.Ticket.GetAvailableTicketResponse]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at MediatR.ServiceFactoryExtensions.GetInstance[T](ServiceFactory factory) + at MediatR.Wrappers.HandlerBase.GetHandler[THandler](ServiceFactory factory) + --- End of inner exception stack trace --- + at MediatR.Wrappers.HandlerBase.GetHandler[THandler](ServiceFactory factory) + at MediatR.Wrappers.RequestHandlerWrapperImpl`2.<>c__DisplayClass1_0.g__Handler|0() + at MediatR.Pipeline.RequestExceptionProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at MediatR.Pipeline.RequestExceptionProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at MediatR.Pipeline.RequestExceptionActionProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at MediatR.Pipeline.RequestExceptionActionProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at MediatR.Pipeline.RequestPostProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at MediatR.Pipeline.RequestPreProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at WebAPIExam.Controllers.TicketController.Get(GetAvailableTicketRequest request, CancellationToken cancellationToken) in C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\Controllers\TicketController.cs:line 47 + at lambda_method6(Closure, Object) + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddlewareImpl.Invoke(HttpContext context) +2024-03-26 12:36:21.943 +07:00 [ERR] An unhandled exception has occurred while executing the request. +System.InvalidOperationException: Error constructing handler for request of type MediatR.IRequestHandler`2[Contracts.RequestModels.Ticket.GetAvailableTicketRequest,Contracts.ResponseModels.Ticket.GetAvailableTicketResponse]. Register your handlers with the container. See the samples in GitHub for examples. + ---> System.InvalidOperationException: No service for type 'MediatR.IRequestHandler`2[Contracts.RequestModels.Ticket.GetAvailableTicketRequest,Contracts.ResponseModels.Ticket.GetAvailableTicketResponse]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at MediatR.ServiceFactoryExtensions.GetInstance[T](ServiceFactory factory) + at MediatR.Wrappers.HandlerBase.GetHandler[THandler](ServiceFactory factory) + --- End of inner exception stack trace --- + at MediatR.Wrappers.HandlerBase.GetHandler[THandler](ServiceFactory factory) + at MediatR.Wrappers.RequestHandlerWrapperImpl`2.<>c__DisplayClass1_0.g__Handler|0() + at MediatR.Pipeline.RequestExceptionProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at MediatR.Pipeline.RequestExceptionProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at MediatR.Pipeline.RequestExceptionActionProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at MediatR.Pipeline.RequestExceptionActionProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at MediatR.Pipeline.RequestPostProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at MediatR.Pipeline.RequestPreProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at WebAPIExam.Controllers.TicketController.Get(GetAvailableTicketRequest request, CancellationToken cancellationToken) in C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\Controllers\TicketController.cs:line 47 + at lambda_method6(Closure, Object) + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddlewareImpl.Invoke(HttpContext context) +2024-03-26 15:47:11.509 +07:00 [ERR] An unhandled exception has occurred while executing the request. +System.InvalidOperationException: Error constructing handler for request of type MediatR.IRequestHandler`2[Contracts.RequestModels.BookedTicket.BookedTicketDetailRequest,Contracts.ResponseModels.BookedTicket.BookedTicketDetailResponse]. Register your handlers with the container. See the samples in GitHub for examples. + ---> System.InvalidOperationException: No service for type 'MediatR.IRequestHandler`2[Contracts.RequestModels.BookedTicket.BookedTicketDetailRequest,Contracts.ResponseModels.BookedTicket.BookedTicketDetailResponse]' has been registered. + at Microsoft.Extensions.DependencyInjection.ServiceProviderServiceExtensions.GetRequiredService(IServiceProvider provider, Type serviceType) + at MediatR.ServiceFactoryExtensions.GetInstance[T](ServiceFactory factory) + at MediatR.Wrappers.HandlerBase.GetHandler[THandler](ServiceFactory factory) + --- End of inner exception stack trace --- + at MediatR.Wrappers.HandlerBase.GetHandler[THandler](ServiceFactory factory) + at MediatR.Wrappers.RequestHandlerWrapperImpl`2.<>c__DisplayClass1_0.g__Handler|0() + at MediatR.Pipeline.RequestExceptionProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at MediatR.Pipeline.RequestExceptionProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at MediatR.Pipeline.RequestExceptionActionProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at MediatR.Pipeline.RequestExceptionActionProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at MediatR.Pipeline.RequestPostProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at MediatR.Pipeline.RequestPreProcessorBehavior`2.Handle(TRequest request, RequestHandlerDelegate`1 next, CancellationToken cancellationToken) + at WebAPIExam.Controllers.BookedTicketController.Get(Guid id, CancellationToken cancellationToken) in C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\Controllers\BookedTicketController.cs:line 31 + at lambda_method6(Closure, Object) + at Microsoft.AspNetCore.Mvc.Infrastructure.ActionMethodExecutor.AwaitableObjectResultExecutor.Execute(ActionContext actionContext, IActionResultTypeMapper mapper, ObjectMethodExecutor executor, Object controller, Object[] arguments) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|12_0(ControllerActionInvoker invoker, ValueTask`1 actionResultValueTask) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.g__Awaited|10_0(ControllerActionInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Rethrow(ActionExecutedContextSealed context) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.Next(State& next, Scope& scope, Object& state, Boolean& isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ControllerActionInvoker.InvokeInnerFilterAsync() +--- End of stack trace from previous location --- + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Awaited|20_0(ResourceInvoker invoker, Task lastTask, State next, Scope scope, Object state, Boolean isCompleted) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) + at Microsoft.AspNetCore.Mvc.Infrastructure.ResourceInvoker.g__Logged|17_1(ResourceInvoker invoker) + at Microsoft.AspNetCore.Routing.EndpointMiddleware.g__AwaitRequestTask|7_0(Endpoint endpoint, Task requestTask, ILogger logger) + at Microsoft.AspNetCore.Authorization.AuthorizationMiddleware.Invoke(HttpContext context) + at Swashbuckle.AspNetCore.SwaggerUI.SwaggerUIMiddleware.Invoke(HttpContext httpContext) + at Swashbuckle.AspNetCore.Swagger.SwaggerMiddleware.Invoke(HttpContext httpContext, ISwaggerProvider swaggerProvider) + at Microsoft.AspNetCore.Authentication.AuthenticationMiddleware.Invoke(HttpContext context) + at Microsoft.AspNetCore.Diagnostics.DeveloperExceptionPageMiddlewareImpl.Invoke(HttpContext context) +2024-03-26 16:10:31.123 +07:00 [WRN] The query uses the 'First'/'FirstOrDefault' operator without 'OrderBy' and filter operators. This may lead to unpredictable results. +2024-03-26 16:16:07.483 +07:00 [WRN] The query uses the 'First'/'FirstOrDefault' operator without 'OrderBy' and filter operators. This may lead to unpredictable results. +2024-03-26 16:30:47.737 +07:00 [WRN] The query uses the 'First'/'FirstOrDefault' operator without 'OrderBy' and filter operators. This may lead to unpredictable results. diff --git a/WebAPIExam/WebAPIExam/Program.cs b/WebAPIExam/WebAPIExam/Program.cs new file mode 100644 index 0000000..89df02f --- /dev/null +++ b/WebAPIExam/WebAPIExam/Program.cs @@ -0,0 +1,72 @@ +using Entity.Entity; +using FluentValidation; +using MediatR; +using Microsoft.EntityFrameworkCore; +using Serilog; +using Serilog.Events; +using Services.Handlers.HandleCategory; +using Services.Handlers.HandleTicket; +using Services.Validators; + +var builder = WebApplication.CreateBuilder(args); +var configuration = builder.Configuration; + +builder.Host.UseSerilog((ctx, config) => config + .MinimumLevel.Information() + .WriteTo.Console() + .WriteTo.File("Logs/Log-20240326.log", LogEventLevel.Warning, rollingInterval: RollingInterval.Day) +); +// Add services to the container. + +builder.Services.AddControllers(); +// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle +builder.Services.AddEndpointsApiExplorer(); +builder.Services.AddSwaggerGen(); + +builder.Services.AddDbContextPool(dbContextBuilder => +{ + dbContextBuilder.UseSqlite(configuration.GetConnectionString("Sqlite")); +}); + +builder.Services.AddSwaggerGen(options => +{ + options.UseDateOnlyTimeOnlyStringConverters(); +}); + +builder.Services.AddValidatorsFromAssemblyContaining(typeof(BookTicketValidator)); +builder.Services.AddMediatR(typeof(CreateCategoryHandler)); + +var app = builder.Build(); + +// Configure the HTTP request pipeline. +if (app.Environment.IsDevelopment()) +{ + app.UseSwagger(); + app.UseSwaggerUI(); + + using var scope = app.Services.CreateScope(); + var db = scope.ServiceProvider.GetRequiredService(); + db.Database.EnsureCreated(); +} + +app.UseAuthorization(); + +app.MapControllers(); + +try +{ + Log.Information("Starting web api host."); + app.Run(); + return 0; +} +catch (Exception ex) +{ + Log.Fatal(ex, "Host terminated unexpectedly."); + return 1; +} +finally +{ + Log.CloseAndFlush(); +} + +public partial class Program(); \ No newline at end of file diff --git a/WebAPIExam/WebAPIExam/Properties/launchSettings.json b/WebAPIExam/WebAPIExam/Properties/launchSettings.json new file mode 100644 index 0000000..e3860c5 --- /dev/null +++ b/WebAPIExam/WebAPIExam/Properties/launchSettings.json @@ -0,0 +1,31 @@ +{ + "$schema": "http://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:54526", + "sslPort": 0 + } + }, + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "http://localhost:5176", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/WebAPIExam/WebAPIExam/WeatherForecast.cs b/WebAPIExam/WebAPIExam/WeatherForecast.cs new file mode 100644 index 0000000..92be7bd --- /dev/null +++ b/WebAPIExam/WebAPIExam/WeatherForecast.cs @@ -0,0 +1,13 @@ +namespace WebAPIExam +{ + public class WeatherForecast + { + public DateOnly Date { get; set; } + + public int TemperatureC { get; set; } + + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); + + public string? Summary { get; set; } + } +} diff --git a/WebAPIExam/WebAPIExam/WebAPIExam.csproj b/WebAPIExam/WebAPIExam/WebAPIExam.csproj new file mode 100644 index 0000000..572909b --- /dev/null +++ b/WebAPIExam/WebAPIExam/WebAPIExam.csproj @@ -0,0 +1,27 @@ + + + + net8.0 + enable + enable + 21b38d8b-f238-48f1-97ab-fd7eb7fd84ea + + + + + + + + + + + + + + + + + + + + diff --git a/WebAPIExam/WebAPIExam/WebAPIExam.csproj.user b/WebAPIExam/WebAPIExam/WebAPIExam.csproj.user new file mode 100644 index 0000000..6b9f46b --- /dev/null +++ b/WebAPIExam/WebAPIExam/WebAPIExam.csproj.user @@ -0,0 +1,7 @@ + + + + ApiControllerWithActionsScaffolder + root/Common/Api + + \ No newline at end of file diff --git a/WebAPIExam/WebAPIExam/WebAPIExam.http b/WebAPIExam/WebAPIExam/WebAPIExam.http new file mode 100644 index 0000000..8e05103 --- /dev/null +++ b/WebAPIExam/WebAPIExam/WebAPIExam.http @@ -0,0 +1,6 @@ +@WebAPIExam_HostAddress = http://localhost:5176 + +GET {{WebAPIExam_HostAddress}}/weatherforecast/ +Accept: application/json + +### diff --git a/WebAPIExam/WebAPIExam/appsettings.Development.json b/WebAPIExam/WebAPIExam/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/WebAPIExam/WebAPIExam/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/WebAPIExam/WebAPIExam/appsettings.json b/WebAPIExam/WebAPIExam/appsettings.json new file mode 100644 index 0000000..a0f7e2f --- /dev/null +++ b/WebAPIExam/WebAPIExam/appsettings.json @@ -0,0 +1,12 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "ConnectionStrings": { + "Sqlite": "" + } +} diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Contracts.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Contracts.dll new file mode 100644 index 0000000..f4e3772 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Contracts.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Contracts.pdb b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Contracts.pdb new file mode 100644 index 0000000..858506a Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Contracts.pdb differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll new file mode 100644 index 0000000..b3c7678 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/DateOnlyTimeOnly.AspNet.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/DateOnlyTimeOnly.AspNet.dll new file mode 100644 index 0000000..87060c5 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/DateOnlyTimeOnly.AspNet.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Entity.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Entity.dll new file mode 100644 index 0000000..33cec7f Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Entity.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Entity.pdb b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Entity.pdb new file mode 100644 index 0000000..ec7d0c0 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Entity.pdb differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/FluentValidation.DependencyInjectionExtensions.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/FluentValidation.DependencyInjectionExtensions.dll new file mode 100644 index 0000000..fd386c3 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/FluentValidation.DependencyInjectionExtensions.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/FluentValidation.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/FluentValidation.dll new file mode 100644 index 0000000..ce036f5 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/FluentValidation.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/MediatR.Contracts.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/MediatR.Contracts.dll new file mode 100644 index 0000000..32bc7c1 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/MediatR.Contracts.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/MediatR.Extensions.Microsoft.DependencyInjection.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/MediatR.Extensions.Microsoft.DependencyInjection.dll new file mode 100644 index 0000000..9aac276 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/MediatR.Extensions.Microsoft.DependencyInjection.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/MediatR.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/MediatR.dll new file mode 100644 index 0000000..b54aa06 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/MediatR.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.Data.Sqlite.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..5415d6f Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.Data.Sqlite.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100644 index 0000000..d80430b Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100644 index 0000000..0d72770 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll new file mode 100644 index 0000000..0147855 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll new file mode 100644 index 0000000..029c06c Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..8a32950 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.OpenApi.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.OpenApi.dll new file mode 100644 index 0000000..14f3ded Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Microsoft.OpenApi.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/SQLitePCLRaw.batteries_v2.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..f9eb46b Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/SQLitePCLRaw.batteries_v2.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/SQLitePCLRaw.core.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..556d40f Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/SQLitePCLRaw.core.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll new file mode 100644 index 0000000..fc5919d Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/SQLitePCLRaw.provider.e_sqlite3.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.AspNetCore.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.AspNetCore.dll new file mode 100644 index 0000000..0220eb1 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.AspNetCore.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Extensions.Hosting.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Extensions.Hosting.dll new file mode 100644 index 0000000..2204d10 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Extensions.Hosting.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Extensions.Logging.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Extensions.Logging.dll new file mode 100644 index 0000000..f2f78c7 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Extensions.Logging.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Formatting.Compact.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Formatting.Compact.dll new file mode 100644 index 0000000..7174b83 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Formatting.Compact.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Settings.Configuration.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Settings.Configuration.dll new file mode 100644 index 0000000..a8ff29d Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Settings.Configuration.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Sinks.Console.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Sinks.Console.dll new file mode 100644 index 0000000..1dcb2d0 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Sinks.Console.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Sinks.Debug.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Sinks.Debug.dll new file mode 100644 index 0000000..2bd024b Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Sinks.Debug.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Sinks.File.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Sinks.File.dll new file mode 100644 index 0000000..29dc2fd Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.Sinks.File.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.dll new file mode 100644 index 0000000..50bdb5a Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Serilog.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Services.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Services.dll new file mode 100644 index 0000000..e14730f Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Services.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Services.pdb b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Services.pdb new file mode 100644 index 0000000..9aa77f3 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Services.pdb differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..e9b8cf7 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..68e38a2 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..9c52aed Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/WebAPIExam.deps.json b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/WebAPIExam.deps.json new file mode 100644 index 0000000..f9a9ff7 --- /dev/null +++ b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/WebAPIExam.deps.json @@ -0,0 +1,956 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "WebAPIExam/1.0.0": { + "dependencies": { + "DateOnlyTimeOnly.AspNet": "2.1.1", + "DateOnlyTimeOnly.AspNet.Swashbuckle": "2.1.1", + "FluentValidation": "11.9.0", + "FluentValidation.DependencyInjectionExtensions": "11.9.0", + "Serilog.AspNetCore": "8.0.1", + "Services": "1.0.0", + "Swashbuckle.AspNetCore": "6.4.0" + }, + "runtime": { + "WebAPIExam.dll": {} + } + }, + "DateOnlyTimeOnly.AspNet/2.1.1": { + "runtime": { + "lib/net7.0/DateOnlyTimeOnly.AspNet.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.0" + } + } + }, + "DateOnlyTimeOnly.AspNet.Swashbuckle/2.1.1": { + "dependencies": { + "DateOnlyTimeOnly.AspNet": "2.1.1", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0" + }, + "runtime": { + "lib/net7.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll": { + "assemblyVersion": "2.1.1.0", + "fileVersion": "2.1.1.0" + } + } + }, + "FluentValidation/11.9.0": { + "runtime": { + "lib/net8.0/FluentValidation.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.9.0.0" + } + } + }, + "FluentValidation.DependencyInjectionExtensions/11.9.0": { + "dependencies": { + "FluentValidation": "11.9.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.9.0.0" + } + } + }, + "MediatR/11.1.0": { + "dependencies": { + "MediatR.Contracts": "2.0.1" + }, + "runtime": { + "lib/netstandard2.1/MediatR.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.1.0.0" + } + } + }, + "MediatR.Contracts/2.0.1": { + "runtime": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "assemblyVersion": "2.0.1.0", + "fileVersion": "2.0.1.0" + } + } + }, + "MediatR.Extensions.Microsoft.DependencyInjection/11.1.0": { + "dependencies": { + "MediatR": "11.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "runtime": { + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": { + "assemblyVersion": "11.0.0.0", + "fileVersion": "11.1.0.0" + } + } + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.3", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.3", + "Microsoft.Extensions.Caching.Memory": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": {}, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.3", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.3", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.3", + "Microsoft.EntityFrameworkCore.Relational": "8.0.3", + "Microsoft.Extensions.DependencyModel": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "assemblyVersion": "8.0.3.0", + "fileVersion": "8.0.324.11510" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": {}, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.23.53103" + } + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "System.Diagnostics.DiagnosticSource": "8.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Hosting.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Primitives/8.0.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Serilog/3.1.1": { + "runtime": { + "lib/net7.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "3.1.1.0" + } + } + }, + "Serilog.AspNetCore/8.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Serilog": "3.1.1", + "Serilog.Extensions.Hosting": "8.0.0", + "Serilog.Extensions.Logging": "8.0.0", + "Serilog.Formatting.Compact": "2.0.0", + "Serilog.Settings.Configuration": "8.0.0", + "Serilog.Sinks.Console": "5.0.0", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "5.0.0" + }, + "runtime": { + "lib/net8.0/Serilog.AspNetCore.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.0" + } + } + }, + "Serilog.Extensions.Hosting/8.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Serilog": "3.1.1", + "Serilog.Extensions.Logging": "8.0.0" + }, + "runtime": { + "lib/net8.0/Serilog.Extensions.Hosting.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "8.0.0.0" + } + } + }, + "Serilog.Extensions.Logging/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "8.0.0", + "Serilog": "3.1.1" + }, + "runtime": { + "lib/net8.0/Serilog.Extensions.Logging.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "8.0.0.0" + } + } + }, + "Serilog.Formatting.Compact/2.0.0": { + "dependencies": { + "Serilog": "3.1.1" + }, + "runtime": { + "lib/net7.0/Serilog.Formatting.Compact.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Serilog.Settings.Configuration/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.DependencyModel": "8.0.0", + "Serilog": "3.1.1" + }, + "runtime": { + "lib/net8.0/Serilog.Settings.Configuration.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.0.0" + } + } + }, + "Serilog.Sinks.Console/5.0.0": { + "dependencies": { + "Serilog": "3.1.1" + }, + "runtime": { + "lib/net7.0/Serilog.Sinks.Console.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "dependencies": { + "Serilog": "3.1.1" + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "3.1.1" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.6", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.6" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.core/2.1.6": { + "dependencies": { + "System.Memory": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": { + "rid": "browser-wasm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "rid": "linux-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "rid": "linux-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "rid": "linux-armel", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "rid": "linux-mips64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "rid": "linux-musl-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "rid": "linux-musl-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "rid": "linux-musl-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "rid": "linux-ppc64le", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "rid": "linux-s390x", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "rid": "linux-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "rid": "linux-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "rid": "maccatalyst-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "rid": "osx-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.1.6.2060", + "fileVersion": "2.1.6.2060" + } + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "System.Diagnostics.DiagnosticSource/8.0.0": {}, + "System.Memory/4.5.3": {}, + "System.Text.Encodings.Web/8.0.0": {}, + "System.Text.Json/8.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "8.0.0" + } + }, + "Contracts/1.0.0": { + "dependencies": { + "MediatR.Contracts": "2.0.1" + }, + "runtime": { + "Contracts.dll": {} + } + }, + "Entity/1.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite": "8.0.3" + }, + "runtime": { + "Entity.dll": {} + } + }, + "Services/1.0.0": { + "dependencies": { + "Contracts": "1.0.0", + "Entity": "1.0.0", + "FluentValidation": "11.9.0", + "FluentValidation.DependencyInjectionExtensions": "11.9.0", + "MediatR": "11.1.0", + "MediatR.Extensions.Microsoft.DependencyInjection": "11.1.0" + }, + "runtime": { + "Services.dll": {} + } + } + } + }, + "libraries": { + "WebAPIExam/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "DateOnlyTimeOnly.AspNet/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7HlGV6sm0efRMquxnZaoqV3KybUMOs1IaJ4TaX85v7IZF01h1YV6Zscos9g4qQfrGYfvqLjbpe3Q54cmMBeISQ==", + "path": "dateonlytimeonly.aspnet/2.1.1", + "hashPath": "dateonlytimeonly.aspnet.2.1.1.nupkg.sha512" + }, + "DateOnlyTimeOnly.AspNet.Swashbuckle/2.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X2k2yelbE2jyBI/pOv5T615ell5Rhmb31MV1mM0Q+VpqNUran20gdGz9MBP9dbAcbH1EQ/l/s/EcX/+Bp365jQ==", + "path": "dateonlytimeonly.aspnet.swashbuckle/2.1.1", + "hashPath": "dateonlytimeonly.aspnet.swashbuckle.2.1.1.nupkg.sha512" + }, + "FluentValidation/11.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VneVlTvwYDkfHV5av3QrQ0amALgrLX6LV94wlYyEsh0B/klJBW7C8y2eAtj5tOZ3jH6CAVpr4s1ZGgew/QWyig==", + "path": "fluentvalidation/11.9.0", + "hashPath": "fluentvalidation.11.9.0.nupkg.sha512" + }, + "FluentValidation.DependencyInjectionExtensions/11.9.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ko++xvN7HUf4WlHJL6bhsybUj/uho8ApOYIdxGjpF8Ot7Fukz6LRfRJ06H0KXhWqmMHWEbu89hJbjKJHtg7b9g==", + "path": "fluentvalidation.dependencyinjectionextensions/11.9.0", + "hashPath": "fluentvalidation.dependencyinjectionextensions.11.9.0.nupkg.sha512" + }, + "MediatR/11.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YIbtrLOyeCuIv8vIuHL/mMdls5xmgS36pIOJDxKZuu55nxA2MI2Z+E/Uk0z+F/LE11AGmpjplOM0NZ91m5LQBA==", + "path": "mediatr/11.1.0", + "hashPath": "mediatr.11.1.0.nupkg.sha512" + }, + "MediatR.Contracts/2.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", + "path": "mediatr.contracts/2.0.1", + "hashPath": "mediatr.contracts.2.0.1.nupkg.sha512" + }, + "MediatR.Extensions.Microsoft.DependencyInjection/11.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RW3etRuy6Xp63cgqfC0r/ITOtUT0f9ymJl1+1XZdzsYUsfv7WBPC2kXGOP8IYpY/6c4Q6805vbIW/88DopUs3w==", + "path": "mediatr.extensions.microsoft.dependencyinjection/11.1.0", + "hashPath": "mediatr.extensions.microsoft.dependencyinjection.11.1.0.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1euU97SivROH7nVIh2c/V63e0nQ73Txr/YlysB7fJuTV8LcfeL9WO1gdiJWcRIDoq8/McxcTc7evY6JJ1pD95w==", + "path": "microsoft.data.sqlite.core/8.0.3", + "hashPath": "microsoft.data.sqlite.core.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QUPQbeq4yCjgIL/6PzkhfwhljXmai3CNOsErWFJ/WJ1Z41V8+At0Bi4PT8/2pX25kPgf83g0CUKIZd0QbeKT4A==", + "path": "microsoft.entityframeworkcore/8.0.3", + "hashPath": "microsoft.entityframeworkcore.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cW+SKdx34wZ25ZVKCpk/6+6z27wrZlQ1qXyx7UWpy34s9CyAojH0QiYlV/2owNOGSAH67rm+LxAjUOicsqlGzQ==", + "path": "microsoft.entityframeworkcore.abstractions/8.0.3", + "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3csRAzz5O5Gn+GQBMyLn26OICtEo2/U2iDDygQhKb3LnC78bAUvutkMqvb0Ek5A6uHrBcZQrKQJfkgfnRT5XZw==", + "path": "microsoft.entityframeworkcore.analyzers/8.0.3", + "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8JnVZHWaNFkrrD/FC0O4jekiHIYey8y6TQ4Co3OzLz0wd5Dm1cwJfTp++1TvaVu0BBd4bVDtiktppa5epuoPrA==", + "path": "microsoft.entityframeworkcore.relational/8.0.3", + "hashPath": "microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mdHNwlJkV71pKJU1MzIbjHWyjLw03S2kCO6mnuZL6V7uDv5ZxncoT5OELUiv7wRAYxnBucrl7ZPT76hwhBKBFw==", + "path": "microsoft.entityframeworkcore.sqlite/8.0.3", + "hashPath": "microsoft.entityframeworkcore.sqlite.8.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6DvYtnLdpViXgA5F2Z/cIJfWIv31Eby5j2YqUzr+sgJulKtCX+ypvmfooXlYnCwJDlcmIaMY27TMnlrCcUvZmA==", + "path": "microsoft.entityframeworkcore.sqlite.core/8.0.3", + "hashPath": "microsoft.entityframeworkcore.sqlite.core.8.0.3.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "path": "microsoft.extensions.caching.memory/8.0.0", + "hashPath": "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==", + "path": "microsoft.extensions.configuration.binder/8.0.0", + "hashPath": "microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", + "path": "microsoft.extensions.dependencymodel/8.0.0", + "hashPath": "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "path": "microsoft.extensions.diagnostics.abstractions/8.0.0", + "hashPath": "microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==", + "path": "microsoft.extensions.fileproviders.abstractions/8.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "path": "microsoft.extensions.hosting.abstractions/8.0.0", + "hashPath": "microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "path": "microsoft.extensions.logging/8.0.0", + "hashPath": "microsoft.extensions.logging.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "path": "microsoft.extensions.logging.abstractions/8.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "path": "microsoft.extensions.options/8.0.0", + "hashPath": "microsoft.extensions.options.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "path": "microsoft.extensions.primitives/8.0.0", + "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Serilog/3.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P6G4/4Kt9bT635bhuwdXlJ2SCqqn2nhh4gqFqQueCOr9bK/e7W9ll/IoX1Ter948cV2Z/5+5v8pAfJYUISY03A==", + "path": "serilog/3.1.1", + "hashPath": "serilog.3.1.1.nupkg.sha512" + }, + "Serilog.AspNetCore/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-B/X+wAfS7yWLVOTD83B+Ip9yl4MkhioaXj90JSoWi1Ayi8XHepEnsBdrkojg08eodCnmOKmShFUN2GgEc6c0CQ==", + "path": "serilog.aspnetcore/8.0.1", + "hashPath": "serilog.aspnetcore.8.0.1.nupkg.sha512" + }, + "Serilog.Extensions.Hosting/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-db0OcbWeSCvYQkHWu6n0v40N4kKaTAXNjlM3BKvcbwvNzYphQFcBR+36eQ/7hMMwOkJvAyLC2a9/jNdUL5NjtQ==", + "path": "serilog.extensions.hosting/8.0.0", + "hashPath": "serilog.extensions.hosting.8.0.0.nupkg.sha512" + }, + "Serilog.Extensions.Logging/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YEAMWu1UnWgf1c1KP85l1SgXGfiVo0Rz6x08pCiPOIBt2Qe18tcZLvdBUuV5o1QHvrs8FAry9wTIhgBRtjIlEg==", + "path": "serilog.extensions.logging/8.0.0", + "hashPath": "serilog.extensions.logging.8.0.0.nupkg.sha512" + }, + "Serilog.Formatting.Compact/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ob6z3ikzFM3D1xalhFuBIK1IOWf+XrQq+H4KeH4VqBcPpNcmUgZlRQ2h3Q7wvthpdZBBoY86qZOI2LCXNaLlNA==", + "path": "serilog.formatting.compact/2.0.0", + "hashPath": "serilog.formatting.compact.2.0.0.nupkg.sha512" + }, + "Serilog.Settings.Configuration/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nR0iL5HwKj5v6ULo3/zpP8NMcq9E2pxYA6XKTSWCbugVs4YqPyvaqaKOY+OMpPivKp7zMEpax2UKHnDodbRB0Q==", + "path": "serilog.settings.configuration/8.0.0", + "hashPath": "serilog.settings.configuration.8.0.0.nupkg.sha512" + }, + "Serilog.Sinks.Console/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IZ6bn79k+3SRXOBpwSOClUHikSkp2toGPCZ0teUkscv4dpDg9E2R2xVsNkLmwddE4OpNVO3N0xiYsAH556vN8Q==", + "path": "serilog.sinks.console/5.0.0", + "hashPath": "serilog.sinks.console.5.0.0.nupkg.sha512" + }, + "Serilog.Sinks.Debug/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==", + "path": "serilog.sinks.debug/2.0.0", + "hashPath": "serilog.sinks.debug.2.0.0.nupkg.sha512" + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "path": "serilog.sinks.file/5.0.0", + "hashPath": "serilog.sinks.file.5.0.0.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==", + "path": "sqlitepclraw.core/2.1.6", + "hashPath": "sqlitepclraw.core.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.6", + "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "path": "swashbuckle.aspnetcore/6.4.0", + "hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==", + "path": "system.diagnostics.diagnosticsource/8.0.0", + "hashPath": "system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512" + }, + "System.Memory/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "path": "system.memory/4.5.3", + "hashPath": "system.memory.4.5.3.nupkg.sha512" + }, + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", + "path": "system.text.encodings.web/8.0.0", + "hashPath": "system.text.encodings.web.8.0.0.nupkg.sha512" + }, + "System.Text.Json/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", + "path": "system.text.json/8.0.0", + "hashPath": "system.text.json.8.0.0.nupkg.sha512" + }, + "Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Entity/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Services/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/WebAPIExam.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/WebAPIExam.dll new file mode 100644 index 0000000..e2bdab2 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/WebAPIExam.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/WebAPIExam.exe b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/WebAPIExam.exe new file mode 100644 index 0000000..3c53396 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/WebAPIExam.exe differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/WebAPIExam.pdb b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/WebAPIExam.pdb new file mode 100644 index 0000000..7e4ea3a Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/WebAPIExam.pdb differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/WebAPIExam.runtimeconfig.json b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/WebAPIExam.runtimeconfig.json new file mode 100644 index 0000000..b8a4a9c --- /dev/null +++ b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/WebAPIExam.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/appsettings.Development.json b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/appsettings.json b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/appsettings.json new file mode 100644 index 0000000..a0f7e2f --- /dev/null +++ b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/appsettings.json @@ -0,0 +1,12 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "ConnectionStrings": { + "Sqlite": "" + } +} diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a new file mode 100644 index 0000000..ace30e6 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-arm/native/libe_sqlite3.so b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..8520492 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-arm/native/libe_sqlite3.so differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..30b84ea Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-arm64/native/libe_sqlite3.so differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-armel/native/libe_sqlite3.so b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-armel/native/libe_sqlite3.so new file mode 100644 index 0000000..48de629 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-armel/native/libe_sqlite3.so differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so new file mode 100644 index 0000000..4f7d693 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-mips64/native/libe_sqlite3.so differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so new file mode 100644 index 0000000..2c9dcda Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-musl-arm/native/libe_sqlite3.so differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so new file mode 100644 index 0000000..53949cf Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-musl-arm64/native/libe_sqlite3.so differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..a043d7d Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-musl-x64/native/libe_sqlite3.so differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so new file mode 100644 index 0000000..3593c9b Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-ppc64le/native/libe_sqlite3.so differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so new file mode 100644 index 0000000..7e01b91 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-s390x/native/libe_sqlite3.so differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-x64/native/libe_sqlite3.so b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-x64/native/libe_sqlite3.so new file mode 100644 index 0000000..a8f9ae0 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-x64/native/libe_sqlite3.so differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-x86/native/libe_sqlite3.so b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-x86/native/libe_sqlite3.so new file mode 100644 index 0000000..f9a9b69 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/linux-x86/native/libe_sqlite3.so differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..e6612c5 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..3ad1142 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/maccatalyst-x64/native/libe_sqlite3.dylib differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..21a8f42 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/osx-arm64/native/libe_sqlite3.dylib differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib new file mode 100644 index 0000000..ffaf82f Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/osx-x64/native/libe_sqlite3.dylib differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/win-arm/native/e_sqlite3.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/win-arm/native/e_sqlite3.dll new file mode 100644 index 0000000..454821f Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/win-arm/native/e_sqlite3.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/win-arm64/native/e_sqlite3.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/win-arm64/native/e_sqlite3.dll new file mode 100644 index 0000000..70805d9 Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/win-arm64/native/e_sqlite3.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/win-x64/native/e_sqlite3.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/win-x64/native/e_sqlite3.dll new file mode 100644 index 0000000..379665c Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/win-x64/native/e_sqlite3.dll differ diff --git a/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/win-x86/native/e_sqlite3.dll b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/win-x86/native/e_sqlite3.dll new file mode 100644 index 0000000..c0e722d Binary files /dev/null and b/WebAPIExam/WebAPIExam/bin/Debug/net8.0/runtimes/win-x86/native/e_sqlite3.dll differ diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.AssemblyInfo.cs b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.AssemblyInfo.cs new file mode 100644 index 0000000..8952e6a --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("21b38d8b-f238-48f1-97ab-fd7eb7fd84ea")] +[assembly: System.Reflection.AssemblyCompanyAttribute("WebAPIExam")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+681184ef29f83f797ad525699016e2067c66a5fb")] +[assembly: System.Reflection.AssemblyProductAttribute("WebAPIExam")] +[assembly: System.Reflection.AssemblyTitleAttribute("WebAPIExam")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.AssemblyInfoInputs.cache b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.AssemblyInfoInputs.cache new file mode 100644 index 0000000..9b5bd63 --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +15e4e471248e5109999f4ba39a7665e64e9c109e63412a428a230231d7055ad9 diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.GeneratedMSBuildEditorConfig.editorconfig b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f8ebe5c --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,19 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WebAPIExam +build_property.RootNamespace = WebAPIExam +build_property.ProjectDir = C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 8.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam +build_property._RazorSourceGeneratorDebug = diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.GlobalUsings.g.cs b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.MvcApplicationPartsAssemblyInfo.cache b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.MvcApplicationPartsAssemblyInfo.cs b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..3fa8105 --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,19 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("DateOnlyTimeOnly.AspNet")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("DateOnlyTimeOnly.AspNet.Swashbuckle")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.assets.cache b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.assets.cache new file mode 100644 index 0000000..84492dd Binary files /dev/null and b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.assets.cache differ diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.csproj.AssemblyReference.cache b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.csproj.AssemblyReference.cache new file mode 100644 index 0000000..138fb71 Binary files /dev/null and b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.csproj.AssemblyReference.cache differ diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.csproj.BuildWithSkipAnalyzers b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.csproj.CoreCompileInputs.cache b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..f7c379c --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +314f672263af041a8fe2c2adc25e592ba0df2fb8ccf17230ed5ce912abf3ec2a diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.csproj.FileListAbsolute.txt b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..3d36f66 --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.csproj.FileListAbsolute.txt @@ -0,0 +1,84 @@ +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\appsettings.Development.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\appsettings.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\WebAPIExam.exe +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\WebAPIExam.deps.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\WebAPIExam.runtimeconfig.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\WebAPIExam.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\WebAPIExam.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\DateOnlyTimeOnly.AspNet.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\DateOnlyTimeOnly.AspNet.Swashbuckle.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\FluentValidation.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\FluentValidation.DependencyInjectionExtensions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\MediatR.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\MediatR.Contracts.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\MediatR.Extensions.Microsoft.DependencyInjection.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Microsoft.Data.Sqlite.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Sqlite.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Microsoft.Extensions.DependencyModel.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Microsoft.OpenApi.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Serilog.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Serilog.AspNetCore.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Serilog.Extensions.Hosting.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Serilog.Extensions.Logging.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Serilog.Formatting.Compact.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Serilog.Settings.Configuration.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Serilog.Sinks.Console.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Serilog.Sinks.Debug.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Serilog.Sinks.File.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\SQLitePCLRaw.batteries_v2.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\SQLitePCLRaw.core.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\SQLitePCLRaw.provider.e_sqlite3.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Swashbuckle.AspNetCore.Swagger.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\browser-wasm\nativeassets\net8.0\e_sqlite3.a +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\linux-arm\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\linux-arm64\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\linux-armel\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\linux-mips64\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\linux-musl-arm\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\linux-ppc64le\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\linux-s390x\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\linux-x64\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\linux-x86\native\libe_sqlite3.so +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\osx-arm64\native\libe_sqlite3.dylib +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\osx-x64\native\libe_sqlite3.dylib +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\win-arm\native\e_sqlite3.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\win-arm64\native\e_sqlite3.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\win-x64\native\e_sqlite3.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\runtimes\win-x86\native\e_sqlite3.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Contracts.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Entity.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Services.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Services.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Contracts.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\bin\Debug\net8.0\Entity.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\WebAPIExam.csproj.AssemblyReference.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\WebAPIExam.GeneratedMSBuildEditorConfig.editorconfig +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\WebAPIExam.AssemblyInfoInputs.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\WebAPIExam.AssemblyInfo.cs +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\WebAPIExam.csproj.CoreCompileInputs.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\WebAPIExam.MvcApplicationPartsAssemblyInfo.cs +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\WebAPIExam.MvcApplicationPartsAssemblyInfo.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\WebAPIExam.sourcelink.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\staticwebassets.build.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\staticwebassets.development.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\staticwebassets\msbuild.WebAPIExam.Microsoft.AspNetCore.StaticWebAssets.props +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\staticwebassets\msbuild.build.WebAPIExam.props +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\staticwebassets\msbuild.buildMultiTargeting.WebAPIExam.props +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\staticwebassets\msbuild.buildTransitive.WebAPIExam.props +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\staticwebassets.pack.json +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\scopedcss\bundle\WebAPIExam.styles.css +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\WebAPIExam.csproj.Up2Date +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\WebAPIExam.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\refint\WebAPIExam.dll +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\WebAPIExam.pdb +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\WebAPIExam.genruntimeconfig.cache +C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\obj\Debug\net8.0\ref\WebAPIExam.dll diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.csproj.Up2Date b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.dll b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.dll new file mode 100644 index 0000000..e2bdab2 Binary files /dev/null and b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.dll differ diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.genruntimeconfig.cache b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.genruntimeconfig.cache new file mode 100644 index 0000000..4de0bef --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.genruntimeconfig.cache @@ -0,0 +1 @@ +39985b18ef1559ef74fd35a5a74ef4f1a1cdabc5a27d5bafcd39987f407576b5 diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.pdb b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.pdb new file mode 100644 index 0000000..7e4ea3a Binary files /dev/null and b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.pdb differ diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.sourcelink.json b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.sourcelink.json new file mode 100644 index 0000000..64b8044 --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/WebAPIExam.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\*":"https://raw.githubusercontent.com/accelist/ExamNETWebAPI/681184ef29f83f797ad525699016e2067c66a5fb/*"}} \ No newline at end of file diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/apphost.exe b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/apphost.exe new file mode 100644 index 0000000..3c53396 Binary files /dev/null and b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/apphost.exe differ diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/ref/WebAPIExam.dll b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/ref/WebAPIExam.dll new file mode 100644 index 0000000..33bd261 Binary files /dev/null and b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/ref/WebAPIExam.dll differ diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/refint/WebAPIExam.dll b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/refint/WebAPIExam.dll new file mode 100644 index 0000000..33bd261 Binary files /dev/null and b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/refint/WebAPIExam.dll differ diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/staticwebassets.build.json b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/staticwebassets.build.json new file mode 100644 index 0000000..f4f96c2 --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/staticwebassets.build.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "mNV6EkhlG51NWdFFF6Q8+przJVWIlhfgXZgBouFpFA8=", + "Source": "WebAPIExam", + "BasePath": "_content/WebAPIExam", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/staticwebassets/msbuild.build.WebAPIExam.props b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/staticwebassets/msbuild.build.WebAPIExam.props new file mode 100644 index 0000000..5a6032a --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/staticwebassets/msbuild.build.WebAPIExam.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.WebAPIExam.props b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.WebAPIExam.props new file mode 100644 index 0000000..9de0f9c --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/staticwebassets/msbuild.buildMultiTargeting.WebAPIExam.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/WebAPIExam/WebAPIExam/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.WebAPIExam.props b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.WebAPIExam.props new file mode 100644 index 0000000..b1cab33 --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Debug/net8.0/staticwebassets/msbuild.buildTransitive.WebAPIExam.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/WebAPIExam/WebAPIExam/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs b/WebAPIExam/WebAPIExam/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs new file mode 100644 index 0000000..2217181 --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Release/net8.0/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v8.0", FrameworkDisplayName = ".NET 8.0")] diff --git a/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.AssemblyInfo.cs b/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.AssemblyInfo.cs new file mode 100644 index 0000000..ace9a1e --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("21b38d8b-f238-48f1-97ab-fd7eb7fd84ea")] +[assembly: System.Reflection.AssemblyCompanyAttribute("WebAPIExam")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+681184ef29f83f797ad525699016e2067c66a5fb")] +[assembly: System.Reflection.AssemblyProductAttribute("WebAPIExam")] +[assembly: System.Reflection.AssemblyTitleAttribute("WebAPIExam")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.AssemblyInfoInputs.cache b/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.AssemblyInfoInputs.cache new file mode 100644 index 0000000..dcabcf5 --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +b098043563d3e225ca40607da5343c0fd1b4e3652a098a3e6b7de748c8f7b831 diff --git a/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.GeneratedMSBuildEditorConfig.editorconfig b/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..f8ebe5c --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,19 @@ +is_global = true +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = WebAPIExam +build_property.RootNamespace = WebAPIExam +build_property.ProjectDir = C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam\ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 8.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Samuel Hans\Working Space\Repo\WebAPIExam\ExamNETWebAPI\WebAPIExam\WebAPIExam +build_property._RazorSourceGeneratorDebug = diff --git a/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.GlobalUsings.g.cs b/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.assets.cache b/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.assets.cache new file mode 100644 index 0000000..94c02aa Binary files /dev/null and b/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.assets.cache differ diff --git a/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.csproj.AssemblyReference.cache b/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.csproj.AssemblyReference.cache new file mode 100644 index 0000000..d0d69bf Binary files /dev/null and b/WebAPIExam/WebAPIExam/obj/Release/net8.0/WebAPIExam.csproj.AssemblyReference.cache differ diff --git a/WebAPIExam/WebAPIExam/obj/WebAPIExam.csproj.nuget.dgspec.json b/WebAPIExam/WebAPIExam/obj/WebAPIExam.csproj.nuget.dgspec.json new file mode 100644 index 0000000..0a55b12 --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/WebAPIExam.csproj.nuget.dgspec.json @@ -0,0 +1,318 @@ +{ + "format": 1, + "restore": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam\\WebAPIExam.csproj": {} + }, + "projects": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj", + "projectName": "Contracts", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "MediatR.Contracts": { + "target": "Package", + "version": "[2.0.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj", + "projectName": "Entity", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite": { + "target": "Package", + "version": "[8.0.3, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj", + "projectName": "Services", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj": { + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Contracts\\Contracts.csproj" + }, + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj": { + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Entity\\Entity.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "FluentValidation": { + "target": "Package", + "version": "[11.9.0, )" + }, + "FluentValidation.DependencyInjectionExtensions": { + "target": "Package", + "version": "[11.9.0, )" + }, + "MediatR": { + "target": "Package", + "version": "[11.1.0, )" + }, + "MediatR.Extensions.Microsoft.DependencyInjection": { + "target": "Package", + "version": "[11.1.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + }, + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam\\WebAPIExam.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam\\WebAPIExam.csproj", + "projectName": "WebAPIExam", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam\\WebAPIExam.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj": { + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "DateOnlyTimeOnly.AspNet": { + "target": "Package", + "version": "[2.1.1, )" + }, + "DateOnlyTimeOnly.AspNet.Swashbuckle": { + "target": "Package", + "version": "[2.1.1, )" + }, + "FluentValidation": { + "target": "Package", + "version": "[11.9.0, )" + }, + "FluentValidation.DependencyInjectionExtensions": { + "target": "Package", + "version": "[11.9.0, )" + }, + "Serilog.AspNetCore": { + "target": "Package", + "version": "[8.0.1, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/WebAPIExam/WebAPIExam/obj/WebAPIExam.csproj.nuget.g.props b/WebAPIExam/WebAPIExam/obj/WebAPIExam.csproj.nuget.g.props new file mode 100644 index 0000000..107090b --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/WebAPIExam.csproj.nuget.g.props @@ -0,0 +1,23 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\hanss\.nuget\packages\ + PackageReference + 6.9.2 + + + + + + + + + + + C:\Users\hanss\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5 + + \ No newline at end of file diff --git a/WebAPIExam/WebAPIExam/obj/WebAPIExam.csproj.nuget.g.targets b/WebAPIExam/WebAPIExam/obj/WebAPIExam.csproj.nuget.g.targets new file mode 100644 index 0000000..bd9443f --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/WebAPIExam.csproj.nuget.g.targets @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/WebAPIExam/WebAPIExam/obj/project.assets.json b/WebAPIExam/WebAPIExam/obj/project.assets.json new file mode 100644 index 0000000..bac4fe0 --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/project.assets.json @@ -0,0 +1,2612 @@ +{ + "version": 3, + "targets": { + "net8.0": { + "DateOnlyTimeOnly.AspNet/2.1.1": { + "type": "package", + "compile": { + "lib/net7.0/DateOnlyTimeOnly.AspNet.dll": {} + }, + "runtime": { + "lib/net7.0/DateOnlyTimeOnly.AspNet.dll": {} + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "DateOnlyTimeOnly.AspNet.Swashbuckle/2.1.1": { + "type": "package", + "dependencies": { + "DateOnlyTimeOnly.AspNet": "2.1.1", + "Swashbuckle.AspNetCore.SwaggerGen": "6.2.3" + }, + "compile": { + "lib/net7.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll": {} + }, + "runtime": { + "lib/net7.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll": {} + } + }, + "FluentValidation/11.9.0": { + "type": "package", + "compile": { + "lib/net8.0/FluentValidation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/FluentValidation.dll": { + "related": ".xml" + } + } + }, + "FluentValidation.DependencyInjectionExtensions/11.9.0": { + "type": "package", + "dependencies": { + "FluentValidation": "11.9.0", + "Microsoft.Extensions.Dependencyinjection.Abstractions": "2.1.0" + }, + "compile": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll": { + "related": ".xml" + } + } + }, + "MediatR/11.1.0": { + "type": "package", + "dependencies": { + "MediatR.Contracts": "1.0.1" + }, + "compile": { + "lib/netstandard2.1/MediatR.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/MediatR.dll": { + "related": ".xml" + } + } + }, + "MediatR.Contracts/2.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/MediatR.Contracts.dll": { + "related": ".xml" + } + } + }, + "MediatR.Extensions.Microsoft.DependencyInjection/11.1.0": { + "type": "package", + "dependencies": { + "MediatR": "[11.0.0, 12.0.0)", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" + }, + "compile": { + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": {} + }, + "runtime": { + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll": {} + } + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "compile": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.3", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.3", + "Microsoft.Extensions.Caching.Memory": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.3", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "8.0.3", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.6" + }, + "compile": { + "lib/net8.0/_._": {} + }, + "runtime": { + "lib/net8.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "8.0.3", + "Microsoft.EntityFrameworkCore.Relational": "8.0.3", + "Microsoft.Extensions.DependencyModel": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "build": { + "build/Microsoft.Extensions.ApiDescription.Server.props": {}, + "build/Microsoft.Extensions.ApiDescription.Server.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {}, + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Binder/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "8.0.0", + "System.Text.Json": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0", + "System.Diagnostics.DiagnosticSource": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Hosting.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "8.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.Extensions.Options": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Serilog/3.1.1": { + "type": "package", + "compile": { + "lib/net7.0/Serilog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Serilog.dll": { + "related": ".xml" + } + } + }, + "Serilog.AspNetCore/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.0", + "Microsoft.Extensions.Logging": "8.0.0", + "Serilog": "3.1.1", + "Serilog.Extensions.Hosting": "8.0.0", + "Serilog.Extensions.Logging": "8.0.0", + "Serilog.Formatting.Compact": "2.0.0", + "Serilog.Settings.Configuration": "8.0.0", + "Serilog.Sinks.Console": "5.0.0", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "5.0.0" + }, + "compile": { + "lib/net8.0/Serilog.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Serilog.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Serilog.Extensions.Hosting/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "8.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Serilog": "3.1.1", + "Serilog.Extensions.Logging": "8.0.0" + }, + "compile": { + "lib/net8.0/Serilog.Extensions.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Serilog.Extensions.Hosting.dll": { + "related": ".xml" + } + } + }, + "Serilog.Extensions.Logging/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging": "8.0.0", + "Serilog": "3.1.1" + }, + "compile": { + "lib/net8.0/Serilog.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Serilog.Extensions.Logging.dll": { + "related": ".xml" + } + } + }, + "Serilog.Formatting.Compact/2.0.0": { + "type": "package", + "dependencies": { + "Serilog": "3.1.0" + }, + "compile": { + "lib/net7.0/Serilog.Formatting.Compact.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Serilog.Formatting.Compact.dll": { + "related": ".xml" + } + } + }, + "Serilog.Settings.Configuration/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Configuration.Binder": "8.0.0", + "Microsoft.Extensions.DependencyModel": "8.0.0", + "Serilog": "3.1.1" + }, + "compile": { + "lib/net8.0/Serilog.Settings.Configuration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Serilog.Settings.Configuration.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Console/5.0.0": { + "type": "package", + "dependencies": { + "Serilog": "3.1.0" + }, + "compile": { + "lib/net7.0/Serilog.Sinks.Console.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Serilog.Sinks.Console.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "related": ".xml" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "type": "package", + "dependencies": { + "Serilog": "2.10.0" + }, + "compile": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "related": ".pdb;.xml" + } + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.6", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.6" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + } + }, + "SQLitePCLRaw.core/2.1.6": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "build": { + "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets": {} + }, + "runtimeTargets": { + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a": { + "assetType": "native", + "rid": "browser-wasm" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm64" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-ppc64le/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-ppc64le" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-s390x" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-arm64" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-x64" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-arm64" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.6" + }, + "compile": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + }, + "build": { + "build/Swashbuckle.AspNetCore.props": {} + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "System.Diagnostics.DiagnosticSource/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Memory/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Text.Encodings.Web/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/8.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "8.0.0" + }, + "compile": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/System.Text.Json.targets": {} + } + }, + "Contracts/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "MediatR.Contracts": "2.0.1" + }, + "compile": { + "bin/placeholder/Contracts.dll": {} + }, + "runtime": { + "bin/placeholder/Contracts.dll": {} + } + }, + "Entity/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite": "8.0.3" + }, + "compile": { + "bin/placeholder/Entity.dll": {} + }, + "runtime": { + "bin/placeholder/Entity.dll": {} + } + }, + "Services/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v8.0", + "dependencies": { + "Contracts": "1.0.0", + "Entity": "1.0.0", + "FluentValidation": "11.9.0", + "FluentValidation.DependencyInjectionExtensions": "11.9.0", + "MediatR": "11.1.0", + "MediatR.Extensions.Microsoft.DependencyInjection": "11.1.0" + }, + "compile": { + "bin/placeholder/Services.dll": {} + }, + "runtime": { + "bin/placeholder/Services.dll": {} + } + } + } + }, + "libraries": { + "DateOnlyTimeOnly.AspNet/2.1.1": { + "sha512": "7HlGV6sm0efRMquxnZaoqV3KybUMOs1IaJ4TaX85v7IZF01h1YV6Zscos9g4qQfrGYfvqLjbpe3Q54cmMBeISQ==", + "type": "package", + "path": "dateonlytimeonly.aspnet/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "dateonlytimeonly.aspnet.2.1.1.nupkg.sha512", + "dateonlytimeonly.aspnet.nuspec", + "lib/net6.0/DateOnlyTimeOnly.AspNet.dll", + "lib/net7.0/DateOnlyTimeOnly.AspNet.dll" + ] + }, + "DateOnlyTimeOnly.AspNet.Swashbuckle/2.1.1": { + "sha512": "X2k2yelbE2jyBI/pOv5T615ell5Rhmb31MV1mM0Q+VpqNUran20gdGz9MBP9dbAcbH1EQ/l/s/EcX/+Bp365jQ==", + "type": "package", + "path": "dateonlytimeonly.aspnet.swashbuckle/2.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "dateonlytimeonly.aspnet.swashbuckle.2.1.1.nupkg.sha512", + "dateonlytimeonly.aspnet.swashbuckle.nuspec", + "lib/net6.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll", + "lib/net7.0/DateOnlyTimeOnly.AspNet.Swashbuckle.dll" + ] + }, + "FluentValidation/11.9.0": { + "sha512": "VneVlTvwYDkfHV5av3QrQ0amALgrLX6LV94wlYyEsh0B/klJBW7C8y2eAtj5tOZ3jH6CAVpr4s1ZGgew/QWyig==", + "type": "package", + "path": "fluentvalidation/11.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.11.9.0.nupkg.sha512", + "fluentvalidation.nuspec", + "lib/net5.0/FluentValidation.dll", + "lib/net5.0/FluentValidation.xml", + "lib/net6.0/FluentValidation.dll", + "lib/net6.0/FluentValidation.xml", + "lib/net7.0/FluentValidation.dll", + "lib/net7.0/FluentValidation.xml", + "lib/net8.0/FluentValidation.dll", + "lib/net8.0/FluentValidation.xml", + "lib/netstandard2.0/FluentValidation.dll", + "lib/netstandard2.0/FluentValidation.xml", + "lib/netstandard2.1/FluentValidation.dll", + "lib/netstandard2.1/FluentValidation.xml" + ] + }, + "FluentValidation.DependencyInjectionExtensions/11.9.0": { + "sha512": "Ko++xvN7HUf4WlHJL6bhsybUj/uho8ApOYIdxGjpF8Ot7Fukz6LRfRJ06H0KXhWqmMHWEbu89hJbjKJHtg7b9g==", + "type": "package", + "path": "fluentvalidation.dependencyinjectionextensions/11.9.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "fluent-validation-icon.png", + "fluentvalidation.dependencyinjectionextensions.11.9.0.nupkg.sha512", + "fluentvalidation.dependencyinjectionextensions.nuspec", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.0/FluentValidation.DependencyInjectionExtensions.xml", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.dll", + "lib/netstandard2.1/FluentValidation.DependencyInjectionExtensions.xml" + ] + }, + "MediatR/11.1.0": { + "sha512": "YIbtrLOyeCuIv8vIuHL/mMdls5xmgS36pIOJDxKZuu55nxA2MI2Z+E/Uk0z+F/LE11AGmpjplOM0NZ91m5LQBA==", + "type": "package", + "path": "mediatr/11.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "gradient_128x128.png", + "lib/netstandard2.1/MediatR.dll", + "lib/netstandard2.1/MediatR.xml", + "mediatr.11.1.0.nupkg.sha512", + "mediatr.nuspec" + ] + }, + "MediatR.Contracts/2.0.1": { + "sha512": "FYv95bNT4UwcNA+G/J1oX5OpRiSUxteXaUt2BJbRSdRNiIUNbggJF69wy6mnk2wYToaanpdXZdCwVylt96MpwQ==", + "type": "package", + "path": "mediatr.contracts/2.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "gradient_128x128.png", + "lib/netstandard2.0/MediatR.Contracts.dll", + "lib/netstandard2.0/MediatR.Contracts.xml", + "mediatr.contracts.2.0.1.nupkg.sha512", + "mediatr.contracts.nuspec" + ] + }, + "MediatR.Extensions.Microsoft.DependencyInjection/11.1.0": { + "sha512": "RW3etRuy6Xp63cgqfC0r/ITOtUT0f9ymJl1+1XZdzsYUsfv7WBPC2kXGOP8IYpY/6c4Q6805vbIW/88DopUs3w==", + "type": "package", + "path": "mediatr.extensions.microsoft.dependencyinjection/11.1.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "gradient_128x128.png", + "lib/netstandard2.1/MediatR.Extensions.Microsoft.DependencyInjection.dll", + "mediatr.extensions.microsoft.dependencyinjection.11.1.0.nupkg.sha512", + "mediatr.extensions.microsoft.dependencyinjection.nuspec" + ] + }, + "Microsoft.Data.Sqlite.Core/8.0.3": { + "sha512": "1euU97SivROH7nVIh2c/V63e0nQ73Txr/YlysB7fJuTV8LcfeL9WO1gdiJWcRIDoq8/McxcTc7evY6JJ1pD95w==", + "type": "package", + "path": "microsoft.data.sqlite.core/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net6.0/Microsoft.Data.Sqlite.dll", + "lib/net6.0/Microsoft.Data.Sqlite.xml", + "lib/net8.0/Microsoft.Data.Sqlite.dll", + "lib/net8.0/Microsoft.Data.Sqlite.xml", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.8.0.3.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore/8.0.3": { + "sha512": "QUPQbeq4yCjgIL/6PzkhfwhljXmai3CNOsErWFJ/WJ1Z41V8+At0Bi4PT8/2pX25kPgf83g0CUKIZd0QbeKT4A==", + "type": "package", + "path": "microsoft.entityframeworkcore/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.3": { + "sha512": "cW+SKdx34wZ25ZVKCpk/6+6z27wrZlQ1qXyx7UWpy34s9CyAojH0QiYlV/2owNOGSAH67rm+LxAjUOicsqlGzQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.3": { + "sha512": "3csRAzz5O5Gn+GQBMyLn26OICtEo2/U2iDDygQhKb3LnC78bAUvutkMqvb0Ek5A6uHrBcZQrKQJfkgfnRT5XZw==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.3": { + "sha512": "8JnVZHWaNFkrrD/FC0O4jekiHIYey8y6TQ4Co3OzLz0wd5Dm1cwJfTp++1TvaVu0BBd4bVDtiktppa5epuoPrA==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite/8.0.3": { + "sha512": "mdHNwlJkV71pKJU1MzIbjHWyjLw03S2kCO6mnuZL6V7uDv5ZxncoT5OELUiv7wRAYxnBucrl7ZPT76hwhBKBFw==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/_._", + "microsoft.entityframeworkcore.sqlite.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.sqlite.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/8.0.3": { + "sha512": "6DvYtnLdpViXgA5F2Z/cIJfWIv31Eby5j2YqUzr+sgJulKtCX+ypvmfooXlYnCwJDlcmIaMY27TMnlrCcUvZmA==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite.core/8.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Sqlite.xml", + "microsoft.entityframeworkcore.sqlite.core.8.0.3.nupkg.sha512", + "microsoft.entityframeworkcore.sqlite.core.nuspec" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "type": "package", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/Microsoft.Extensions.ApiDescription.Server.props", + "build/Microsoft.Extensions.ApiDescription.Server.targets", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", + "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "microsoft.extensions.apidescription.server.nuspec", + "tools/Newtonsoft.Json.dll", + "tools/dotnet-getdocument.deps.json", + "tools/dotnet-getdocument.dll", + "tools/dotnet-getdocument.runtimeconfig.json", + "tools/net461-x86/GetDocument.Insider.exe", + "tools/net461-x86/GetDocument.Insider.exe.config", + "tools/net461-x86/Microsoft.Win32.Primitives.dll", + "tools/net461-x86/System.AppContext.dll", + "tools/net461-x86/System.Buffers.dll", + "tools/net461-x86/System.Collections.Concurrent.dll", + "tools/net461-x86/System.Collections.NonGeneric.dll", + "tools/net461-x86/System.Collections.Specialized.dll", + "tools/net461-x86/System.Collections.dll", + "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll", + "tools/net461-x86/System.ComponentModel.Primitives.dll", + "tools/net461-x86/System.ComponentModel.TypeConverter.dll", + "tools/net461-x86/System.ComponentModel.dll", + "tools/net461-x86/System.Console.dll", + "tools/net461-x86/System.Data.Common.dll", + "tools/net461-x86/System.Diagnostics.Contracts.dll", + "tools/net461-x86/System.Diagnostics.Debug.dll", + "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll", + "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll", + "tools/net461-x86/System.Diagnostics.Process.dll", + "tools/net461-x86/System.Diagnostics.StackTrace.dll", + "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net461-x86/System.Diagnostics.Tools.dll", + "tools/net461-x86/System.Diagnostics.TraceSource.dll", + "tools/net461-x86/System.Diagnostics.Tracing.dll", + "tools/net461-x86/System.Drawing.Primitives.dll", + "tools/net461-x86/System.Dynamic.Runtime.dll", + "tools/net461-x86/System.Globalization.Calendars.dll", + "tools/net461-x86/System.Globalization.Extensions.dll", + "tools/net461-x86/System.Globalization.dll", + "tools/net461-x86/System.IO.Compression.ZipFile.dll", + "tools/net461-x86/System.IO.Compression.dll", + "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll", + "tools/net461-x86/System.IO.FileSystem.Primitives.dll", + "tools/net461-x86/System.IO.FileSystem.Watcher.dll", + "tools/net461-x86/System.IO.FileSystem.dll", + "tools/net461-x86/System.IO.IsolatedStorage.dll", + "tools/net461-x86/System.IO.MemoryMappedFiles.dll", + "tools/net461-x86/System.IO.Pipes.dll", + "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll", + "tools/net461-x86/System.IO.dll", + "tools/net461-x86/System.Linq.Expressions.dll", + "tools/net461-x86/System.Linq.Parallel.dll", + "tools/net461-x86/System.Linq.Queryable.dll", + "tools/net461-x86/System.Linq.dll", + "tools/net461-x86/System.Memory.dll", + "tools/net461-x86/System.Net.Http.dll", + "tools/net461-x86/System.Net.NameResolution.dll", + "tools/net461-x86/System.Net.NetworkInformation.dll", + "tools/net461-x86/System.Net.Ping.dll", + "tools/net461-x86/System.Net.Primitives.dll", + "tools/net461-x86/System.Net.Requests.dll", + "tools/net461-x86/System.Net.Security.dll", + "tools/net461-x86/System.Net.Sockets.dll", + "tools/net461-x86/System.Net.WebHeaderCollection.dll", + "tools/net461-x86/System.Net.WebSockets.Client.dll", + "tools/net461-x86/System.Net.WebSockets.dll", + "tools/net461-x86/System.Numerics.Vectors.dll", + "tools/net461-x86/System.ObjectModel.dll", + "tools/net461-x86/System.Reflection.Extensions.dll", + "tools/net461-x86/System.Reflection.Primitives.dll", + "tools/net461-x86/System.Reflection.dll", + "tools/net461-x86/System.Resources.Reader.dll", + "tools/net461-x86/System.Resources.ResourceManager.dll", + "tools/net461-x86/System.Resources.Writer.dll", + "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll", + "tools/net461-x86/System.Runtime.Extensions.dll", + "tools/net461-x86/System.Runtime.Handles.dll", + "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net461-x86/System.Runtime.InteropServices.dll", + "tools/net461-x86/System.Runtime.Numerics.dll", + "tools/net461-x86/System.Runtime.Serialization.Formatters.dll", + "tools/net461-x86/System.Runtime.Serialization.Json.dll", + "tools/net461-x86/System.Runtime.Serialization.Primitives.dll", + "tools/net461-x86/System.Runtime.Serialization.Xml.dll", + "tools/net461-x86/System.Runtime.dll", + "tools/net461-x86/System.Security.Claims.dll", + "tools/net461-x86/System.Security.Cryptography.Algorithms.dll", + "tools/net461-x86/System.Security.Cryptography.Csp.dll", + "tools/net461-x86/System.Security.Cryptography.Encoding.dll", + "tools/net461-x86/System.Security.Cryptography.Primitives.dll", + "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll", + "tools/net461-x86/System.Security.Principal.dll", + "tools/net461-x86/System.Security.SecureString.dll", + "tools/net461-x86/System.Text.Encoding.Extensions.dll", + "tools/net461-x86/System.Text.Encoding.dll", + "tools/net461-x86/System.Text.RegularExpressions.dll", + "tools/net461-x86/System.Threading.Overlapped.dll", + "tools/net461-x86/System.Threading.Tasks.Parallel.dll", + "tools/net461-x86/System.Threading.Tasks.dll", + "tools/net461-x86/System.Threading.Thread.dll", + "tools/net461-x86/System.Threading.ThreadPool.dll", + "tools/net461-x86/System.Threading.Timer.dll", + "tools/net461-x86/System.Threading.dll", + "tools/net461-x86/System.ValueTuple.dll", + "tools/net461-x86/System.Xml.ReaderWriter.dll", + "tools/net461-x86/System.Xml.XDocument.dll", + "tools/net461-x86/System.Xml.XPath.XDocument.dll", + "tools/net461-x86/System.Xml.XPath.dll", + "tools/net461-x86/System.Xml.XmlDocument.dll", + "tools/net461-x86/System.Xml.XmlSerializer.dll", + "tools/net461-x86/netstandard.dll", + "tools/net461/GetDocument.Insider.exe", + "tools/net461/GetDocument.Insider.exe.config", + "tools/net461/Microsoft.Win32.Primitives.dll", + "tools/net461/System.AppContext.dll", + "tools/net461/System.Buffers.dll", + "tools/net461/System.Collections.Concurrent.dll", + "tools/net461/System.Collections.NonGeneric.dll", + "tools/net461/System.Collections.Specialized.dll", + "tools/net461/System.Collections.dll", + "tools/net461/System.ComponentModel.EventBasedAsync.dll", + "tools/net461/System.ComponentModel.Primitives.dll", + "tools/net461/System.ComponentModel.TypeConverter.dll", + "tools/net461/System.ComponentModel.dll", + "tools/net461/System.Console.dll", + "tools/net461/System.Data.Common.dll", + "tools/net461/System.Diagnostics.Contracts.dll", + "tools/net461/System.Diagnostics.Debug.dll", + "tools/net461/System.Diagnostics.DiagnosticSource.dll", + "tools/net461/System.Diagnostics.FileVersionInfo.dll", + "tools/net461/System.Diagnostics.Process.dll", + "tools/net461/System.Diagnostics.StackTrace.dll", + "tools/net461/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net461/System.Diagnostics.Tools.dll", + "tools/net461/System.Diagnostics.TraceSource.dll", + "tools/net461/System.Diagnostics.Tracing.dll", + "tools/net461/System.Drawing.Primitives.dll", + "tools/net461/System.Dynamic.Runtime.dll", + "tools/net461/System.Globalization.Calendars.dll", + "tools/net461/System.Globalization.Extensions.dll", + "tools/net461/System.Globalization.dll", + "tools/net461/System.IO.Compression.ZipFile.dll", + "tools/net461/System.IO.Compression.dll", + "tools/net461/System.IO.FileSystem.DriveInfo.dll", + "tools/net461/System.IO.FileSystem.Primitives.dll", + "tools/net461/System.IO.FileSystem.Watcher.dll", + "tools/net461/System.IO.FileSystem.dll", + "tools/net461/System.IO.IsolatedStorage.dll", + "tools/net461/System.IO.MemoryMappedFiles.dll", + "tools/net461/System.IO.Pipes.dll", + "tools/net461/System.IO.UnmanagedMemoryStream.dll", + "tools/net461/System.IO.dll", + "tools/net461/System.Linq.Expressions.dll", + "tools/net461/System.Linq.Parallel.dll", + "tools/net461/System.Linq.Queryable.dll", + "tools/net461/System.Linq.dll", + "tools/net461/System.Memory.dll", + "tools/net461/System.Net.Http.dll", + "tools/net461/System.Net.NameResolution.dll", + "tools/net461/System.Net.NetworkInformation.dll", + "tools/net461/System.Net.Ping.dll", + "tools/net461/System.Net.Primitives.dll", + "tools/net461/System.Net.Requests.dll", + "tools/net461/System.Net.Security.dll", + "tools/net461/System.Net.Sockets.dll", + "tools/net461/System.Net.WebHeaderCollection.dll", + "tools/net461/System.Net.WebSockets.Client.dll", + "tools/net461/System.Net.WebSockets.dll", + "tools/net461/System.Numerics.Vectors.dll", + "tools/net461/System.ObjectModel.dll", + "tools/net461/System.Reflection.Extensions.dll", + "tools/net461/System.Reflection.Primitives.dll", + "tools/net461/System.Reflection.dll", + "tools/net461/System.Resources.Reader.dll", + "tools/net461/System.Resources.ResourceManager.dll", + "tools/net461/System.Resources.Writer.dll", + "tools/net461/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net461/System.Runtime.CompilerServices.VisualC.dll", + "tools/net461/System.Runtime.Extensions.dll", + "tools/net461/System.Runtime.Handles.dll", + "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net461/System.Runtime.InteropServices.dll", + "tools/net461/System.Runtime.Numerics.dll", + "tools/net461/System.Runtime.Serialization.Formatters.dll", + "tools/net461/System.Runtime.Serialization.Json.dll", + "tools/net461/System.Runtime.Serialization.Primitives.dll", + "tools/net461/System.Runtime.Serialization.Xml.dll", + "tools/net461/System.Runtime.dll", + "tools/net461/System.Security.Claims.dll", + "tools/net461/System.Security.Cryptography.Algorithms.dll", + "tools/net461/System.Security.Cryptography.Csp.dll", + "tools/net461/System.Security.Cryptography.Encoding.dll", + "tools/net461/System.Security.Cryptography.Primitives.dll", + "tools/net461/System.Security.Cryptography.X509Certificates.dll", + "tools/net461/System.Security.Principal.dll", + "tools/net461/System.Security.SecureString.dll", + "tools/net461/System.Text.Encoding.Extensions.dll", + "tools/net461/System.Text.Encoding.dll", + "tools/net461/System.Text.RegularExpressions.dll", + "tools/net461/System.Threading.Overlapped.dll", + "tools/net461/System.Threading.Tasks.Parallel.dll", + "tools/net461/System.Threading.Tasks.dll", + "tools/net461/System.Threading.Thread.dll", + "tools/net461/System.Threading.ThreadPool.dll", + "tools/net461/System.Threading.Timer.dll", + "tools/net461/System.Threading.dll", + "tools/net461/System.ValueTuple.dll", + "tools/net461/System.Xml.ReaderWriter.dll", + "tools/net461/System.Xml.XDocument.dll", + "tools/net461/System.Xml.XPath.XDocument.dll", + "tools/net461/System.Xml.XPath.dll", + "tools/net461/System.Xml.XmlDocument.dll", + "tools/net461/System.Xml.XmlSerializer.dll", + "tools/net461/netstandard.dll", + "tools/netcoreapp2.1/GetDocument.Insider.deps.json", + "tools/netcoreapp2.1/GetDocument.Insider.dll", + "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json", + "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/8.0.0": { + "sha512": "7pqivmrZDzo1ADPkRwjy+8jtRKWRCPag9qPI+p7sgu7Q4QreWhcvbiWXsbhP+yY8XSiDvZpu2/LWdBv7PnmOpQ==", + "type": "package", + "path": "microsoft.extensions.caching.memory/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Binder/8.0.0": { + "sha512": "mBMoXLsr5s1y2zOHWmKsE9veDcx8h1x/c3rz4baEdQKTeDcmQAPNbB54Pi/lhFO3K431eEq6PFbMgLaa6PHFfA==", + "type": "package", + "path": "microsoft.extensions.configuration.binder/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.dll", + "analyzers/dotnet/cs/cs/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.Extensions.Configuration.Binder.SourceGeneration.resources.dll", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Configuration.Binder.targets", + "lib/net462/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net462/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Binder.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Binder.xml", + "microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.binder.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/8.0.0": { + "sha512": "V8S3bsm50ig6JSyrbcJJ8bW2b9QLGouz+G1miK3UTaOWmMtFwNNNzUf4AleyDWUmTrWMLNnFSLEQtxmxgNQnNQ==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.0": { + "sha512": "cjWrLkJXK0rs4zofsK4bSdg+jhDLTaxrkXu4gS6Y7MAlCvRyNNgwY/lJi5RDlQOnSZweHqoyvgvbdvQsRIW+hg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/8.0.0": { + "sha512": "NSmDw3K0ozNDgShSIpsZcbFIzBX4w28nDag+TfaQujkXGazBm+lid5onlWoCBy4VsLxqnnKjEBbGSJVWJMf43g==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Diagnostics.Abstractions/8.0.0": { + "sha512": "JHYCQG7HmugNYUhOl368g+NMxYE/N/AiclCYRNlgCY9eVyiBkOHMwK4x60RYMxv9EL3+rmj1mqHvdCiPpC+D4Q==", + "type": "package", + "path": "microsoft.extensions.diagnostics.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Diagnostics.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Diagnostics.Abstractions.xml", + "microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.diagnostics.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.FileProviders.Abstractions/8.0.0": { + "sha512": "ZbaMlhJlpisjuWbvXr4LdAst/1XxH3vZ6A0BsgTphZ2L4PGuxRLz7Jr/S7mkAAnOn78Vu0fKhEgNF5JO3zfjqQ==", + "type": "package", + "path": "microsoft.extensions.fileproviders.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.FileProviders.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.FileProviders.Abstractions.targets", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net462/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.FileProviders.Abstractions.xml", + "microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.fileproviders.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Hosting.Abstractions/8.0.0": { + "sha512": "AG7HWwVRdCHlaA++1oKDxLsXIBxmDpMPb3VoyOoAghEWnkUvEAdYQUwnV4jJbAaa/nMYNiEh5ByoLauZBEiovg==", + "type": "package", + "path": "microsoft.extensions.hosting.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Hosting.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Hosting.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Hosting.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.Hosting.Abstractions.xml", + "microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.hosting.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/8.0.0": { + "sha512": "tvRkov9tAJ3xP51LCv3FJ2zINmv1P8Hi8lhhtcKGqM+ImiTCC84uOPEI4z8Cdq2C3o9e+Aa0Gw0rmrsJD77W+w==", + "type": "package", + "path": "microsoft.extensions.logging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.0": { + "sha512": "arDBqTgFCyS0EvRV7O3MZturChstm50OJ0y9bDJvAcmEPJm0FFpFyjU/JLYyStNGGey081DvnQYlncNX5SJJGA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/8.0.0": { + "sha512": "JOVOfqpnqlVLUzINQ2fox8evY2SKLYJ3BV8QDe/Jyp21u1T7r45x/R/5QdteURMR5r01GxeJSBBUOCOyaNXA3g==", + "type": "package", + "path": "microsoft.extensions.options/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.8.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "type": "package", + "path": "microsoft.extensions.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.OpenApi/1.2.3": { + "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "type": "package", + "path": "microsoft.openapi/1.2.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net46/Microsoft.OpenApi.dll", + "lib/net46/Microsoft.OpenApi.pdb", + "lib/net46/Microsoft.OpenApi.xml", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.1.2.3.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Serilog/3.1.1": { + "sha512": "P6G4/4Kt9bT635bhuwdXlJ2SCqqn2nhh4gqFqQueCOr9bK/e7W9ll/IoX1Ter948cV2Z/5+5v8pAfJYUISY03A==", + "type": "package", + "path": "serilog/3.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.dll", + "lib/net462/Serilog.xml", + "lib/net471/Serilog.dll", + "lib/net471/Serilog.xml", + "lib/net5.0/Serilog.dll", + "lib/net5.0/Serilog.xml", + "lib/net6.0/Serilog.dll", + "lib/net6.0/Serilog.xml", + "lib/net7.0/Serilog.dll", + "lib/net7.0/Serilog.xml", + "lib/netstandard2.0/Serilog.dll", + "lib/netstandard2.0/Serilog.xml", + "lib/netstandard2.1/Serilog.dll", + "lib/netstandard2.1/Serilog.xml", + "serilog.3.1.1.nupkg.sha512", + "serilog.nuspec" + ] + }, + "Serilog.AspNetCore/8.0.1": { + "sha512": "B/X+wAfS7yWLVOTD83B+Ip9yl4MkhioaXj90JSoWi1Ayi8XHepEnsBdrkojg08eodCnmOKmShFUN2GgEc6c0CQ==", + "type": "package", + "path": "serilog.aspnetcore/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.AspNetCore.dll", + "lib/net462/Serilog.AspNetCore.xml", + "lib/net6.0/Serilog.AspNetCore.dll", + "lib/net6.0/Serilog.AspNetCore.xml", + "lib/net7.0/Serilog.AspNetCore.dll", + "lib/net7.0/Serilog.AspNetCore.xml", + "lib/net8.0/Serilog.AspNetCore.dll", + "lib/net8.0/Serilog.AspNetCore.xml", + "lib/netstandard2.0/Serilog.AspNetCore.dll", + "lib/netstandard2.0/Serilog.AspNetCore.xml", + "serilog.aspnetcore.8.0.1.nupkg.sha512", + "serilog.aspnetcore.nuspec" + ] + }, + "Serilog.Extensions.Hosting/8.0.0": { + "sha512": "db0OcbWeSCvYQkHWu6n0v40N4kKaTAXNjlM3BKvcbwvNzYphQFcBR+36eQ/7hMMwOkJvAyLC2a9/jNdUL5NjtQ==", + "type": "package", + "path": "serilog.extensions.hosting/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.Extensions.Hosting.dll", + "lib/net462/Serilog.Extensions.Hosting.xml", + "lib/net6.0/Serilog.Extensions.Hosting.dll", + "lib/net6.0/Serilog.Extensions.Hosting.xml", + "lib/net7.0/Serilog.Extensions.Hosting.dll", + "lib/net7.0/Serilog.Extensions.Hosting.xml", + "lib/net8.0/Serilog.Extensions.Hosting.dll", + "lib/net8.0/Serilog.Extensions.Hosting.xml", + "lib/netstandard2.0/Serilog.Extensions.Hosting.dll", + "lib/netstandard2.0/Serilog.Extensions.Hosting.xml", + "serilog.extensions.hosting.8.0.0.nupkg.sha512", + "serilog.extensions.hosting.nuspec" + ] + }, + "Serilog.Extensions.Logging/8.0.0": { + "sha512": "YEAMWu1UnWgf1c1KP85l1SgXGfiVo0Rz6x08pCiPOIBt2Qe18tcZLvdBUuV5o1QHvrs8FAry9wTIhgBRtjIlEg==", + "type": "package", + "path": "serilog.extensions.logging/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Serilog.Extensions.Logging.dll", + "lib/net462/Serilog.Extensions.Logging.xml", + "lib/net6.0/Serilog.Extensions.Logging.dll", + "lib/net6.0/Serilog.Extensions.Logging.xml", + "lib/net7.0/Serilog.Extensions.Logging.dll", + "lib/net7.0/Serilog.Extensions.Logging.xml", + "lib/net8.0/Serilog.Extensions.Logging.dll", + "lib/net8.0/Serilog.Extensions.Logging.xml", + "lib/netstandard2.0/Serilog.Extensions.Logging.dll", + "lib/netstandard2.0/Serilog.Extensions.Logging.xml", + "lib/netstandard2.1/Serilog.Extensions.Logging.dll", + "lib/netstandard2.1/Serilog.Extensions.Logging.xml", + "serilog-extension-nuget.png", + "serilog.extensions.logging.8.0.0.nupkg.sha512", + "serilog.extensions.logging.nuspec" + ] + }, + "Serilog.Formatting.Compact/2.0.0": { + "sha512": "ob6z3ikzFM3D1xalhFuBIK1IOWf+XrQq+H4KeH4VqBcPpNcmUgZlRQ2h3Q7wvthpdZBBoY86qZOI2LCXNaLlNA==", + "type": "package", + "path": "serilog.formatting.compact/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Serilog.Formatting.Compact.dll", + "lib/net462/Serilog.Formatting.Compact.xml", + "lib/net471/Serilog.Formatting.Compact.dll", + "lib/net471/Serilog.Formatting.Compact.xml", + "lib/net6.0/Serilog.Formatting.Compact.dll", + "lib/net6.0/Serilog.Formatting.Compact.xml", + "lib/net7.0/Serilog.Formatting.Compact.dll", + "lib/net7.0/Serilog.Formatting.Compact.xml", + "lib/netstandard2.0/Serilog.Formatting.Compact.dll", + "lib/netstandard2.0/Serilog.Formatting.Compact.xml", + "lib/netstandard2.1/Serilog.Formatting.Compact.dll", + "lib/netstandard2.1/Serilog.Formatting.Compact.xml", + "serilog-extension-nuget.png", + "serilog.formatting.compact.2.0.0.nupkg.sha512", + "serilog.formatting.compact.nuspec" + ] + }, + "Serilog.Settings.Configuration/8.0.0": { + "sha512": "nR0iL5HwKj5v6ULo3/zpP8NMcq9E2pxYA6XKTSWCbugVs4YqPyvaqaKOY+OMpPivKp7zMEpax2UKHnDodbRB0Q==", + "type": "package", + "path": "serilog.settings.configuration/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.Settings.Configuration.dll", + "lib/net462/Serilog.Settings.Configuration.xml", + "lib/net6.0/Serilog.Settings.Configuration.dll", + "lib/net6.0/Serilog.Settings.Configuration.xml", + "lib/net7.0/Serilog.Settings.Configuration.dll", + "lib/net7.0/Serilog.Settings.Configuration.xml", + "lib/net8.0/Serilog.Settings.Configuration.dll", + "lib/net8.0/Serilog.Settings.Configuration.xml", + "lib/netstandard2.0/Serilog.Settings.Configuration.dll", + "lib/netstandard2.0/Serilog.Settings.Configuration.xml", + "serilog.settings.configuration.8.0.0.nupkg.sha512", + "serilog.settings.configuration.nuspec" + ] + }, + "Serilog.Sinks.Console/5.0.0": { + "sha512": "IZ6bn79k+3SRXOBpwSOClUHikSkp2toGPCZ0teUkscv4dpDg9E2R2xVsNkLmwddE4OpNVO3N0xiYsAH556vN8Q==", + "type": "package", + "path": "serilog.sinks.console/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net462/Serilog.Sinks.Console.dll", + "lib/net462/Serilog.Sinks.Console.xml", + "lib/net471/Serilog.Sinks.Console.dll", + "lib/net471/Serilog.Sinks.Console.xml", + "lib/net5.0/Serilog.Sinks.Console.dll", + "lib/net5.0/Serilog.Sinks.Console.xml", + "lib/net6.0/Serilog.Sinks.Console.dll", + "lib/net6.0/Serilog.Sinks.Console.xml", + "lib/net7.0/Serilog.Sinks.Console.dll", + "lib/net7.0/Serilog.Sinks.Console.xml", + "lib/netstandard2.0/Serilog.Sinks.Console.dll", + "lib/netstandard2.0/Serilog.Sinks.Console.xml", + "lib/netstandard2.1/Serilog.Sinks.Console.dll", + "lib/netstandard2.1/Serilog.Sinks.Console.xml", + "serilog.sinks.console.5.0.0.nupkg.sha512", + "serilog.sinks.console.nuspec" + ] + }, + "Serilog.Sinks.Debug/2.0.0": { + "sha512": "Y6g3OBJ4JzTyyw16fDqtFcQ41qQAydnEvEqmXjhwhgjsnG/FaJ8GUqF5ldsC/bVkK8KYmqrPhDO+tm4dF6xx4A==", + "type": "package", + "path": "serilog.sinks.debug/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "icon.png", + "lib/net45/Serilog.Sinks.Debug.dll", + "lib/net45/Serilog.Sinks.Debug.xml", + "lib/net46/Serilog.Sinks.Debug.dll", + "lib/net46/Serilog.Sinks.Debug.xml", + "lib/netstandard1.0/Serilog.Sinks.Debug.dll", + "lib/netstandard1.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.0/Serilog.Sinks.Debug.dll", + "lib/netstandard2.0/Serilog.Sinks.Debug.xml", + "lib/netstandard2.1/Serilog.Sinks.Debug.dll", + "lib/netstandard2.1/Serilog.Sinks.Debug.xml", + "serilog.sinks.debug.2.0.0.nupkg.sha512", + "serilog.sinks.debug.nuspec" + ] + }, + "Serilog.Sinks.File/5.0.0": { + "sha512": "uwV5hdhWPwUH1szhO8PJpFiahqXmzPzJT/sOijH/kFgUx+cyoDTMM8MHD0adw9+Iem6itoibbUXHYslzXsLEAg==", + "type": "package", + "path": "serilog.sinks.file/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "images/icon.png", + "lib/net45/Serilog.Sinks.File.dll", + "lib/net45/Serilog.Sinks.File.pdb", + "lib/net45/Serilog.Sinks.File.xml", + "lib/net5.0/Serilog.Sinks.File.dll", + "lib/net5.0/Serilog.Sinks.File.pdb", + "lib/net5.0/Serilog.Sinks.File.xml", + "lib/netstandard1.3/Serilog.Sinks.File.dll", + "lib/netstandard1.3/Serilog.Sinks.File.pdb", + "lib/netstandard1.3/Serilog.Sinks.File.xml", + "lib/netstandard2.0/Serilog.Sinks.File.dll", + "lib/netstandard2.0/Serilog.Sinks.File.pdb", + "lib/netstandard2.0/Serilog.Sinks.File.xml", + "lib/netstandard2.1/Serilog.Sinks.File.dll", + "lib/netstandard2.1/Serilog.Sinks.File.pdb", + "lib/netstandard2.1/Serilog.Sinks.File.xml", + "serilog.sinks.file.5.0.0.nupkg.sha512", + "serilog.sinks.file.nuspec" + ] + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.6": { + "sha512": "BmAf6XWt4TqtowmiWe4/5rRot6GerAeklmOPfviOvwLoF5WwgxcJHAxZtySuyW9r9w+HLILnm8VfJFLCUJYW8A==", + "type": "package", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid90/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.xml", + "lib/net6.0-ios14.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-ios14.2/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-tvos10.0/SQLitePCLRaw.batteries_v2.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "lib/xamarinios10/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.1.6": { + "sha512": "wO6v9GeMx9CUngAet8hbO7xdm+M42p1XeJq47ogyRoYSvNSp0NGLI+MgC0bhrMk9C17MTVFlLiN6ylyExLCc5w==", + "type": "package", + "path": "sqlitepclraw.core/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.1.6.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.6": { + "sha512": "2ObJJLkIUIxRpOUlZNGuD4rICpBnrBR5anjyfUFQep4hMOIeqW+XGQYzrNmHSVz5xSWZ3klSbh7sFR6UyDj68Q==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "buildTransitive/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net8.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net7.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net8.0/e_sqlite3.a", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-arm/native/libe_sqlite3.so", + "runtimes/linux-musl-arm64/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-ppc64le/native/libe_sqlite3.so", + "runtimes/linux-s390x/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib", + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib", + "runtimes/osx-arm64/native/libe_sqlite3.dylib", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.6": { + "sha512": "PQ2Oq3yepLY4P7ll145P3xtx2bX8xF4PzaKPRpw9jZlKvfe4LE/saAV82inND9usn1XRpmxXk7Lal3MTI+6CNg==", + "type": "package", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.6", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512", + "sqlitepclraw.provider.e_sqlite3.nuspec" + ] + }, + "Swashbuckle.AspNetCore/6.4.0": { + "sha512": "eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "type": "package", + "path": "swashbuckle.aspnetcore/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Swashbuckle.AspNetCore.props", + "swashbuckle.aspnetcore.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "sha512": "nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", + "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "sha512": "lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "sha512": "1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.nuspec" + ] + }, + "System.Diagnostics.DiagnosticSource/8.0.0": { + "sha512": "c9xLpVz6PL9lp/djOWtk5KPDZq3cSYpmXoJQY524EOtuFl5z9ZtsotpsyrDW40U1DRnQSYvcPKEUV0X//u6gkQ==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "lib/net462/System.Diagnostics.DiagnosticSource.dll", + "lib/net462/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net7.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net7.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net8.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net8.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Memory/4.5.3": { + "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "type": "package", + "path": "system.memory/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.3.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encodings.Web/8.0.0": { + "sha512": "yev/k9GHAEGx2Rg3/tU6MQh4HGBXJs70y7j1LaM1i/ER9po+6nnQ6RRqTJn1E7Xu0fbIFK80Nh5EoODxrbxwBQ==", + "type": "package", + "path": "system.text.encodings.web/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/net7.0/System.Text.Encodings.Web.dll", + "lib/net7.0/System.Text.Encodings.Web.xml", + "lib/net8.0/System.Text.Encodings.Web.dll", + "lib/net8.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net8.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.8.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/8.0.0": { + "sha512": "OdrZO2WjkiEG6ajEFRABTRCi/wuXQPxeV6g8xvUJqdxMvvuCCEk86zPla8UiIQJz3durtUEbNyY/3lIhS0yZvQ==", + "type": "package", + "path": "system.text.json/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net6.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/net7.0/System.Text.Json.dll", + "lib/net7.0/System.Text.Json.xml", + "lib/net8.0/System.Text.Json.dll", + "lib/net8.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.8.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Contracts/1.0.0": { + "type": "project", + "path": "../Contracts/Contracts.csproj", + "msbuildProject": "../Contracts/Contracts.csproj" + }, + "Entity/1.0.0": { + "type": "project", + "path": "../Entity/Entity.csproj", + "msbuildProject": "../Entity/Entity.csproj" + }, + "Services/1.0.0": { + "type": "project", + "path": "../Services/Services.csproj", + "msbuildProject": "../Services/Services.csproj" + } + }, + "projectFileDependencyGroups": { + "net8.0": [ + "DateOnlyTimeOnly.AspNet >= 2.1.1", + "DateOnlyTimeOnly.AspNet.Swashbuckle >= 2.1.1", + "FluentValidation >= 11.9.0", + "FluentValidation.DependencyInjectionExtensions >= 11.9.0", + "Serilog.AspNetCore >= 8.0.1", + "Services >= 1.0.0", + "Swashbuckle.AspNetCore >= 6.4.0" + ] + }, + "packageFolders": { + "C:\\Users\\hanss\\.nuget\\packages\\": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam\\WebAPIExam.csproj", + "projectName": "WebAPIExam", + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam\\WebAPIExam.csproj", + "packagesPath": "C:\\Users\\hanss\\.nuget\\packages\\", + "outputPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam\\obj\\", + "projectStyle": "PackageReference", + "configFilePaths": [ + "C:\\Users\\hanss\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net8.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "projectReferences": { + "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj": { + "projectPath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\Services\\Services.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + } + }, + "frameworks": { + "net8.0": { + "targetAlias": "net8.0", + "dependencies": { + "DateOnlyTimeOnly.AspNet": { + "target": "Package", + "version": "[2.1.1, )" + }, + "DateOnlyTimeOnly.AspNet.Swashbuckle": { + "target": "Package", + "version": "[2.1.1, )" + }, + "FluentValidation": { + "target": "Package", + "version": "[11.9.0, )" + }, + "FluentValidation.DependencyInjectionExtensions": { + "target": "Package", + "version": "[11.9.0, )" + }, + "Serilog.AspNetCore": { + "target": "Package", + "version": "[8.0.1, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\8.0.202/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/WebAPIExam/WebAPIExam/obj/project.nuget.cache b/WebAPIExam/WebAPIExam/obj/project.nuget.cache new file mode 100644 index 0000000..b8bc801 --- /dev/null +++ b/WebAPIExam/WebAPIExam/obj/project.nuget.cache @@ -0,0 +1,60 @@ +{ + "version": 2, + "dgSpecHash": "b+dm6F8zNGAz3ExNMHpThNEGQ8r8IxkVKiPTRw/RrwTB5d/GcuXVhGddmyb3GO6THrBtSB2b9Sblnqou+qLLcw==", + "success": true, + "projectFilePath": "C:\\Samuel Hans\\Working Space\\Repo\\WebAPIExam\\ExamNETWebAPI\\WebAPIExam\\WebAPIExam\\WebAPIExam.csproj", + "expectedPackageFiles": [ + "C:\\Users\\hanss\\.nuget\\packages\\dateonlytimeonly.aspnet\\2.1.1\\dateonlytimeonly.aspnet.2.1.1.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\dateonlytimeonly.aspnet.swashbuckle\\2.1.1\\dateonlytimeonly.aspnet.swashbuckle.2.1.1.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\fluentvalidation\\11.9.0\\fluentvalidation.11.9.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\fluentvalidation.dependencyinjectionextensions\\11.9.0\\fluentvalidation.dependencyinjectionextensions.11.9.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\mediatr\\11.1.0\\mediatr.11.1.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\mediatr.contracts\\2.0.1\\mediatr.contracts.2.0.1.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\mediatr.extensions.microsoft.dependencyinjection\\11.1.0\\mediatr.extensions.microsoft.dependencyinjection.11.1.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.data.sqlite.core\\8.0.3\\microsoft.data.sqlite.core.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.3\\microsoft.entityframeworkcore.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.3\\microsoft.entityframeworkcore.abstractions.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.3\\microsoft.entityframeworkcore.analyzers.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.3\\microsoft.entityframeworkcore.relational.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite\\8.0.3\\microsoft.entityframeworkcore.sqlite.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite.core\\8.0.3\\microsoft.entityframeworkcore.sqlite.core.8.0.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.0\\microsoft.extensions.caching.memory.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.configuration.binder\\8.0.0\\microsoft.extensions.configuration.binder.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.0\\microsoft.extensions.dependencyinjection.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.0\\microsoft.extensions.dependencyinjection.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.0\\microsoft.extensions.dependencymodel.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.diagnostics.abstractions\\8.0.0\\microsoft.extensions.diagnostics.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\8.0.0\\microsoft.extensions.fileproviders.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\8.0.0\\microsoft.extensions.hosting.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.logging\\8.0.0\\microsoft.extensions.logging.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.0\\microsoft.extensions.logging.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.options\\8.0.0\\microsoft.extensions.options.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog\\3.1.1\\serilog.3.1.1.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog.aspnetcore\\8.0.1\\serilog.aspnetcore.8.0.1.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog.extensions.hosting\\8.0.0\\serilog.extensions.hosting.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog.extensions.logging\\8.0.0\\serilog.extensions.logging.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog.formatting.compact\\2.0.0\\serilog.formatting.compact.2.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog.settings.configuration\\8.0.0\\serilog.settings.configuration.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog.sinks.console\\5.0.0\\serilog.sinks.console.5.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog.sinks.debug\\2.0.0\\serilog.sinks.debug.2.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\serilog.sinks.file\\5.0.0\\serilog.sinks.file.5.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.6\\sqlitepclraw.bundle_e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\sqlitepclraw.core\\2.1.6\\sqlitepclraw.core.2.1.6.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.6\\sqlitepclraw.lib.e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.6\\sqlitepclraw.provider.e_sqlite3.2.1.6.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\swashbuckle.aspnetcore\\6.4.0\\swashbuckle.aspnetcore.6.4.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.4.0\\swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.4.0\\swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.4.0\\swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\system.diagnostics.diagnosticsource\\8.0.0\\system.diagnostics.diagnosticsource.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\system.text.encodings.web\\8.0.0\\system.text.encodings.web.8.0.0.nupkg.sha512", + "C:\\Users\\hanss\\.nuget\\packages\\system.text.json\\8.0.0\\system.text.json.8.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file