diff --git a/.vs/BMA.EHR.Recruit.Service/DesignTimeBuild/.dtbcache.v2 b/.vs/BMA.EHR.Recruit.Service/DesignTimeBuild/.dtbcache.v2 index d37fcff..6f3db9a 100644 Binary files a/.vs/BMA.EHR.Recruit.Service/DesignTimeBuild/.dtbcache.v2 and b/.vs/BMA.EHR.Recruit.Service/DesignTimeBuild/.dtbcache.v2 differ diff --git a/.vs/BMA.EHR.Recruit.Service/v17/.futdcache.v2 b/.vs/BMA.EHR.Recruit.Service/v17/.futdcache.v2 index 4d5081f..b49956c 100644 Binary files a/.vs/BMA.EHR.Recruit.Service/v17/.futdcache.v2 and b/.vs/BMA.EHR.Recruit.Service/v17/.futdcache.v2 differ diff --git a/BMA.EHR.Recruit.Service.csproj b/BMA.EHR.Recruit.Service.csproj index cde6d16..d2ebf6a 100644 --- a/BMA.EHR.Recruit.Service.csproj +++ b/BMA.EHR.Recruit.Service.csproj @@ -38,6 +38,7 @@ + diff --git a/BMA.EHR.Recruit.Service.csproj.user b/BMA.EHR.Recruit.Service.csproj.user index c404400..96e63d6 100644 --- a/BMA.EHR.Recruit.Service.csproj.user +++ b/BMA.EHR.Recruit.Service.csproj.user @@ -1,9 +1,9 @@ - - - - https - - - ProjectDebugger - + + + + https + + + ProjectDebugger + \ No newline at end of file diff --git a/Core/DateTimeFixConverter.cs b/Core/DateTimeFixConverter.cs new file mode 100644 index 0000000..60c8af6 --- /dev/null +++ b/Core/DateTimeFixConverter.cs @@ -0,0 +1,25 @@ +using System.Text.Json; +using System.Text.Json.Serialization; + +namespace BMA.EHR.Recruit.Service.Core +{ + public class DateTimeFixConverter : JsonConverter + { + public override DateTime Read(ref Utf8JsonReader reader, Type typeToConvert, JsonSerializerOptions options) + { + if (reader.TokenType == JsonTokenType.String) + { + if (DateTime.TryParse(reader.GetString(), out var date)) + { + return date; + } + } + throw new JsonException("Invalid date format."); + } + + public override void Write(Utf8JsonWriter writer, DateTime value, JsonSerializerOptions options) + { + writer.WriteStringValue(value.ToString("yyyy-MM-dd")); + } + } +} diff --git a/Core/RequestLoggingMiddleware.cs b/Core/RequestLoggingMiddleware.cs new file mode 100644 index 0000000..fe87828 --- /dev/null +++ b/Core/RequestLoggingMiddleware.cs @@ -0,0 +1,272 @@ +using Microsoft.AspNetCore.Http; +using Microsoft.Extensions.Configuration; +using Nest; +using Newtonsoft.Json; +using System.Diagnostics; +using System.Net.Http.Headers; +using System.Security.Claims; +using System.Text.Encodings.Web; +using System.Text.Json; +using JsonSerializer = System.Text.Json.JsonSerializer; + +namespace BMA.EHR.Recruit.Service.Core +{ + public class RequestLoggingMiddleware + { + private readonly RequestDelegate _next; + private readonly IConfiguration _configuration; + + private string Uri = ""; + private string IndexFormat = ""; + private string SystemName = ""; + private string APIKey = ""; + + public RequestLoggingMiddleware(RequestDelegate next, IConfiguration configuration) + { + _next = next; + _configuration = configuration; + + Uri = _configuration["ElasticConfiguration:Uri"] ?? "http://192.168.1.40:9200"; + IndexFormat = _configuration["ElasticConfiguration:IndexFormat"] ?? "bma-ehr-log-index"; + SystemName = _configuration["ElasticConfiguration:SystemName"] ?? "Unknown"; + } + + protected async Task GetExternalAPIAsync(string apiPath, string accessToken, string apiKey) + { + try + { + using (var client = new HttpClient()) + { + client.DefaultRequestHeaders.Authorization = new AuthenticationHeaderValue("Bearer", accessToken.Replace("Bearer ", "")); + client.DefaultRequestHeaders.Add("api_key", apiKey); + var _res = await client.GetAsync(apiPath); + if (_res.IsSuccessStatusCode) + { + var _result = await _res.Content.ReadAsStringAsync(); + + return _result; + } + return string.Empty; + } + } + catch + { + throw; + } + } + + public async Task GetProfileByKeycloakIdAsync(Guid keycloakId, string? accessToken) + { + try + { + var apiPath = $"{_configuration["API"]}/org/dotnet/keycloak/{keycloakId}"; + var apiKey = _configuration["API_KEY"]; + + var apiResult = await GetExternalAPIAsync(apiPath, accessToken ?? "", apiKey); + if (apiResult != null) + { + var raw = JsonConvert.DeserializeObject(apiResult); + if (raw != null) + return raw.Result; + } + + return null; + } + catch + { + throw; + } + } + + public async Task Invoke(HttpContext context) + { + var settings = new ConnectionSettings(new Uri(Uri)) + .DefaultIndex(IndexFormat); + + var client = new ElasticClient(settings); + + + var startTime = DateTime.UtcNow; + var stopwatch = Stopwatch.StartNew(); + string? responseBodyJson = null; + string? requestBodyJson = null; + + string requestBody = await ReadRequestBodyAsync(context); + if (requestBody != "") + { + if (context.Request.HasFormContentType) + { + var form = await context.Request.ReadFormAsync(); // อ่าน form-data + + var formData = new Dictionary(); + foreach (var field in form) + { + formData[field.Key] = field.Value.ToString(); + } + // อ่านไฟล์ที่ถูกส่งมา (ถ้ามี) + if (form.Files.Count > 0) + { + var fileDataList = new List(); + + foreach (var file in form.Files) + { + fileDataList.Add(new + { + FileName = file.FileName, + ContentType = file.ContentType, + Size = file.Length + }); + } + + formData["Files"] = fileDataList; + } + + requestBodyJson = JsonSerializer.Serialize(formData, new JsonSerializerOptions { Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping, WriteIndented = true, Converters = { new DateTimeFixConverter() } }); + } + else + { + requestBodyJson = JsonSerializer.Serialize(JsonSerializer.Deserialize(requestBody), new JsonSerializerOptions { Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping, WriteIndented = true, Converters = { new DateTimeFixConverter() } }); + } + } + + + + + var originalBodyStream = context.Response.Body; + + + using (var memoryStream = new MemoryStream()) + { + // เปลี่ยน stream ของ Response เพื่อให้สามารถอ่านได้ + context.Response.Body = memoryStream; + + + + var keycloakId = context.User?.FindFirst(ClaimTypes.NameIdentifier)?.Value ?? Guid.Empty.ToString("D"); + var token = context.Request.Headers["Authorization"]; + + var pf = await GetProfileByKeycloakIdAsync(Guid.Parse(keycloakId), token); + + await _next(context); // ดำเนินการต่อไปยัง Middleware อื่น ๆ + + stopwatch.Stop(); + var processTime = stopwatch.ElapsedMilliseconds; + var endTime = DateTime.UtcNow; + + var logType = context.Response.StatusCode switch + { + >= 500 => "error", + >= 400 => "warning", + _ => "info" + }; + + string? message = null; + + // อ่านข้อมูลจาก Response หลังจากที่ได้ถูกส่งออกไป + memoryStream.Seek(0, SeekOrigin.Begin); + var responseBody = new StreamReader(memoryStream).ReadToEnd(); + if (responseBody != "") + responseBodyJson = JsonSerializer.Serialize(JsonSerializer.Deserialize(responseBody), new JsonSerializerOptions { Encoder = JavaScriptEncoder.UnsafeRelaxedJsonEscaping, WriteIndented = true, Converters = { new DateTimeFixConverter() } }); + + var json = JsonSerializer.Deserialize(responseBody); + if(json.ValueKind == JsonValueKind.Array) + { + message = "success"; + } + else + { + if (json.TryGetProperty("message", out var messageElement)) + { + message = messageElement.GetString(); + } + } + + + var logData = new + { + logType = logType, + ip = context.Connection.RemoteIpAddress?.ToString(), + rootId = pf == null ? null : pf.RootId, + systemName = SystemName, + startTimeStamp = startTime.ToString("o"), + endTimeStamp = endTime.ToString("o"), + processTime = processTime, + host = context.Request.Host.Value, + method = context.Request.Method, + endpoint = context.Request.Path + context.Request.QueryString, + responseCode = context.Response.StatusCode == 304 ? "200" : context.Response.StatusCode.ToString(), + responseDescription = message, + input = requestBodyJson, + output = responseBodyJson, + + userId = keycloakId, + userName = $"{pf?.Prefix ?? ""}{pf?.FirstName ?? ""} {pf?.LastName ?? ""}", + user = pf?.CitizenId ?? "" + + }; + + // เขียนข้อมูลกลับไปยัง original Response body + memoryStream.Seek(0, SeekOrigin.Begin); + await memoryStream.CopyToAsync(originalBodyStream); + + client.IndexDocument(logData); + + } + + + //Log.Information("API Request Log: {@LogData}", logData); + } + + private async Task ReadRequestBodyAsync(HttpContext context) + { + context.Request.EnableBuffering(); + using var reader = new StreamReader(context.Request.Body, leaveOpen: true); + var body = await reader.ReadToEndAsync(); + context.Request.Body.Position = 0; + return body; + } + } + + public class GetProfileByKeycloakIdLocal + { + public Guid Id { get; set; } + + public string? Prefix { get; set; } + public string? FirstName { get; set; } + public string? LastName { get; set; } + public string? CitizenId { get; set; } + + public string? Root { get; set; } + public string? Child1 { get; set; } + public string? Child2 { get; set; } + public string? Child3 { get; set; } + public string? Child4 { get; set; } + public Guid? RootId { get; set; } + public Guid? Child1Id { get; set; } + public Guid? Child2Id { get; set; } + public Guid? Child3Id { get; set; } + public Guid? Child4Id { get; set; } + public Guid? RootDnaId { get; set; } + public Guid? Child1DnaId { get; set; } + public Guid? Child2DnaId { get; set; } + public Guid? Child3DnaId { get; set; } + public Guid? Child4DnaId { get; set; } + public double? Amount { get; set; } + public double? PositionSalaryAmount { get; set; } + public string? Commander { get; set; } + + public Guid? CommanderId { get; set; } + + public Guid? CommanderKeycloak { get; set; } + + } + + public class GetProfileByKeycloakIdResultLocal + { + public string Message { get; set; } = string.Empty; + + public int Status { get; set; } = -1; + + public GetProfileByKeycloakIdLocal? Result { get; set; } + } +} diff --git a/Program.cs b/Program.cs index 3d9ca76..03d40d2 100644 --- a/Program.cs +++ b/Program.cs @@ -1,22 +1,23 @@ -using Microsoft.AspNetCore.Mvc.Versioning; -using Microsoft.AspNetCore.Mvc; -using Microsoft.IdentityModel.Logging; -using Microsoft.AspNetCore.Authentication.JwtBearer; -using Microsoft.IdentityModel.Tokens; -using System.Text; -using Serilog.Sinks.Elasticsearch; -using Serilog; -using System.Reflection; -using Serilog.Exceptions; -using Microsoft.EntityFrameworkCore; -using MongoDB.Bson.Serialization.Serializers; -using MongoDB.Bson.Serialization; -using MongoDB.Bson; -using BMA.EHR.Recruit.Service.Data; using BMA.EHR.Recruit.Service; -using Microsoft.AspNetCore.Mvc.ApiExplorer; +using BMA.EHR.Recruit.Service.Core; +using BMA.EHR.Recruit.Service.Data; using BMA.EHR.Recruit.Service.Services; using BMA.EHR.Recurit.Service.Data; +using Microsoft.AspNetCore.Authentication.JwtBearer; +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.ApiExplorer; +using Microsoft.AspNetCore.Mvc.Versioning; +using Microsoft.EntityFrameworkCore; +using Microsoft.IdentityModel.Logging; +using Microsoft.IdentityModel.Tokens; +using MongoDB.Bson; +using MongoDB.Bson.Serialization; +using MongoDB.Bson.Serialization.Serializers; +using Serilog; +using Serilog.Exceptions; +using Serilog.Sinks.Elasticsearch; +using System.Reflection; +using System.Text; var builder = WebApplication.CreateBuilder(args); var issuer = builder.Configuration["Jwt:Issuer"]; @@ -67,8 +68,8 @@ builder.Services.AddTransient(); builder.Services.AddTransient(); // use serilog -ConfigureLogs(); -builder.Host.UseSerilog(); +//ConfigureLogs(); +//builder.Host.UseSerilog(); BsonSerializer.RegisterSerializer(new GuidSerializer(BsonType.String)); BsonSerializer.RegisterSerializer(new DateTimeSerializer(BsonType.String)); @@ -136,6 +137,8 @@ app.UseDefaultFiles(); app.UseStaticFiles(); app.MapControllers(); +app.UseMiddleware(); + // apply migrations await using var scope = app.Services.CreateAsyncScope(); await using var db = scope.ServiceProvider.GetRequiredService(); diff --git a/appsettings.Development.json b/appsettings.Development.json index bb4ce46..d86fcd2 100644 --- a/appsettings.Development.json +++ b/appsettings.Development.json @@ -7,32 +7,5 @@ "System": "Warning" } } - }, - "ElasticConfiguration": { - "Uri": "http://localhost:9200" - }, - "AllowedHosts": "*", - "ConnectionStrings": { - "MongoConnection": "mongodb://admin:adminVM123@127.0.0.1:27017", - "DefaultConnection": "server=192.168.1.80;user=root;password=adminVM123;port=3306;database=bma_ehr_demo;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;", - "OrgConnection": "server=192.168.1.80;user=root;password=adminVM123;port=3306;database=bma_ehr_organization_demo;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;", - "RecruitConnection": "server=192.168.1.80;user=root;password=adminVM123;database=bma_recruit_demo;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;" - }, - "Jwt": { - "Key": "HP-FnQMUj9msHMSD3T9HtdEnphAKoCJLEl85CIqROFI", - "Issuer": "https://id.frappet.synology.me/realms/bma-ehr" - }, - "EPPlus": { - "ExcelPackage": { - "LicenseContext": "NonCommercial" - } - }, - "MinIO": { - "Endpoint": "https://edm-s3.frappet.synology.me/", - "AccessKey": "XxtdnJajPjp3hHuKdOMn", - "SecretKey": "rVPzB05giC7bA400cUuIThzT4T9SGCcpcmL3tBBg", - "BucketName": "bma-ehr-fpt" - }, - "API": "https://bma-ehr.frappet.synology.me/api/v1", - "API_KEY": "fKRL16yyEgbyTEJdsMw2h64tGSCmkW685PRtM3CygzX1JOSdptT9UJtpgWwKM8FybRTJups3GTFwj27ZRvlPdIkv3XgCoVJaD5LmR06ozuEPvCCRSdp2WFthg08V5xHc56fTPfZLpr1VmXrhd6dvYhHIqKkQUJR02Rlkss11cLRWEQOssEFVA4xdu2J5DIRO1EM5m7wRRvEwcDB4mYRXD9HH52SMq6iYqUWEWsMwLdbk7QW9yYESUEuzMW5gWrb6vIeWZxJV5bTz1PcWUyR7eO9Fyw1F5DiQYc9JgzTC1mW7cv31fEtTtrfbJYKIb5EbWilqIEUKC6A0UKBDDek35ML0006cqRVm0pvdOH6jeq7VQyYrhdXe59dBEyhYGUIfozoVBvW7Up4QBuOMjyPjSqJPlMBKwaseptfrblxQV1AOOivSBpf1ZcQyOZ8JktRtKUDSuXsmG0lsXwFlI3JCeSHdpVdgZWFYcJPegqfrB6KotR02t9AVkpLs1ZWrixwz" + } } \ No newline at end of file diff --git a/appsettings.json b/appsettings.json index bb4ce46..643072d 100644 --- a/appsettings.json +++ b/appsettings.json @@ -9,18 +9,20 @@ } }, "ElasticConfiguration": { - "Uri": "http://localhost:9200" + "Uri": "http://192.168.1.40:9200", + "IndexFormat": "bma-ehr-log-index", + "SystemName": "recruiting" }, "AllowedHosts": "*", "ConnectionStrings": { "MongoConnection": "mongodb://admin:adminVM123@127.0.0.1:27017", - "DefaultConnection": "server=192.168.1.80;user=root;password=adminVM123;port=3306;database=bma_ehr_demo;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;", - "OrgConnection": "server=192.168.1.80;user=root;password=adminVM123;port=3306;database=bma_ehr_organization_demo;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;", - "RecruitConnection": "server=192.168.1.80;user=root;password=adminVM123;database=bma_recruit_demo;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;" + "DefaultConnection": "server=192.168.1.80;user=root;password=adminVM123;port=3306;database=hrms;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;", + "OrgConnection": "server=192.168.1.80;user=root;password=adminVM123;port=3306;database=hrms_organization;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;", + "RecruitConnection": "server=192.168.1.80;user=root;password=adminVM123;database=hrms_recruit;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;" }, "Jwt": { "Key": "HP-FnQMUj9msHMSD3T9HtdEnphAKoCJLEl85CIqROFI", - "Issuer": "https://id.frappet.synology.me/realms/bma-ehr" + "Issuer": "https://id.frappet.synology.me/realms/hrms" }, "EPPlus": { "ExcelPackage": { diff --git a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json index 8f3eee3..d446fbf 100644 --- a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json +++ b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json @@ -1,4851 +1,4870 @@ -{ - "runtimeTarget": { - "name": ".NETCoreApp,Version=v7.0", - "signature": "" - }, - "compilationOptions": {}, - "targets": { - ".NETCoreApp,Version=v7.0": { - "BMA.EHR.Recruit.Service/1.0.0": { - "dependencies": { - "AWSSDK.S3": "3.7.103.35", - "CoreAdmin": "2.7.0", - "EPPlus": "6.1.3", - "Microsoft.AspNetCore.Authentication.JwtBearer": "7.0.3", - "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "7.0.3", - "Microsoft.AspNetCore.Mvc.Versioning": "5.0.0", - "Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer": "5.0.0", - "Microsoft.AspNetCore.OpenApi": "7.0.3", - "Microsoft.EntityFrameworkCore": "7.0.3", - "Microsoft.EntityFrameworkCore.SqlServer": "7.0.3", - "Microsoft.EntityFrameworkCore.Tools": "7.0.3", - "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": "1.17.0", - "MongoDB.Driver": "2.19.0", - "MongoDB.Driver.GridFS": "2.19.0", - "Newtonsoft.Json": "13.0.3", - "Pomelo.EntityFrameworkCore.MySql": "7.0.0", - "Pomelo.EntityFrameworkCore.MySql.Design": "1.1.2", - "Sentry.AspNetCore": "3.29.1", - "Serilog.AspNetCore": "6.1.0", - "Serilog.Enrichers.Environment": "2.2.0", - "Serilog.Exceptions": "8.4.0", - "Serilog.Sinks.Console": "4.1.0", - "Serilog.Sinks.Debug": "2.0.0", - "Serilog.Sinks.Elasticsearch": "9.0.0", - "Swashbuckle.AspNetCore": "6.5.0", - "Swashbuckle.AspNetCore.Annotations": "6.5.0", - "WatchDog.NET": "1.4.6", - "runtime.osx.10.10-x64.CoreCompat.System.Drawing": "6.0.5.128" - }, - "runtime": { - "BMA.EHR.Recruit.Service.dll": {} - } - }, - "AWSSDK.Core/3.7.106.5": { - "runtime": { - "lib/netcoreapp3.1/AWSSDK.Core.dll": { - "assemblyVersion": "3.3.0.0", - "fileVersion": "3.7.106.5" - } - } - }, - "AWSSDK.S3/3.7.103.35": { - "dependencies": { - "AWSSDK.Core": "3.7.106.5" - }, - "runtime": { - "lib/netcoreapp3.1/AWSSDK.S3.dll": { - "assemblyVersion": "3.3.0.0", - "fileVersion": "3.7.103.35" - } - } - }, - "AWSSDK.SecurityToken/3.7.100.14": { - "dependencies": { - "AWSSDK.Core": "3.7.106.5" - }, - "runtime": { - "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll": { - "assemblyVersion": "3.3.0.0", - "fileVersion": "3.7.100.14" - } - } - }, - "Azure.Core/1.24.0": { - "dependencies": { - "Microsoft.Bcl.AsyncInterfaces": "1.1.1", - "System.Diagnostics.DiagnosticSource": "6.0.0", - "System.Memory.Data": "1.0.2", - "System.Numerics.Vectors": "4.5.0", - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/net5.0/Azure.Core.dll": { - "assemblyVersion": "1.24.0.0", - "fileVersion": "1.2400.22.20404" - } - } - }, - "Azure.Identity/1.6.0": { - "dependencies": { - "Azure.Core": "1.24.0", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.Identity.Client.Extensions.Msal": "2.19.3", - "System.Memory": "4.5.4", - "System.Security.Cryptography.ProtectedData": "5.0.0", - "System.Text.Json": "7.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/Azure.Identity.dll": { - "assemblyVersion": "1.6.0.0", - "fileVersion": "1.600.22.20503" - } - } - }, - "BouncyCastle.NetCore/1.8.5": { - "runtime": { - "lib/netstandard2.0/BouncyCastle.Crypto.dll": { - "assemblyVersion": "1.8.5.0", - "fileVersion": "1.8.19031.1" - } - } - }, - "CoreAdmin/2.7.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "7.0.3", - "NonFactors.Grid.Core.Mvc6": "7.1.0" - }, - "runtime": { - "lib/net7.0/DotNetEd.CoreAdmin.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Dapper/2.0.123": { - "runtime": { - "lib/net5.0/Dapper.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.123.33578" - } - } - }, - "DnsClient/1.6.1": { - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0" - }, - "runtime": { - "lib/net5.0/DnsClient.dll": { - "assemblyVersion": "1.6.1.0", - "fileVersion": "1.6.1.0" - } - } - }, - "Elasticsearch.Net/7.17.5": { - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "System.Buffers": "4.5.1", - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/Elasticsearch.Net.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.17.5.0" - } - } - }, - "EPPlus/6.1.3": { - "dependencies": { - "EPPlus.Interfaces": "6.1.1", - "EPPlus.System.Drawing": "6.1.1", - "Microsoft.Extensions.Configuration.Json": "7.0.0", - "Microsoft.IO.RecyclableMemoryStream": "2.2.1", - "System.Security.Cryptography.Pkcs": "7.0.0", - "System.Text.Encoding.CodePages": "7.0.0" - }, - "runtime": { - "lib/net7.0/EPPlus.dll": { - "assemblyVersion": "6.1.3.0", - "fileVersion": "6.1.3.0" - } - } - }, - "EPPlus.Interfaces/6.1.1": { - "runtime": { - "lib/net7.0/EPPlus.Interfaces.dll": { - "assemblyVersion": "6.1.1.0", - "fileVersion": "6.1.1.0" - } - } - }, - "EPPlus.System.Drawing/6.1.1": { - "dependencies": { - "EPPlus.Interfaces": "6.1.1", - "System.Drawing.Common": "7.0.0" - }, - "runtime": { - "lib/net7.0/EPPlus.System.Drawing.dll": { - "assemblyVersion": "6.1.1.0", - "fileVersion": "6.1.1.0" - } - } - }, - "Google.Protobuf/3.19.4": { - "runtime": { - "lib/net5.0/Google.Protobuf.dll": { - "assemblyVersion": "3.19.4.0", - "fileVersion": "3.19.4.0" - } - } - }, - "Humanizer.Core/2.14.1": { - "runtime": { - "lib/net6.0/Humanizer.dll": { - "assemblyVersion": "2.14.0.0", - "fileVersion": "2.14.1.48190" - } - } - }, - "K4os.Compression.LZ4/1.2.6": { - "dependencies": { - "System.Memory": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/K4os.Compression.LZ4.dll": { - "assemblyVersion": "1.2.6.0", - "fileVersion": "1.2.6.0" - } - } - }, - "K4os.Compression.LZ4.Streams/1.2.6": { - "dependencies": { - "K4os.Compression.LZ4": "1.2.6", - "K4os.Hash.xxHash": "1.0.6" - }, - "runtime": { - "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { - "assemblyVersion": "1.2.6.0", - "fileVersion": "1.2.6.0" - } - } - }, - "K4os.Hash.xxHash/1.0.6": { - "dependencies": { - "System.Memory": "4.5.4" - }, - "runtime": { - "lib/netstandard2.0/K4os.Hash.xxHash.dll": { - "assemblyVersion": "1.0.6.0", - "fileVersion": "1.0.6.0" - } - } - }, - "LiteDB/5.0.11": { - "runtime": { - "lib/netstandard2.0/LiteDB.dll": { - "assemblyVersion": "5.0.11.0", - "fileVersion": "5.0.11.0" - } - } - }, - "Microsoft.AspNetCore.Antiforgery/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.DataProtection": "2.2.0", - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.AspNetCore.WebUtilities": "2.2.0", - "Microsoft.Extensions.ObjectPool": "2.2.0" - } - }, - "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0" - } - }, - "Microsoft.AspNetCore.Authentication.Core/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.2", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0" - } - }, - "Microsoft.AspNetCore.Authentication.JwtBearer/7.0.3": { - "dependencies": { - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.21.0" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { - "assemblyVersion": "7.0.3.0", - "fileVersion": "7.0.323.8009" - } - } - }, - "Microsoft.AspNetCore.Authorization/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0" - } - }, - "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Authorization": "2.2.0" - } - }, - "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Features": "2.2.0", - "System.IO.Pipelines": "4.5.2" - } - }, - "Microsoft.AspNetCore.Cors/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0" - } - }, - "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": {}, - "Microsoft.AspNetCore.DataProtection/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Cryptography.Internal": "2.2.0", - "Microsoft.AspNetCore.DataProtection.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0", - "Microsoft.Win32.Registry": "5.0.0", - "System.Security.Cryptography.Xml": "4.5.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": {}, - "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": {}, - "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.Hosting.Abstractions": "3.1.8" - } - }, - "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Features": "2.2.0", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" - } - }, - "Microsoft.AspNetCore.Html.Abstractions/2.2.0": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0" - } - }, - "Microsoft.AspNetCore.Http/2.2.2": { - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.AspNetCore.WebUtilities": "2.2.0", - "Microsoft.Extensions.ObjectPool": "2.2.0", - "Microsoft.Extensions.Options": "7.0.0", - "Microsoft.Net.Http.Headers": "2.2.0" - } - }, - "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Features": "2.2.0", - "System.Text.Encodings.Web": "7.0.0" - } - }, - "Microsoft.AspNetCore.Http.Connections/1.1.0": { - "dependencies": { - "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.2", - "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0", - "Microsoft.AspNetCore.Routing": "2.2.0", - "Microsoft.AspNetCore.WebSockets": "2.2.0", - "Newtonsoft.Json": "13.0.3", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { - "dependencies": { - "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", - "Newtonsoft.Json": "13.0.3", - "System.Buffers": "4.5.1" - } - }, - "Microsoft.AspNetCore.Http.Extensions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", - "Microsoft.Net.Http.Headers": "2.2.0", - "System.Buffers": "4.5.1" - } - }, - "Microsoft.AspNetCore.Http.Features/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.AspNetCore.JsonPatch/7.0.3": { - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll": { - "assemblyVersion": "7.0.3.0", - "fileVersion": "7.0.323.8009" - } - } - }, - "Microsoft.AspNetCore.Localization/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Localization.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0" - } - }, - "Microsoft.AspNetCore.Mvc/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Mvc.Analyzers": "2.2.0", - "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.2.0", - "Microsoft.AspNetCore.Mvc.Cors": "2.2.0", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.2.0", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.2.0", - "Microsoft.AspNetCore.Mvc.Localization": "2.2.0", - "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.2.0", - "Microsoft.AspNetCore.Mvc.RazorPages": "2.2.0", - "Microsoft.AspNetCore.Mvc.TagHelpers": "2.2.0", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.2.0", - "Microsoft.AspNetCore.Razor.Design": "2.2.0", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "Microsoft.Extensions.DependencyInjection": "7.0.0" - } - }, - "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", - "Microsoft.Net.Http.Headers": "2.2.0" - } - }, - "Microsoft.AspNetCore.Mvc.Analyzers/2.2.0": {}, - "Microsoft.AspNetCore.Mvc.ApiExplorer/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Mvc.Core": "2.2.0" - } - }, - "Microsoft.AspNetCore.Mvc.Core/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Authentication.Core": "2.2.0", - "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http": "2.2.2", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0", - "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Routing": "2.2.0", - "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.DependencyModel": "7.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0", - "System.Threading.Tasks.Extensions": "4.5.4" - } - }, - "Microsoft.AspNetCore.Mvc.Cors/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Cors": "2.2.0", - "Microsoft.AspNetCore.Mvc.Core": "2.2.0" - } - }, - "Microsoft.AspNetCore.Mvc.DataAnnotations/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Mvc.Core": "2.2.0", - "Microsoft.Extensions.Localization": "2.2.0", - "System.ComponentModel.Annotations": "4.5.0" - } - }, - "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "7.0.3", - "Microsoft.AspNetCore.Mvc.Core": "2.2.0" - } - }, - "Microsoft.AspNetCore.Mvc.Localization/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Localization": "2.2.0", - "Microsoft.AspNetCore.Mvc.Razor": "2.2.0", - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.Localization": "2.2.0" - } - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.3": { - "dependencies": { - "Microsoft.AspNetCore.JsonPatch": "7.0.3", - "Newtonsoft.Json": "13.0.3", - "Newtonsoft.Json.Bson": "1.0.2" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { - "assemblyVersion": "7.0.3.0", - "fileVersion": "7.0.323.8009" - } - } - }, - "Microsoft.AspNetCore.Mvc.Razor/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.2.0", - "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.2.0", - "Microsoft.AspNetCore.Razor.Runtime": "2.2.0", - "Microsoft.CodeAnalysis.CSharp": "2.8.0", - "Microsoft.CodeAnalysis.Razor": "2.2.0", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "Microsoft.Extensions.FileProviders.Composite": "2.2.0" - } - }, - "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "2.2.0", - "Microsoft.CodeAnalysis.Razor": "2.2.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Mvc.RazorPages/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Mvc.Razor": "2.2.0" - } - }, - "Microsoft.AspNetCore.Mvc.TagHelpers/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Mvc.Razor": "2.2.0", - "Microsoft.AspNetCore.Razor.Runtime": "2.2.0", - "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.AspNetCore.Mvc.Versioning/5.0.0": { - "runtime": { - "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.7710.5690" - } - } - }, - "Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer/5.0.0": { - "dependencies": { - "Microsoft.AspNetCore.Mvc.Versioning": "5.0.0" - }, - "runtime": { - "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.7710.5714" - } - } - }, - "Microsoft.AspNetCore.Mvc.ViewFeatures/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Antiforgery": "2.2.0", - "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Html.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Mvc.Core": "2.2.0", - "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.2.0", - "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.2.0", - "Microsoft.Extensions.WebEncoders": "2.2.0", - "Newtonsoft.Json.Bson": "1.0.2" - } - }, - "Microsoft.AspNetCore.OpenApi/7.0.3": { - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "runtime": { - "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { - "assemblyVersion": "7.0.3.0", - "fileVersion": "7.0.323.8009" - } - } - }, - "Microsoft.AspNetCore.Razor/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Html.Abstractions": "2.2.0" - } - }, - "Microsoft.AspNetCore.Razor.Design/2.2.0": {}, - "Microsoft.AspNetCore.Razor.Language/2.2.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.AspNetCore.Razor.Runtime/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Html.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Razor": "2.2.0" - } - }, - "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.AspNetCore.Routing/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.ObjectPool": "2.2.0", - "Microsoft.Extensions.Options": "7.0.0" - } - }, - "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" - } - }, - "Microsoft.AspNetCore.SignalR/1.1.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Connections": "1.1.0", - "Microsoft.AspNetCore.SignalR.Core": "1.1.0" - } - }, - "Microsoft.AspNetCore.SignalR.Common/1.1.0": { - "dependencies": { - "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", - "Microsoft.Extensions.Options": "7.0.0", - "Newtonsoft.Json": "13.0.3", - "System.Buffers": "4.5.1" - } - }, - "Microsoft.AspNetCore.SignalR.Core/1.1.0": { - "dependencies": { - "Microsoft.AspNetCore.Authorization": "2.2.0", - "Microsoft.AspNetCore.SignalR.Common": "1.1.0", - "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "System.Reflection.Emit": "4.3.0", - "System.Threading.Channels": "4.5.0" - } - }, - "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { - "dependencies": { - "Microsoft.AspNetCore.SignalR.Common": "1.1.0", - "Newtonsoft.Json": "13.0.3" - } - }, - "Microsoft.AspNetCore.StaticFiles/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.WebEncoders": "2.2.0" - } - }, - "Microsoft.AspNetCore.WebSockets/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Http.Extensions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0", - "System.Net.WebSockets.WebSocketProtocol": "4.5.1" - } - }, - "Microsoft.AspNetCore.WebUtilities/2.2.0": { - "dependencies": { - "Microsoft.Net.Http.Headers": "2.2.0", - "System.Text.Encodings.Web": "7.0.0" - } - }, - "Microsoft.Bcl.AsyncInterfaces/1.1.1": { - "runtime": { - "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "4.700.20.21406" - } - } - }, - "Microsoft.CodeAnalysis.Analyzers/1.1.0": {}, - "Microsoft.CodeAnalysis.Common/2.8.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Analyzers": "1.1.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Collections.Immutable": "1.3.1", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.FileVersionInfo": "4.3.0", - "System.Diagnostics.StackTrace": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Dynamic.Runtime": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Metadata": "1.4.2", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.CodePages": "7.0.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Parallel": "4.3.0", - "System.Threading.Thread": "4.3.0", - "System.ValueTuple": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0", - "System.Xml.XPath.XDocument": "4.3.0", - "System.Xml.XmlDocument": "4.3.0" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": { - "assemblyVersion": "2.8.0.0", - "fileVersion": "2.8.0.62830" - } - } - }, - "Microsoft.CodeAnalysis.CSharp/2.8.0": { - "dependencies": { - "Microsoft.CodeAnalysis.Common": "2.8.0" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": { - "assemblyVersion": "2.8.0.0", - "fileVersion": "2.8.0.62830" - } - } - }, - "Microsoft.CodeAnalysis.Razor/2.2.0": { - "dependencies": { - "Microsoft.AspNetCore.Razor.Language": "2.2.0", - "Microsoft.CodeAnalysis.CSharp": "2.8.0", - "Microsoft.CodeAnalysis.Common": "2.8.0" - }, - "runtime": { - "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.0.18316" - } - } - }, - "Microsoft.CSharp/4.7.0": {}, - "Microsoft.Data.SqlClient/5.0.1": { - "dependencies": { - "Azure.Identity": "1.6.0", - "Microsoft.Data.SqlClient.SNI.runtime": "5.0.1", - "Microsoft.Identity.Client": "4.45.0", - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.21.0", - "Microsoft.SqlServer.Server": "1.0.0", - "Microsoft.Win32.Registry": "5.0.0", - "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "5.0.0", - "System.Diagnostics.DiagnosticSource": "6.0.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime.Caching": "5.0.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Principal.Windows": "5.0.0", - "System.Text.Encoding.CodePages": "7.0.0", - "System.Text.Encodings.Web": "7.0.0" - }, - "runtime": { - "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - }, - "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "runtimeTargets": { - "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm", - "assetType": "native", - "fileVersion": "5.0.1.0" - }, - "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "5.0.1.0" - }, - "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "5.0.1.0" - }, - "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "5.0.1.0" - } - } - }, - "Microsoft.EntityFrameworkCore/7.0.3": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Abstractions": "7.0.3", - "Microsoft.EntityFrameworkCore.Analyzers": "7.0.3", - "Microsoft.Extensions.Caching.Memory": "7.0.0", - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.Logging": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { - "assemblyVersion": "7.0.3.0", - "fileVersion": "7.0.323.6302" - } - } - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.3": { - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { - "assemblyVersion": "7.0.3.0", - "fileVersion": "7.0.323.6302" - } - } - }, - "Microsoft.EntityFrameworkCore.Analyzers/7.0.3": {}, - "Microsoft.EntityFrameworkCore.Design/7.0.3": { - "dependencies": { - "Humanizer.Core": "2.14.1", - "Microsoft.EntityFrameworkCore.Relational": "7.0.3", - "Microsoft.Extensions.DependencyModel": "7.0.0", - "Mono.TextTemplating": "2.2.1" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": { - "assemblyVersion": "7.0.3.0", - "fileVersion": "7.0.323.6302" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.3": { - "dependencies": { - "Microsoft.EntityFrameworkCore": "7.0.3", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { - "assemblyVersion": "7.0.3.0", - "fileVersion": "7.0.323.6302" - } - } - }, - "Microsoft.EntityFrameworkCore.Relational.Design/1.1.1": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Relational": "7.0.3", - "NETStandard.Library": "1.6.1" - }, - "runtime": { - "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll": { - "assemblyVersion": "1.1.1.0", - "fileVersion": "1.1.1.30217" - } - } - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.3": { - "dependencies": { - "Microsoft.Data.SqlClient": "5.0.1", - "Microsoft.EntityFrameworkCore.Relational": "7.0.3" - }, - "runtime": { - "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { - "assemblyVersion": "7.0.3.0", - "fileVersion": "7.0.323.6302" - } - } - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.3": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Design": "7.0.3" - } - }, - "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, - "Microsoft.Extensions.Caching.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Caching.Memory/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Caching.Abstractions": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Configuration/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" - } - }, - "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "7.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", - "Microsoft.Extensions.FileProviders.Physical": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Configuration.Json/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "7.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", - "Microsoft.Extensions.Configuration.FileExtensions": "7.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", - "System.Text.Json": "7.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" - } - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {}, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0" - }, - "runtime": { - "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - } - }, - "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.FileProviders.Composite/2.2.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0" - } - }, - "Microsoft.Extensions.FileProviders.Embedded/3.1.22": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0" - } - }, - "Microsoft.Extensions.FileProviders.Physical/7.0.0": { - "dependencies": { - "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", - "Microsoft.Extensions.FileSystemGlobbing": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.FileSystemGlobbing/7.0.0": {}, - "Microsoft.Extensions.Hosting.Abstractions/3.1.8": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0" - } - }, - "Microsoft.Extensions.Http/6.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0" - } - }, - "Microsoft.Extensions.Localization/2.2.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Localization.Abstractions": "2.2.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0" - } - }, - "Microsoft.Extensions.Localization.Abstractions/2.2.0": {}, - "Microsoft.Extensions.Logging/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0" - } - }, - "Microsoft.Extensions.Logging.Abstractions/7.0.0": {}, - "Microsoft.Extensions.Logging.Configuration/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration": "7.0.0", - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" - } - }, - "Microsoft.Extensions.Logging.Console/1.1.1": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "NETStandard.Library": "1.6.1" - } - }, - "Microsoft.Extensions.ObjectPool/2.2.0": {}, - "Microsoft.Extensions.Options/7.0.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { - "dependencies": { - "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", - "Microsoft.Extensions.Configuration.Binder": "6.0.0", - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0", - "Microsoft.Extensions.Primitives": "7.0.0" - } - }, - "Microsoft.Extensions.Primitives/7.0.0": {}, - "Microsoft.Extensions.WebEncoders/2.2.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Options": "7.0.0", - "System.Text.Encodings.Web": "7.0.0" - } - }, - "Microsoft.Identity.Client/4.45.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { - "assemblyVersion": "4.45.0.0", - "fileVersion": "4.45.0.0" - } - } - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "dependencies": { - "Microsoft.Identity.Client": "4.45.0", - "System.Security.Cryptography.ProtectedData": "5.0.0" - }, - "runtime": { - "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": { - "assemblyVersion": "2.19.3.0", - "fileVersion": "2.19.3.0" - } - } - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Abstractions": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Logging": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.Protocols": "6.21.0", - "System.IdentityModel.Tokens.Jwt": "6.21.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "dependencies": { - "Microsoft.CSharp": "4.7.0", - "Microsoft.IdentityModel.Logging": "6.21.0", - "System.Security.Cryptography.Cng": "5.0.0" - }, - "runtime": { - "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "Microsoft.IO.RecyclableMemoryStream/2.2.1": { - "runtime": { - "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.dll": { - "assemblyVersion": "2.2.1.0", - "fileVersion": "2.2.1.0" - } - } - }, - "Microsoft.Net.Http.Headers/2.2.0": { - "dependencies": { - "Microsoft.Extensions.Primitives": "7.0.0", - "System.Buffers": "4.5.1" - } - }, - "Microsoft.NETCore.Platforms/5.0.0": {}, - "Microsoft.NETCore.Targets/1.1.0": {}, - "Microsoft.OpenApi/1.4.3": { - "runtime": { - "lib/netstandard2.0/Microsoft.OpenApi.dll": { - "assemblyVersion": "1.4.3.0", - "fileVersion": "1.4.3.0" - } - } - }, - "Microsoft.SqlServer.Server/1.0.0": { - "runtime": { - "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.0": {}, - "Microsoft.Win32.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "Microsoft.Win32.Registry/5.0.0": { - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "Microsoft.Win32.SystemEvents/7.0.0": { - "runtime": { - "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - } - }, - "MongoDB.Bson/2.19.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Bson.dll": { - "assemblyVersion": "2.19.0.0", - "fileVersion": "2.19.0.0" - } - } - }, - "MongoDB.Driver/2.19.0": { - "dependencies": { - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "MongoDB.Bson": "2.19.0", - "MongoDB.Driver.Core": "2.19.0", - "MongoDB.Libmongocrypt": "1.7.0" - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.dll": { - "assemblyVersion": "2.19.0.0", - "fileVersion": "2.19.0.0" - } - } - }, - "MongoDB.Driver.Core/2.19.0": { - "dependencies": { - "AWSSDK.SecurityToken": "3.7.100.14", - "DnsClient": "1.6.1", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "MongoDB.Bson": "2.19.0", - "MongoDB.Libmongocrypt": "1.7.0", - "SharpCompress": "0.30.1", - "Snappier": "1.0.0", - "System.Buffers": "4.5.1", - "ZstdSharp.Port": "0.6.2" - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.Core.dll": { - "assemblyVersion": "2.19.0.0", - "fileVersion": "2.19.0.0" - } - } - }, - "MongoDB.Driver.GridFS/2.19.0": { - "dependencies": { - "MongoDB.Bson": "2.19.0", - "MongoDB.Driver": "2.19.0", - "MongoDB.Driver.Core": "2.19.0" - }, - "runtime": { - "lib/netstandard2.1/MongoDB.Driver.GridFS.dll": { - "assemblyVersion": "2.19.0.0", - "fileVersion": "2.19.0.0" - } - } - }, - "MongoDB.Libmongocrypt/1.7.0": { - "runtime": { - "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": { - "assemblyVersion": "1.7.0.0", - "fileVersion": "1.7.0.0" - } - }, - "runtimeTargets": { - "runtimes/linux/native/libmongocrypt.so": { - "rid": "linux", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx/native/libmongocrypt.dylib": { - "rid": "osx", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/win/native/mongocrypt.dll": { - "rid": "win", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "Mono.TextTemplating/2.2.1": { - "dependencies": { - "System.CodeDom": "4.4.0" - }, - "runtime": { - "lib/netstandard2.0/Mono.TextTemplating.dll": { - "assemblyVersion": "2.2.0.0", - "fileVersion": "2.2.1.1" - } - } - }, - "MySql.Data/8.0.29": { - "dependencies": { - "BouncyCastle.NetCore": "1.8.5", - "Google.Protobuf": "3.19.4", - "K4os.Compression.LZ4.Streams": "1.2.6", - "System.Buffers": "4.5.1", - "System.Configuration.ConfigurationManager": "5.0.0", - "System.Runtime.CompilerServices.Unsafe": "6.0.0", - "System.Security.Permissions": "5.0.0", - "System.Text.Encoding.CodePages": "7.0.0" - }, - "runtime": { - "lib/net6.0/MySql.Data.dll": { - "assemblyVersion": "8.0.29.0", - "fileVersion": "8.0.29.0" - }, - "lib/net6.0/Ubiety.Dns.Core.dll": { - "assemblyVersion": "2.2.1.0", - "fileVersion": "2.2.1.0" - }, - "lib/net6.0/ZstdNet.dll": { - "assemblyVersion": "1.4.5.0", - "fileVersion": "1.4.5.0" - } - } - }, - "MySqlConnector/2.2.5": { - "runtime": { - "lib/net7.0/MySqlConnector.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.2.5.0" - } - } - }, - "NETStandard.Library/1.6.1": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.Win32.Primitives": "4.3.0", - "System.AppContext": "4.3.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Console": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.Compression.ZipFile": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.Net.Http": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Net.Sockets": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Timer": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0" - } - }, - "Newtonsoft.Json/13.0.3": { - "runtime": { - "lib/net6.0/Newtonsoft.Json.dll": { - "assemblyVersion": "13.0.0.0", - "fileVersion": "13.0.3.27908" - } - } - }, - "Newtonsoft.Json.Bson/1.0.2": { - "dependencies": { - "Newtonsoft.Json": "13.0.3" - }, - "runtime": { - "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.2.22727" - } - } - }, - "NonFactors.Grid.Core.Mvc6/7.1.0": { - "runtime": { - "lib/net6.0/Mvc.Grid.Core.dll": { - "assemblyVersion": "7.1.0.0", - "fileVersion": "7.1.0.0" - } - } - }, - "Npgsql/6.0.4": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - }, - "runtime": { - "lib/net6.0/Npgsql.dll": { - "assemblyVersion": "6.0.4.0", - "fileVersion": "6.0.4.0" - } - } - }, - "Pomelo.EntityFrameworkCore.MySql/7.0.0": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Relational": "7.0.3", - "MySqlConnector": "2.2.5" - }, - "runtime": { - "lib/net7.0/Pomelo.EntityFrameworkCore.MySql.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.0.0" - } - } - }, - "Pomelo.EntityFrameworkCore.MySql.Design/1.1.2": { - "dependencies": { - "Microsoft.EntityFrameworkCore.Relational.Design": "1.1.1", - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.Logging.Console": "1.1.1", - "MySqlConnector": "2.2.5", - "NETStandard.Library": "1.6.1", - "Pomelo.EntityFrameworkCore.MySql": "7.0.0" - }, - "runtime": { - "lib/netstandard1.3/Pomelo.EntityFrameworkCore.MySql.Design.dll": { - "assemblyVersion": "1.1.1.0", - "fileVersion": "1.1.1.0" - } - } - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.native.System/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0": { - "dependencies": { - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" - } - }, - "runtime.native.System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "dependencies": { - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" - } - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.osx.10.10-x64.CoreCompat.System.Drawing/6.0.5.128": { - "runtime": { - "lib/netstandard2.0/runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll": { - "assemblyVersion": "6.0.5.128", - "fileVersion": "6.0.5.128" - } - }, - "runtimeTargets": { - "runtimes/osx-x64/native/libX11.6.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libXau.6.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libXdmcp.6.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libXext.6.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libXrender.1.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libcairo.2.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libfontconfig.1.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libfreetype.6.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libgdiplus.0.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libgdiplus.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libgif.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libglib-2.0.0.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libintl.8.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libjpeg.9.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libpcre.1.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libpixman-1.0.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libpng16.16.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libtiff.5.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libxcb-render.0.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libxcb-shm.0.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - }, - "runtimes/osx-x64/native/libxcb.1.dylib": { - "rid": "osx-x64", - "assetType": "native", - "fileVersion": "0.0.0.0" - } - } - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-arm64/native/sni.dll": { - "rid": "win-arm64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x64/native/sni.dll": { - "rid": "win-x64", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "runtimeTargets": { - "runtimes/win-x86/native/sni.dll": { - "rid": "win-x86", - "assetType": "native", - "fileVersion": "4.6.25512.1" - } - } - }, - "Sentry/3.29.1": { - "runtime": { - "lib/net6.0/Sentry.dll": { - "assemblyVersion": "3.29.1.0", - "fileVersion": "3.29.1.0" - } - } - }, - "Sentry.AspNetCore/3.29.1": { - "dependencies": { - "Sentry.Extensions.Logging": "3.29.1" - }, - "runtime": { - "lib/net6.0/Sentry.AspNetCore.dll": { - "assemblyVersion": "3.29.1.0", - "fileVersion": "3.29.1.0" - } - } - }, - "Sentry.Extensions.Logging/3.29.1": { - "dependencies": { - "Microsoft.Extensions.Http": "6.0.0", - "Microsoft.Extensions.Logging.Configuration": "6.0.0", - "Sentry": "3.29.1" - }, - "runtime": { - "lib/net6.0/Sentry.Extensions.Logging.dll": { - "assemblyVersion": "3.29.1.0", - "fileVersion": "3.29.1.0" - } - } - }, - "Serilog/2.12.0": { - "runtime": { - "lib/net6.0/Serilog.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.12.0.0" - } - } - }, - "Serilog.AspNetCore/6.1.0": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection": "7.0.0", - "Microsoft.Extensions.Logging": "7.0.0", - "Serilog": "2.12.0", - "Serilog.Extensions.Hosting": "5.0.1", - "Serilog.Formatting.Compact": "1.1.0", - "Serilog.Settings.Configuration": "3.3.0", - "Serilog.Sinks.Console": "4.1.0", - "Serilog.Sinks.Debug": "2.0.0", - "Serilog.Sinks.File": "5.0.0" - }, - "runtime": { - "lib/net5.0/Serilog.AspNetCore.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "6.1.0.0" - } - } - }, - "Serilog.Enrichers.Environment/2.2.0": { - "dependencies": { - "Serilog": "2.12.0" - }, - "runtime": { - "lib/netstandard2.0/Serilog.Enrichers.Environment.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.2.0.0" - } - } - }, - "Serilog.Exceptions/8.4.0": { - "dependencies": { - "Serilog": "2.12.0", - "System.Reflection.TypeExtensions": "4.7.0" - }, - "runtime": { - "lib/net6.0/Serilog.Exceptions.dll": { - "assemblyVersion": "8.0.0.0", - "fileVersion": "8.4.0.0" - } - } - }, - "Serilog.Extensions.Hosting/5.0.1": { - "dependencies": { - "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", - "Microsoft.Extensions.Hosting.Abstractions": "3.1.8", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Serilog": "2.12.0", - "Serilog.Extensions.Logging": "3.1.0" - }, - "runtime": { - "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "5.0.1.0" - } - } - }, - "Serilog.Extensions.Logging/3.1.0": { - "dependencies": { - "Microsoft.Extensions.Logging": "7.0.0", - "Serilog": "2.12.0" - }, - "runtime": { - "lib/netstandard2.0/Serilog.Extensions.Logging.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "3.1.0.0" - } - } - }, - "Serilog.Formatting.Compact/1.1.0": { - "dependencies": { - "Serilog": "2.12.0" - }, - "runtime": { - "lib/netstandard2.0/Serilog.Formatting.Compact.dll": { - "assemblyVersion": "1.1.0.0", - "fileVersion": "1.1.0.0" - } - } - }, - "Serilog.Formatting.Elasticsearch/9.0.0": { - "dependencies": { - "Serilog": "2.12.0" - }, - "runtime": { - "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.0.0" - } - } - }, - "Serilog.Settings.Configuration/3.3.0": { - "dependencies": { - "Microsoft.Extensions.DependencyModel": "7.0.0", - "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0", - "Serilog": "2.12.0" - }, - "runtime": { - "lib/netstandard2.0/Serilog.Settings.Configuration.dll": { - "assemblyVersion": "3.3.0.0", - "fileVersion": "3.3.0.0" - } - } - }, - "Serilog.Sinks.Console/4.1.0": { - "dependencies": { - "Serilog": "2.12.0" - }, - "runtime": { - "lib/net5.0/Serilog.Sinks.Console.dll": { - "assemblyVersion": "4.1.0.0", - "fileVersion": "4.1.0.0" - } - } - }, - "Serilog.Sinks.Debug/2.0.0": { - "dependencies": { - "Serilog": "2.12.0" - }, - "runtime": { - "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { - "assemblyVersion": "2.0.0.0", - "fileVersion": "2.0.0.0" - } - } - }, - "Serilog.Sinks.Elasticsearch/9.0.0": { - "dependencies": { - "Elasticsearch.Net": "7.17.5", - "Serilog": "2.12.0", - "Serilog.Formatting.Compact": "1.1.0", - "Serilog.Formatting.Elasticsearch": "9.0.0", - "Serilog.Sinks.File": "5.0.0", - "Serilog.Sinks.PeriodicBatching": "3.1.0", - "System.Diagnostics.DiagnosticSource": "6.0.0" - }, - "runtime": { - "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll": { - "assemblyVersion": "9.0.0.0", - "fileVersion": "9.0.0.0" - } - } - }, - "Serilog.Sinks.File/5.0.0": { - "dependencies": { - "Serilog": "2.12.0" - }, - "runtime": { - "lib/net5.0/Serilog.Sinks.File.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.0.0" - } - } - }, - "Serilog.Sinks.PeriodicBatching/3.1.0": { - "dependencies": { - "Serilog": "2.12.0" - }, - "runtime": { - "lib/netstandard2.1/Serilog.Sinks.PeriodicBatching.dll": { - "assemblyVersion": "3.0.0.0", - "fileVersion": "3.1.0.0" - } - } - }, - "SharpCompress/0.30.1": { - "runtime": { - "lib/net5.0/SharpCompress.dll": { - "assemblyVersion": "0.30.1.0", - "fileVersion": "0.30.1.0" - } - } - }, - "Snappier/1.0.0": { - "runtime": { - "lib/net5.0/Snappier.dll": { - "assemblyVersion": "1.0.0.0", - "fileVersion": "1.0.0.0" - } - } - }, - "Swashbuckle.AspNetCore/6.5.0": { - "dependencies": { - "Microsoft.Extensions.ApiDescription.Server": "6.0.5", - "Swashbuckle.AspNetCore.Swagger": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0", - "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0" - } - }, - "Swashbuckle.AspNetCore.Annotations/6.5.0": { - "dependencies": { - "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0" - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.Annotations.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "dependencies": { - "Microsoft.OpenApi": "1.4.3" - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "dependencies": { - "Swashbuckle.AspNetCore.Swagger": "6.5.0" - }, - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "runtime": { - "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { - "assemblyVersion": "6.5.0.0", - "fileVersion": "6.5.0.0" - } - } - }, - "System.AppContext/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Buffers/4.5.1": {}, - "System.CodeDom/4.4.0": { - "runtime": { - "lib/netstandard2.0/System.CodeDom.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.6.25519.3" - } - } - }, - "System.Collections/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Collections.Concurrent/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Collections.Immutable/1.3.1": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.ComponentModel.Annotations/4.5.0": {}, - "System.Configuration.ConfigurationManager/5.0.0": { - "dependencies": { - "System.Security.Cryptography.ProtectedData": "5.0.0", - "System.Security.Permissions": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Console/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Data.SqlClient/4.8.5": { - "dependencies": { - "Microsoft.Win32.Registry": "5.0.0", - "System.Security.Principal.Windows": "5.0.0", - "runtime.native.System.Data.SqlClient.sni": "4.7.0" - }, - "runtime": { - "lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "assemblyVersion": "4.6.1.5", - "fileVersion": "4.700.22.51706" - } - }, - "runtimeTargets": { - "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "unix", - "assetType": "runtime", - "assemblyVersion": "4.6.1.5", - "fileVersion": "4.700.22.51706" - }, - "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.6.1.5", - "fileVersion": "4.700.22.51706" - } - } - }, - "System.Diagnostics.Debug/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "dependencies": { - "System.Runtime.CompilerServices.Unsafe": "6.0.0" - } - }, - "System.Diagnostics.FileVersionInfo/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Reflection.Metadata": "1.4.2", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.Diagnostics.StackTrace/4.3.0": { - "dependencies": { - "System.IO.FileSystem": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Metadata": "1.4.2", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Tools/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Diagnostics.Tracing/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Drawing.Common/7.0.0": { - "dependencies": { - "Microsoft.Win32.SystemEvents": "7.0.0" - }, - "runtime": { - "lib/net7.0/System.Drawing.Common.dll": { - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - }, - "runtimeTargets": { - "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "7.0.0.0", - "fileVersion": "7.0.22.51805" - } - } - }, - "System.Dynamic.Runtime/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Linq.Expressions": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.7.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Formats.Asn1/7.0.0": {}, - "System.Globalization/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Calendars/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Globalization.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0" - } - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "dependencies": { - "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", - "Microsoft.IdentityModel.Tokens": "6.21.0" - }, - "runtime": { - "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { - "assemblyVersion": "6.21.0.0", - "fileVersion": "6.21.0.30701" - } - } - }, - "System.IO/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.Compression/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Buffers": "4.5.1", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.IO.Compression": "4.3.0" - } - }, - "System.IO.Compression.ZipFile/4.3.0": { - "dependencies": { - "System.Buffers": "4.5.1", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.IO.FileSystem/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.IO.Pipelines/4.5.2": {}, - "System.Linq/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Linq.Expressions/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Linq": "4.3.0", - "System.ObjectModel": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Emit.Lightweight": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Reflection.TypeExtensions": "4.7.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Memory/4.5.4": {}, - "System.Memory.Data/1.0.2": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0", - "System.Text.Json": "7.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Memory.Data.dll": { - "assemblyVersion": "1.0.2.0", - "fileVersion": "1.0.221.20802" - } - } - }, - "System.Net.Http/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.DiagnosticSource": "6.0.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Extensions": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Security.Cryptography.X509Certificates": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Net.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Net.Sockets/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Net.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Net.WebSockets.WebSocketProtocol/4.5.1": { - "runtime": { - "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "4.6.26606.5" - } - } - }, - "System.Numerics.Vectors/4.5.0": {}, - "System.ObjectModel/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Reflection/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.IO": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit/4.3.0": { - "dependencies": { - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Emit.ILGeneration": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.Metadata/1.4.2": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Collections.Immutable": "1.3.1", - "System.Diagnostics.Debug": "4.3.0", - "System.IO": "4.3.0", - "System.IO.Compression": "4.3.0", - "System.Linq": "4.3.0", - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Reflection.Primitives/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Reflection.TypeExtensions/4.7.0": {}, - "System.Resources.ResourceManager/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Globalization": "4.3.0", - "System.Reflection": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0" - } - }, - "System.Runtime.Caching/5.0.0": { - "dependencies": { - "System.Configuration.ConfigurationManager": "5.0.0" - }, - "runtime": { - "lib/netstandard2.0/System.Runtime.Caching.dll": { - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "4.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, - "System.Runtime.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.Handles/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Runtime.InteropServices/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Reflection": "4.3.0", - "System.Reflection.Primitives": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Handles": "4.3.0" - } - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "dependencies": { - "System.Reflection": "4.3.0", - "System.Reflection.Extensions": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0" - } - }, - "System.Runtime.Numerics/4.3.0": { - "dependencies": { - "System.Globalization": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0" - } - }, - "System.Security.AccessControl/5.0.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Security.Principal.Windows": "5.0.0" - } - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.Apple": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Cng/5.0.0": { - "dependencies": { - "System.Formats.Asn1": "7.0.0" - } - }, - "System.Security.Cryptography.Csp/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0" - } - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Collections": "4.3.0", - "System.Collections.Concurrent": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Pkcs/7.0.0": { - "dependencies": { - "System.Formats.Asn1": "7.0.0" - } - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Security.Cryptography.ProtectedData/5.0.0": { - "runtime": { - "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.Globalization.Calendars": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.Handles": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Runtime.Numerics": "4.3.0", - "System.Security.Cryptography.Algorithms": "4.3.0", - "System.Security.Cryptography.Cng": "5.0.0", - "System.Security.Cryptography.Csp": "4.3.0", - "System.Security.Cryptography.Encoding": "4.3.0", - "System.Security.Cryptography.OpenSsl": "4.3.0", - "System.Security.Cryptography.Primitives": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "runtime.native.System": "4.3.0", - "runtime.native.System.Net.Http": "4.3.0", - "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" - } - }, - "System.Security.Cryptography.Xml/4.5.0": { - "dependencies": { - "System.Security.Cryptography.Pkcs": "7.0.0", - "System.Security.Permissions": "5.0.0" - } - }, - "System.Security.Permissions/5.0.0": { - "dependencies": { - "System.Security.AccessControl": "5.0.0", - "System.Windows.Extensions": "5.0.0" - }, - "runtime": { - "lib/net5.0/System.Security.Permissions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Security.Principal.Windows/5.0.0": {}, - "System.Text.Encoding/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Text.Encoding.CodePages/7.0.0": {}, - "System.Text.Encoding.Extensions/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0", - "System.Text.Encoding": "4.3.0" - } - }, - "System.Text.Encodings.Web/7.0.0": {}, - "System.Text.Json/7.0.0": { - "dependencies": { - "System.Text.Encodings.Web": "7.0.0" - } - }, - "System.Text.RegularExpressions/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Channels/4.5.0": {}, - "System.Threading.Tasks/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Tasks.Extensions/4.5.4": {}, - "System.Threading.Tasks.Parallel/4.3.0": { - "dependencies": { - "System.Collections.Concurrent": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tracing": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Threading.Tasks": "4.3.0" - } - }, - "System.Threading.Thread/4.3.0": { - "dependencies": { - "System.Runtime": "4.3.0" - } - }, - "System.Threading.Timer/4.3.0": { - "dependencies": { - "Microsoft.NETCore.Platforms": "5.0.0", - "Microsoft.NETCore.Targets": "1.1.0", - "System.Runtime": "4.3.0" - } - }, - "System.ValueTuple/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0" - } - }, - "System.Windows.Extensions/5.0.0": { - "dependencies": { - "System.Drawing.Common": "7.0.0" - }, - "runtime": { - "lib/netcoreapp3.0/System.Windows.Extensions.dll": { - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - }, - "runtimeTargets": { - "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { - "rid": "win", - "assetType": "runtime", - "assemblyVersion": "5.0.0.0", - "fileVersion": "5.0.20.51904" - } - } - }, - "System.Xml.ReaderWriter/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.IO.FileSystem": "4.3.0", - "System.IO.FileSystem.Primitives": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Runtime.InteropServices": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Text.Encoding.Extensions": "4.3.0", - "System.Text.RegularExpressions": "4.3.0", - "System.Threading.Tasks": "4.3.0", - "System.Threading.Tasks.Extensions": "4.5.4" - } - }, - "System.Xml.XDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Diagnostics.Tools": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Reflection": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XmlDocument/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Text.Encoding": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XPath/4.3.0": { - "dependencies": { - "System.Collections": "4.3.0", - "System.Diagnostics.Debug": "4.3.0", - "System.Globalization": "4.3.0", - "System.IO": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0" - } - }, - "System.Xml.XPath.XDocument/4.3.0": { - "dependencies": { - "System.Diagnostics.Debug": "4.3.0", - "System.Linq": "4.3.0", - "System.Resources.ResourceManager": "4.3.0", - "System.Runtime": "4.3.0", - "System.Runtime.Extensions": "4.3.0", - "System.Threading": "4.3.0", - "System.Xml.ReaderWriter": "4.3.0", - "System.Xml.XDocument": "4.3.0", - "System.Xml.XPath": "4.3.0" - } - }, - "WatchDog.NET/1.4.6": { - "dependencies": { - "Dapper": "2.0.123", - "LiteDB": "5.0.11", - "Microsoft.AspNetCore.Http": "2.2.2", - "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", - "Microsoft.AspNetCore.Mvc": "2.2.0", - "Microsoft.AspNetCore.SignalR": "1.1.0", - "Microsoft.AspNetCore.SignalR.Core": "1.1.0", - "Microsoft.AspNetCore.StaticFiles": "2.2.0", - "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", - "Microsoft.Extensions.FileProviders.Embedded": "3.1.22", - "Microsoft.Extensions.FileProviders.Physical": "7.0.0", - "Microsoft.Extensions.Logging.Abstractions": "7.0.0", - "Microsoft.IO.RecyclableMemoryStream": "2.2.1", - "MongoDB.Driver": "2.19.0", - "MySql.Data": "8.0.29", - "Newtonsoft.Json": "13.0.3", - "Npgsql": "6.0.4", - "System.Data.SqlClient": "4.8.5" - }, - "runtime": { - "lib/net6.0/WatchDog.dll": { - "assemblyVersion": "1.4.6.0", - "fileVersion": "1.4.6.0" - } - } - }, - "ZstdSharp.Port/0.6.2": { - "runtime": { - "lib/net6.0/ZstdSharp.dll": { - "assemblyVersion": "0.6.2.0", - "fileVersion": "0.6.2.0" - } - } - } - } - }, - "libraries": { - "BMA.EHR.Recruit.Service/1.0.0": { - "type": "project", - "serviceable": false, - "sha512": "" - }, - "AWSSDK.Core/3.7.106.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Ko+ZIM9HVtisWy6v+sNDmTGfSsMgQT2KxtYHLa3ztpEiN7ta9BiuBmgiNAc1BPSu3xMs4NsBBdt+qMrMKfUB/A==", - "path": "awssdk.core/3.7.106.5", - "hashPath": "awssdk.core.3.7.106.5.nupkg.sha512" - }, - "AWSSDK.S3/3.7.103.35": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zQMIHW6BCt+3wt0WkuuL1TUotvaDUTB7ykZ42sYJDKg2O8NeNn5pCibA4np9Kp1WBsulTGKZBU+dSMF1mvd69A==", - "path": "awssdk.s3/3.7.103.35", - "hashPath": "awssdk.s3.3.7.103.35.nupkg.sha512" - }, - "AWSSDK.SecurityToken/3.7.100.14": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dGCVuVo0CFUKWW85W8YENO+aREf8sCBDjvGbnNvxJuNW4Ss+brEU9ltHhq2KfZze2VUNK1/wygbPG1bmbpyXEw==", - "path": "awssdk.securitytoken/3.7.100.14", - "hashPath": "awssdk.securitytoken.3.7.100.14.nupkg.sha512" - }, - "Azure.Core/1.24.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+/qI1j2oU1S4/nvxb2k/wDsol00iGf1AyJX5g3epV7eOpQEP/2xcgh/cxgKMeFgn3U2fmgSiBnQZdkV+l5y0Uw==", - "path": "azure.core/1.24.0", - "hashPath": "azure.core.1.24.0.nupkg.sha512" - }, - "Azure.Identity/1.6.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EycyMsb6rD2PK9P0SyibFfEhvWWttdrYhyPF4f41uzdB/44yQlV+2Wehxyg489Rj6gbPvSPgbKq0xsHJBhipZA==", - "path": "azure.identity/1.6.0", - "hashPath": "azure.identity.1.6.0.nupkg.sha512" - }, - "BouncyCastle.NetCore/1.8.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", - "path": "bouncycastle.netcore/1.8.5", - "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" - }, - "CoreAdmin/2.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qwa33DYykMuQ6JCeDoIPI3NMU91MEWI35ukK/FcMCeWtNjDxuwaWoTRS8P6+vA3cF81AkuIsxCU7CH7yzK0ofw==", - "path": "coreadmin/2.7.0", - "hashPath": "coreadmin.2.7.0.nupkg.sha512" - }, - "Dapper/2.0.123": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RDFF4rBLLmbpi6pwkY7q/M6UXHRJEOerplDGE5jwEkP/JGJnBauAClYavNKJPW1yOTWRPIyfj4is3EaJxQXILQ==", - "path": "dapper/2.0.123", - "hashPath": "dapper.2.0.123.nupkg.sha512" - }, - "DnsClient/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==", - "path": "dnsclient/1.6.1", - "hashPath": "dnsclient.1.6.1.nupkg.sha512" - }, - "Elasticsearch.Net/7.17.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-orChsQi1Ceho/NyIylNOn6y4vuGcsbCfMZnCueNN0fzqYEGQmQdPfcVmsR5+3fwpXTgxCdjTUVmqOwvHpCSB+Q==", - "path": "elasticsearch.net/7.17.5", - "hashPath": "elasticsearch.net.7.17.5.nupkg.sha512" - }, - "EPPlus/6.1.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1NEgW7wMxHWz7k3hN6D7PPkCCKR24LK86EIIEwfKrBy+yyWQM/fsCrngt+DPAjVgGLOThVmXInSFJqD15X7OCQ==", - "path": "epplus/6.1.3", - "hashPath": "epplus.6.1.3.nupkg.sha512" - }, - "EPPlus.Interfaces/6.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-y7dkrOoE1ZR9Vgy1Jf2rEIaTf3SHlUjYt01NklP+F5Qh7S2ruPbzTcpYLRWMeXiG8XL8h2jqX4CyIkFt3NQGZw==", - "path": "epplus.interfaces/6.1.1", - "hashPath": "epplus.interfaces.6.1.1.nupkg.sha512" - }, - "EPPlus.System.Drawing/6.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lRF5gHYrmkHOOiLMI0t6q8zNYjUrzRgAM5BCXumv5xiqXko8fx3AWI+HCNZfhEqVFGOop+42KfR5GiUcCoyoMw==", - "path": "epplus.system.drawing/6.1.1", - "hashPath": "epplus.system.drawing.6.1.1.nupkg.sha512" - }, - "Google.Protobuf/3.19.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", - "path": "google.protobuf/3.19.4", - "hashPath": "google.protobuf.3.19.4.nupkg.sha512" - }, - "Humanizer.Core/2.14.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", - "path": "humanizer.core/2.14.1", - "hashPath": "humanizer.core.2.14.1.nupkg.sha512" - }, - "K4os.Compression.LZ4/1.2.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", - "path": "k4os.compression.lz4/1.2.6", - "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" - }, - "K4os.Compression.LZ4.Streams/1.2.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", - "path": "k4os.compression.lz4.streams/1.2.6", - "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" - }, - "K4os.Hash.xxHash/1.0.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", - "path": "k4os.hash.xxhash/1.0.6", - "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" - }, - "LiteDB/5.0.11": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6cL4bOmVCUB0gIK+6qIr68HeqjjHZicPDGQjvJ87mIOvkFsEsJWkIps3yoKNeLpHhJQur++yoQ9Q8gxsdos0xQ==", - "path": "litedb/5.0.11", - "hashPath": "litedb.5.0.11.nupkg.sha512" - }, - "Microsoft.AspNetCore.Antiforgery/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fVQsSXNZz38Ysx8iKwwqfOLHhLrAeKEMBS5Ia3Lh7BJjOC2vPV28/yk08AovOMsB3SNQPGnE7bv+lsIBTmAkvw==", - "path": "microsoft.aspnetcore.antiforgery/2.2.0", - "hashPath": "microsoft.aspnetcore.antiforgery.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", - "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.Core/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", - "path": "microsoft.aspnetcore.authentication.core/2.2.0", - "hashPath": "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authentication.JwtBearer/7.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LoWGXSI5P67sjTVEcUf0u37Ms9t/jEUyW462M6CAOfs48Gug2InaBXkt+dUYxkwtD4+WH4blafqF9Es2SrBBEw==", - "path": "microsoft.aspnetcore.authentication.jwtbearer/7.0.3", - "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.7.0.3.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authorization/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", - "path": "microsoft.aspnetcore.authorization/2.2.0", - "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", - "path": "microsoft.aspnetcore.authorization.policy/2.2.0", - "hashPath": "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", - "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Cors/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LFlTM3ThS3ZCILuKnjy8HyK9/IlDh3opogdbCVx6tMGyDzTQBgMPXLjGDLtMk5QmLDCcP3l1TO3z/+1viA8GUg==", - "path": "microsoft.aspnetcore.cors/2.2.0", - "hashPath": "microsoft.aspnetcore.cors.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GXmMD8/vuTLPLvKzKEPz/4vapC5e0cwx1tUVd83ePRyWF9CCrn/pg4/1I+tGkQqFLPvi3nlI2QtPtC6MQN8Nww==", - "path": "microsoft.aspnetcore.cryptography.internal/2.2.0", - "hashPath": "microsoft.aspnetcore.cryptography.internal.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.DataProtection/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G6dvu5Nd2vjpYbzazZ//qBFbSEf2wmBUbyAR7E4AwO3gWjhoJD5YxpThcGJb7oE3VUcW65SVMXT+cPCiiBg8Sg==", - "path": "microsoft.aspnetcore.dataprotection/2.2.0", - "hashPath": "microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-seANFXmp8mb5Y12m1ShiElJ3ZdOT3mBN3wA1GPhHJIvZ/BxOCPyqEOR+810OWsxEZwA5r5fDRNpG/CqiJmQnJg==", - "path": "microsoft.aspnetcore.dataprotection.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pva9ggfUDtnJIKzv0+wxwTX7LduDx6xLSpMqWwdOJkW52L0t31PI78+v+WqqMpUtMzcKug24jGs3nTFpAmA/2g==", - "path": "microsoft.aspnetcore.diagnostics.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", - "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", - "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Html.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Y4rs5aMEXY8G7wJo5S3EEt6ltqyOTr/qOeZzfn+hw/fuQj5GppGckMY5psGLETo1U9hcT5MmAhaT5xtusM1b5g==", - "path": "microsoft.aspnetcore.html.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Http/2.2.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BAibpoItxI5puk7YJbIGj95arZueM8B8M5xT1fXBn3hb3L2G3ucrZcYXv1gXdaroLbntUs8qeV8iuBrpjQsrKw==", - "path": "microsoft.aspnetcore.http/2.2.2", - "hashPath": "microsoft.aspnetcore.http.2.2.2.nupkg.sha512" - }, - "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", - "path": "microsoft.aspnetcore.http.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Http.Connections/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==", - "path": "microsoft.aspnetcore.http.connections/1.1.0", - "hashPath": "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mYk5QUUjyXQmlyDHWDjkLYDArt97plwe6KsDsNVhDEQ+HgZMKGjISyM6YSA7BERQNR25kXBTbIYfSy1vePGQgg==", - "path": "microsoft.aspnetcore.http.connections.common/1.1.0", - "hashPath": "microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Http.Extensions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", - "path": "microsoft.aspnetcore.http.extensions/2.2.0", - "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Http.Features/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", - "path": "microsoft.aspnetcore.http.features/2.2.0", - "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.JsonPatch/7.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-k5Vf0AK5dFh0gdg4aZha3caJ7DD0h+0MzgvjbAO4zfIxxpZn25LlUwEC/a5e8nUbw1DBPxfaic2K6yJolWaBkw==", - "path": "microsoft.aspnetcore.jsonpatch/7.0.3", - "hashPath": "microsoft.aspnetcore.jsonpatch.7.0.3.nupkg.sha512" - }, - "Microsoft.AspNetCore.Localization/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+PGX1mEfq19EVvskBBb9XBQrXZpZrh6hYhX0x3FkPTEqr+rDM2ZmsEwAAMRmzcidmlDM1/7cyDSU/WhkecU8tA==", - "path": "microsoft.aspnetcore.localization/2.2.0", - "hashPath": "microsoft.aspnetcore.localization.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-noun9xcrEvOs/ubczt2OluY9/bOOM2erv1D/gyyYtfS2sfyx2uGknUIAWoqmqc401TvQDysyx8S4M9j5zPIVBw==", - "path": "microsoft.aspnetcore.mvc/2.2.0", - "hashPath": "microsoft.aspnetcore.mvc.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==", - "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.Analyzers/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Wxxt1rFVHITp4MDaGQP/wyl+ROVVVeQCTWI6C8hxI8X66C4u6gcxvelqgnmsn+dISMCdE/7FQOwgiMx1HxuZqA==", - "path": "microsoft.aspnetcore.mvc.analyzers/2.2.0", - "hashPath": "microsoft.aspnetcore.mvc.analyzers.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.ApiExplorer/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iSREQct43Xg2t3KiQ2648e064al/HSLPXpI5yO9VPeTGDspWKHW23XFHRKPN1YjIQHHfBj8ytXbiF0XcSxp5pg==", - "path": "microsoft.aspnetcore.mvc.apiexplorer/2.2.0", - "hashPath": "microsoft.aspnetcore.mvc.apiexplorer.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.Core/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ALiY4a6BYsghw8PT5+VU593Kqp911U3w9f/dH9/ZoI3ezDsDAGiObqPu/HP1oXK80Ceu0XdQ3F0bx5AXBeuN/Q==", - "path": "microsoft.aspnetcore.mvc.core/2.2.0", - "hashPath": "microsoft.aspnetcore.mvc.core.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.Cors/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oINjMqhU7yzT2T9AMuvktlWlMd40i0do8E1aYslJS+c5fof+EMhjnwTh6cHN1dfrgjkoXJ/gutxn5Qaqf/81Kg==", - "path": "microsoft.aspnetcore.mvc.cors/2.2.0", - "hashPath": "microsoft.aspnetcore.mvc.cors.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.DataAnnotations/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WOw4SA3oT47aiU7ZjN/88j+b79YU6VftmHmxK29Km3PTI7WZdmw675QTcgWfsjEX4joCB82v7TvarO3D0oqOyw==", - "path": "microsoft.aspnetcore.mvc.dataannotations/2.2.0", - "hashPath": "microsoft.aspnetcore.mvc.dataannotations.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ScWwXrkAvw6PekWUFkIr5qa9NKn4uZGRvxtt3DvtUrBYW5Iu2y4SS/vx79JN0XDHNYgAJ81nVs+4M7UE1Y/O+g==", - "path": "microsoft.aspnetcore.mvc.formatters.json/2.2.0", - "hashPath": "microsoft.aspnetcore.mvc.formatters.json.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.Localization/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-H1L4pP124mrN6duwOtNVIJUqy4CczC2/ah4MXarRt9ZRpJd2zNp1j3tJCgyEQpqai6zNVP6Vp2ZRMQcNDcNAKA==", - "path": "microsoft.aspnetcore.mvc.localization/2.2.0", - "hashPath": "microsoft.aspnetcore.mvc.localization.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Q4Trx6jnKgsC/UARC2pCOIm0pFWRjc28e0ex3HZzcQE0EaVfmQaELIo8akgmljXnebT5D4Ivx5hXyvZbQOAWbw==", - "path": "microsoft.aspnetcore.mvc.newtonsoftjson/7.0.3", - "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.7.0.3.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.Razor/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TXvEOjp3r6qDEjmDtv3pXjQr/Zia9PpoGkl1MyTEqKqrUehBTpAdCjA8APXFwun19lH20OuyU+e4zDYv9g134w==", - "path": "microsoft.aspnetcore.mvc.razor/2.2.0", - "hashPath": "microsoft.aspnetcore.mvc.razor.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Sei/0moqBDQKaAYT9PtOeRtvYgHQQLyw/jm3exHw2w9VdzejiMEqCQrN2d63Dk4y7IY0Irr/P9JUFkoVURRcNw==", - "path": "microsoft.aspnetcore.mvc.razor.extensions/2.2.0", - "hashPath": "microsoft.aspnetcore.mvc.razor.extensions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.RazorPages/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GsMs4QKCf5VgdGZq9/nfAVkMJ/8uE4ie0Iugv4FtxbHBmMdpPQQBfTFKoUpwMbgIRw7hzV8xy2HPPU5o58PsdQ==", - "path": "microsoft.aspnetcore.mvc.razorpages/2.2.0", - "hashPath": "microsoft.aspnetcore.mvc.razorpages.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.TagHelpers/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-hsrm/dLx7ztfWV+WEE7O8YqEePW7TmUwFwR7JsOUSTKaV9uSeghdmoOsYuk0HeoTiMhRxH8InQVE9/BgBj+jog==", - "path": "microsoft.aspnetcore.mvc.taghelpers/2.2.0", - "hashPath": "microsoft.aspnetcore.mvc.taghelpers.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.Versioning/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mN9IARvNpHMBD2/oGmp5Bxp1Dg45Hfcp+LWaAyTtL2HisWLMOIcf0Ox1qW9IvCvdbHM+2A9dWEInhiqBsNxsJA==", - "path": "microsoft.aspnetcore.mvc.versioning/5.0.0", - "hashPath": "microsoft.aspnetcore.mvc.versioning.5.0.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GZH7F1iDtJKw23qkqQaAnBh9Rw+GVUq5SK0ldfAqMh+2syFRtzPkvQUl0V+qe2wuP0QRr1zG82G812ZN8AU6ig==", - "path": "microsoft.aspnetcore.mvc.versioning.apiexplorer/5.0.0", - "hashPath": "microsoft.aspnetcore.mvc.versioning.apiexplorer.5.0.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Mvc.ViewFeatures/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dt7MGkzCFVTAD5oesI8UeVVeiSgaZ0tPdFstQjG6YLJSCiq1koOUSHMpf0PASGdOW/H9hxXkolIBhT5dWqJi7g==", - "path": "microsoft.aspnetcore.mvc.viewfeatures/2.2.0", - "hashPath": "microsoft.aspnetcore.mvc.viewfeatures.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.OpenApi/7.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nihfseI7Jpaogc5bPAbta17sFzhyXwwC74xAhOyc6cgqriJQ2eB4TcJsAi4NePT2q+pFfEAtSCgPXw4IdJOF0w==", - "path": "microsoft.aspnetcore.openapi/7.0.3", - "hashPath": "microsoft.aspnetcore.openapi.7.0.3.nupkg.sha512" - }, - "Microsoft.AspNetCore.Razor/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-V54PIyDCFl8COnTp9gezNHpUNHk7F9UnerGeZy3UfbnwYvfzbo+ipqQmSgeoESH8e0JvKhRTyQyZquW2EPtCmg==", - "path": "microsoft.aspnetcore.razor/2.2.0", - "hashPath": "microsoft.aspnetcore.razor.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Razor.Design/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VLWK+ZtMMNukY6XjxYHc7mz33vkquoEzQJHm/LCF5REVxIaexLr+UTImljRRJBdUDJluDAQwU+59IX0rFDfURA==", - "path": "microsoft.aspnetcore.razor.design/2.2.0", - "hashPath": "microsoft.aspnetcore.razor.design.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Razor.Language/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IeyzVFXZdpUAnWKWoNYE0SsP1Eu7JLjZaC94jaI1VfGtK57QykROz/iGMc8D0VcqC8i02qYTPQN/wPKm6PfidA==", - "path": "microsoft.aspnetcore.razor.language/2.2.0", - "hashPath": "microsoft.aspnetcore.razor.language.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Razor.Runtime/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7YqK+H61lN6yj9RiQUko7oaOhKtRR9Q/kBcoWNRemhJdTIWOh1OmdvJKzZrMWOlff3BAjejkPQm+0V0qXk+B1w==", - "path": "microsoft.aspnetcore.razor.runtime/2.2.0", - "hashPath": "microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==", - "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Routing/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", - "path": "microsoft.aspnetcore.routing/2.2.0", - "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", - "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", - "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.SignalR/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==", - "path": "microsoft.aspnetcore.signalr/1.1.0", - "hashPath": "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.SignalR.Common/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", - "path": "microsoft.aspnetcore.signalr.common/1.1.0", - "hashPath": "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.SignalR.Core/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", - "path": "microsoft.aspnetcore.signalr.core/1.1.0", - "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", - "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", - "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.StaticFiles/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-byZDrjir6Co5EoWbraQyG0qbPCUG6XgGYQstipMF9lucOAjq/mqnIyt8B8iMWnin/ghZoOln9Y01af4rUAwOhA==", - "path": "microsoft.aspnetcore.staticfiles/2.2.0", - "hashPath": "microsoft.aspnetcore.staticfiles.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.WebSockets/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==", - "path": "microsoft.aspnetcore.websockets/2.2.0", - "hashPath": "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512" - }, - "Microsoft.AspNetCore.WebUtilities/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", - "path": "microsoft.aspnetcore.webutilities/2.2.0", - "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" - }, - "Microsoft.Bcl.AsyncInterfaces/1.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==", - "path": "microsoft.bcl.asyncinterfaces/1.1.1", - "hashPath": "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Analyzers/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", - "path": "microsoft.codeanalysis.analyzers/1.1.0", - "hashPath": "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Common/2.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-06AzG7oOLKTCN1EnoVYL1bQz+Zwa10LMpUn7Kc+PdpN8CQXRqXTyhfxuKIz6t0qWfoatBNXdHD0OLcEYp5pOvQ==", - "path": "microsoft.codeanalysis.common/2.8.0", - "hashPath": "microsoft.codeanalysis.common.2.8.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.CSharp/2.8.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RizcFXuHgGmeuZhxxE1qQdhFA9lGOHlk0MJlCUt6LOnYsevo72gNikPcbANFHY02YK8L/buNrihchY0TroGvXQ==", - "path": "microsoft.codeanalysis.csharp/2.8.0", - "hashPath": "microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512" - }, - "Microsoft.CodeAnalysis.Razor/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2qL0Qyu5qHzg6/JzF80mLgsqn9NP/Q0mQwjH+Z+DiqcuODJx8segjN4un2Tnz6bEAWv8FCRFNXR/s5wzlxqA8A==", - "path": "microsoft.codeanalysis.razor/2.2.0", - "hashPath": "microsoft.codeanalysis.razor.2.2.0.nupkg.sha512" - }, - "Microsoft.CSharp/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", - "path": "microsoft.csharp/4.7.0", - "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" - }, - "Microsoft.Data.SqlClient/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uu8dfrsx081cSbEevWuZAvqdmANDGJkbLBL2G3j0LAZxX1Oy8RCVAaC4Lcuak6jNicWP6CWvHqBTIEmQNSxQlw==", - "path": "microsoft.data.sqlclient/5.0.1", - "hashPath": "microsoft.data.sqlclient.5.0.1.nupkg.sha512" - }, - "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-y0X5MxiNdbITJYoafJ2ruaX6hqO0twpCGR/ipiDOe85JKLU8WL4TuAQfDe5qtt3bND5Je26HnrarLSAMMnVTNg==", - "path": "microsoft.data.sqlclient.sni.runtime/5.0.1", - "hashPath": "microsoft.data.sqlclient.sni.runtime.5.0.1.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore/7.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6XUI2YGoaLMoP9KGaqWmmd4B2n5bpQbXrVRpH20Et3YjQ0Rn3Ia6HM/ANcSq9rBfjfUySgo9SwUZgQ4m4PF3LQ==", - "path": "microsoft.entityframeworkcore/7.0.3", - "hashPath": "microsoft.entityframeworkcore.7.0.3.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Abstractions/7.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0NaFBZykUlQHknddRuKY4v+MFZX/AW+v2V85dgj7abIlt+kL3GWa7QNH5S1084VLf1u+dq1SnhZsOvykc3Y0sA==", - "path": "microsoft.entityframeworkcore.abstractions/7.0.3", - "hashPath": "microsoft.entityframeworkcore.abstractions.7.0.3.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Analyzers/7.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CLyRWFLwaOUZNPEia/aBMzFxZqm/ITKt3B+yUFtrg4Ys5VF3n2gvneuItC9IhpeOcjfdSgu/yUKf8y/IsNHs5A==", - "path": "microsoft.entityframeworkcore.analyzers/7.0.3", - "hashPath": "microsoft.entityframeworkcore.analyzers.7.0.3.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Design/7.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nv0Y2Zh8d919qKq8Q1bvbWQbFeb4JQ7jCuakajSVtip5JIwt4hTIWetVIapJ2vOQDDZuAHCzkjimMOlHH5LVsQ==", - "path": "microsoft.entityframeworkcore.design/7.0.3", - "hashPath": "microsoft.entityframeworkcore.design.7.0.3.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational/7.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RxNNjtTrxsMtdBtgoXGRSy8uCXaBHaVzIonTeo7+Ys+N0yEWwhf2E74cxneyunMi13Ezlld10ecCHlDubEU/Pw==", - "path": "microsoft.entityframeworkcore.relational/7.0.3", - "hashPath": "microsoft.entityframeworkcore.relational.7.0.3.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Relational.Design/1.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WZKmQwuDUTLtjhxT/6c3hiMJTwi8OBl9rsPljY/ZhcMFAsF8sLj4uVrpkuNmrg5DEK2dEtnQn6p+Y9miQiIeZw==", - "path": "microsoft.entityframeworkcore.relational.design/1.1.1", - "hashPath": "microsoft.entityframeworkcore.relational.design.1.1.1.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.SqlServer/7.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WXd8Mg12+LrfuVOfz0YUYsiaIKI0fLTdhN/WdQGxzGM3l86GLdpACUb30Y7oUpMG4YNegerEd0AVLlMpfwOjug==", - "path": "microsoft.entityframeworkcore.sqlserver/7.0.3", - "hashPath": "microsoft.entityframeworkcore.sqlserver.7.0.3.nupkg.sha512" - }, - "Microsoft.EntityFrameworkCore.Tools/7.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yHFlYPZS3Jx7JMCQnGKfJzv95rJWVcmcUn/OW5cbCyWgQk81JJpTZ9Q6kkvwquYjFRfvYHBGuXNIYhAJokOBTQ==", - "path": "microsoft.entityframeworkcore.tools/7.0.3", - "hashPath": "microsoft.entityframeworkcore.tools.7.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/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==", - "path": "microsoft.extensions.caching.abstractions/7.0.0", - "hashPath": "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Caching.Memory/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==", - "path": "microsoft.extensions.caching.memory/7.0.0", - "hashPath": "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tldQUBWt/xeH2K7/hMPPo5g8zuLc3Ro9I5d4o/XrxvxOCA2EZBtW7bCHHTc49fcBtvB8tLAb/Qsmfrq+2SJ4vA==", - "path": "microsoft.extensions.configuration/7.0.0", - "hashPath": "microsoft.extensions.configuration.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==", - "path": "microsoft.extensions.configuration.abstractions/7.0.0", - "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Binder/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", - "path": "microsoft.extensions.configuration.binder/6.0.0", - "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xk2lRJ1RDuqe57BmgvRPyCt6zyePKUmvT6iuXqiHR+/OIIgWVR8Ff5k2p6DwmqY8a17hx/OnrekEhziEIeQP6Q==", - "path": "microsoft.extensions.configuration.fileextensions/7.0.0", - "hashPath": "microsoft.extensions.configuration.fileextensions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Configuration.Json/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LDNYe3uw76W35Jci+be4LDf2lkQZe0A7EEYQVChFbc509CpZ4Iupod8li4PUXPBhEUOFI/rlQNf5xkzJRQGvtA==", - "path": "microsoft.extensions.configuration.json/7.0.0", - "hashPath": "microsoft.extensions.configuration.json.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==", - "path": "microsoft.extensions.dependencyinjection/7.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", - "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", - "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.DependencyModel/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==", - "path": "microsoft.extensions.dependencymodel/7.0.0", - "hashPath": "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NyawiW9ZT/liQb34k9YqBSNPLuuPkrjMgQZ24Y/xXX1RoiBkLUdPMaQTmxhZ5TYu8ZKZ9qayzil75JX95vGQUg==", - "path": "microsoft.extensions.fileproviders.abstractions/7.0.0", - "hashPath": "microsoft.extensions.fileproviders.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Composite/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Az/RxWB+UlyVN/TvQFaGXx8XAXVZN5WQnnuJOsjwBzghSJc1i8zqNjIypPHOedcuIXs2XSWgOSL6YQ3BlCnoJA==", - "path": "microsoft.extensions.fileproviders.composite/2.2.0", - "hashPath": "microsoft.extensions.fileproviders.composite.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Embedded/3.1.22": { - "type": "package", - "serviceable": true, - "sha512": "sha512-4hTeyTOT11sAxbYpvWa0C5AztrcdQTOUdhWN+NW+G3UPVaUziF/JIQWBW/yE2dy5zXJJW9MTYgAsNPtAFH79EA==", - "path": "microsoft.extensions.fileproviders.embedded/3.1.22", - "hashPath": "microsoft.extensions.fileproviders.embedded.3.1.22.nupkg.sha512" - }, - "Microsoft.Extensions.FileProviders.Physical/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-K8D2MTR+EtzkbZ8z80LrG7Ur64R7ZZdRLt1J5cgpc/pUWl0C6IkAUapPuK28oionHueCPELUqq0oYEvZfalNdg==", - "path": "microsoft.extensions.fileproviders.physical/7.0.0", - "hashPath": "microsoft.extensions.fileproviders.physical.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.FileSystemGlobbing/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2jONjKHiF+E92ynz2ZFcr9OvxIw+rTGMPEH+UZGeHTEComVav93jQUWGkso8yWwVBcEJGcNcZAaqY01FFJcj7w==", - "path": "microsoft.extensions.filesystemglobbing/7.0.0", - "hashPath": "microsoft.extensions.filesystemglobbing.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Hosting.Abstractions/3.1.8": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7ZJUKwPipkDvuv2KJPZ3r01wp2AWNMiYH+61i0dL89F7QICknjKpWgLKLpTSUYFgl77S3b4264I6i4HzDdrb2A==", - "path": "microsoft.extensions.hosting.abstractions/3.1.8", - "hashPath": "microsoft.extensions.hosting.abstractions.3.1.8.nupkg.sha512" - }, - "Microsoft.Extensions.Http/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-15+pa2G0bAMHbHewaQIdr/y6ag2H3yh4rd9hTXavtWDzQBkvpe2RMqFg8BxDpcQWssmjmBApGPcw93QRz6YcMg==", - "path": "microsoft.extensions.http/6.0.0", - "hashPath": "microsoft.extensions.http.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Localization/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3nBQLeBrcd4Rgd9vQi4gF5NgAWxnQrHekjjwlgww4wyLNfJDizjiex2resOLoAuAgy3y2IIAWjOpbr0UKR2ykw==", - "path": "microsoft.extensions.localization/2.2.0", - "hashPath": "microsoft.extensions.localization.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.Localization.Abstractions/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FQzXG/lYR9UOM2zHpqsjTRpp3EghIYo3FCsQpfmtbp+glPaU0WXZfNmMjyqBRmMj1Sq93fPnC+G9zzYRauuRQA==", - "path": "microsoft.extensions.localization.abstractions/2.2.0", - "hashPath": "microsoft.extensions.localization.abstractions.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==", - "path": "microsoft.extensions.logging/7.0.0", - "hashPath": "microsoft.extensions.logging.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Abstractions/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", - "path": "microsoft.extensions.logging.abstractions/7.0.0", - "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Configuration/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZDskjagmBAbv+K8rYW9VhjPplhbOE63xUD0DiuydZJwt15dRyoqicYklLd86zzeintUc7AptDkHn+YhhYkYo8A==", - "path": "microsoft.extensions.logging.configuration/6.0.0", - "hashPath": "microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Logging.Console/1.1.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oKfmQdH7c89QyFvolNhwIU3AME0LXOo89DTNbu0c3+b42/0UkJi3fT4Jz6Pg8AY38yYYP7lH/MFVxmbRqiUmhw==", - "path": "microsoft.extensions.logging.console/1.1.1", - "hashPath": "microsoft.extensions.logging.console.1.1.1.nupkg.sha512" - }, - "Microsoft.Extensions.ObjectPool/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", - "path": "microsoft.extensions.objectpool/2.2.0", - "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==", - "path": "microsoft.extensions.options/7.0.0", - "hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", - "path": "microsoft.extensions.options.configurationextensions/6.0.0", - "hashPath": "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.Primitives/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", - "path": "microsoft.extensions.primitives/7.0.0", - "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512" - }, - "Microsoft.Extensions.WebEncoders/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-V8XcqYcpcdBAxUhLeyYcuKmxu4CtNQA9IphTnARpQGhkop4A93v2XgM3AtaVVJo3H2cDWxWM6aeO8HxkifREqw==", - "path": "microsoft.extensions.webencoders/2.2.0", - "hashPath": "microsoft.extensions.webencoders.2.2.0.nupkg.sha512" - }, - "Microsoft.Identity.Client/4.45.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ircobISCLWbtE5eEoLKU+ldfZ8O41vg4lcy38KRj/znH17jvBiAl8oxcyNp89CsuqE3onxIpn21Ca7riyDDrRw==", - "path": "microsoft.identity.client/4.45.0", - "hashPath": "microsoft.identity.client.4.45.0.nupkg.sha512" - }, - "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zVVZjn8aW7W79rC1crioDgdOwaFTQorsSO6RgVlDDjc7MvbEGz071wSNrjVhzR0CdQn6Sefx7Abf1o7vasmrLg==", - "path": "microsoft.identity.client.extensions.msal/2.19.3", - "hashPath": "microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512" - }, - "Microsoft.IdentityModel.Abstractions/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XeE6LQtD719Qs2IG7HDi1TSw9LIkDbJ33xFiOBoHbApVw/8GpIBCbW+t7RwOjErUDyXZvjhZliwRkkLb8Z1uzg==", - "path": "microsoft.identitymodel.abstractions/6.21.0", - "hashPath": "microsoft.identitymodel.abstractions.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-d3h1/BaMeylKTkdP6XwRCxuOoDJZ44V9xaXr6gl5QxmpnZGdoK3bySo3OQN8ehRLJHShb94ElLUvoXyglQtgAw==", - "path": "microsoft.identitymodel.jsonwebtokens/6.21.0", - "hashPath": "microsoft.identitymodel.jsonwebtokens.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Logging/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-tuEhHIQwvBEhMf8I50hy8FHmRSUkffDFP5EdLsSDV4qRcl2wvOPkQxYqEzWkh+ytW6sbdJGEXElGhmhDfAxAKg==", - "path": "microsoft.identitymodel.logging/6.21.0", - "hashPath": "microsoft.identitymodel.logging.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-0FqY5cTLQKtHrClzHEI+QxJl8OBT2vUiEQQB7UKk832JDiJJmetzYZ3AdSrPjN/3l3nkhByeWzXnhrX0JbifKg==", - "path": "microsoft.identitymodel.protocols/6.21.0", - "hashPath": "microsoft.identitymodel.protocols.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-vtSKL7n6EnAsLyxmiviusm6LKrblT2ndnNqN6rvVq6iIHAnPCK9E2DkDx6h1Jrpy1cvbp40r0cnTg23nhEAGTA==", - "path": "microsoft.identitymodel.protocols.openidconnect/6.21.0", - "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.21.0.nupkg.sha512" - }, - "Microsoft.IdentityModel.Tokens/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-AAEHZvZyb597a+QJSmtxH3n2P1nIJGpZ4Q89GTenknRx6T6zyfzf592yW/jA5e8EHN4tNMjjXHQaYWEq5+L05w==", - "path": "microsoft.identitymodel.tokens/6.21.0", - "hashPath": "microsoft.identitymodel.tokens.6.21.0.nupkg.sha512" - }, - "Microsoft.IO.RecyclableMemoryStream/2.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-T5ahjOqWFMTSb9wFHKFNAcGXm35BxbUbwARtAPLSSPPFehcLz5mwDsKO1RR9R2aZ2Lk1BNQC7Ja63onOBE6rpA==", - "path": "microsoft.io.recyclablememorystream/2.2.1", - "hashPath": "microsoft.io.recyclablememorystream.2.2.1.nupkg.sha512" - }, - "Microsoft.Net.Http.Headers/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", - "path": "microsoft.net.http.headers/2.2.0", - "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512" - }, - "Microsoft.NETCore.Platforms/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", - "path": "microsoft.netcore.platforms/5.0.0", - "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" - }, - "Microsoft.NETCore.Targets/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", - "path": "microsoft.netcore.targets/1.1.0", - "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" - }, - "Microsoft.OpenApi/1.4.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==", - "path": "microsoft.openapi/1.4.3", - "hashPath": "microsoft.openapi.1.4.3.nupkg.sha512" - }, - "Microsoft.SqlServer.Server/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", - "path": "microsoft.sqlserver.server/1.0.0", - "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" - }, - "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-gfDtAL1WhkjbRdbZlt/ZeQYCbgRpNCZCGj+yeqHObsNFRDHjq8qZJOX9AyTxJpSRYMi9SJk7JDyAbbVYRgEhAA==", - "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.0", - "hashPath": "microsoft.visualstudio.azure.containers.tools.targets.1.17.0.nupkg.sha512" - }, - "Microsoft.Win32.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", - "path": "microsoft.win32.primitives/4.3.0", - "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" - }, - "Microsoft.Win32.Registry/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", - "path": "microsoft.win32.registry/5.0.0", - "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" - }, - "Microsoft.Win32.SystemEvents/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", - "path": "microsoft.win32.systemevents/7.0.0", - "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512" - }, - "MongoDB.Bson/2.19.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pGp9F2PWU3Dj54PiXKibuaQ5rphWkfp8/Nsy5jLp2dWZGRGlr3r/Lfwnr0PvfihFfxieUcJZ2z3VeO8RctXcvA==", - "path": "mongodb.bson/2.19.0", - "hashPath": "mongodb.bson.2.19.0.nupkg.sha512" - }, - "MongoDB.Driver/2.19.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W/1YByn5gNGfHBe8AyDURXWKn1Z9xJ9IUjplFcvk8B/jlTlDOkmXgmwjlToIdqr0l8rX594kksjGx3a9if3dsg==", - "path": "mongodb.driver/2.19.0", - "hashPath": "mongodb.driver.2.19.0.nupkg.sha512" - }, - "MongoDB.Driver.Core/2.19.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KbzJJJc4EsUZ+YQoe7zZL1OxHVC9RjgQMso2LjhZWnlP+IHSON63vKNt7jGarXrOVXK0DqIUrRwQyXMgmqTX5g==", - "path": "mongodb.driver.core/2.19.0", - "hashPath": "mongodb.driver.core.2.19.0.nupkg.sha512" - }, - "MongoDB.Driver.GridFS/2.19.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-neAIAO+QkawjdOKkewZti9eCAyOe5/WJH4kqAGzWBENDCYSq7r5Q881YO7zToBreHaCxsM4UCG5fSp25oqBlYA==", - "path": "mongodb.driver.gridfs/2.19.0", - "hashPath": "mongodb.driver.gridfs.2.19.0.nupkg.sha512" - }, - "MongoDB.Libmongocrypt/1.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-p9+peTZX63nGHskOLhvhfBtrknxNg1RzXepE07rPozuCGz27bMjCcQyvn2YByg0L3YEcNWdTmI4BlnG/5RF+5Q==", - "path": "mongodb.libmongocrypt/1.7.0", - "hashPath": "mongodb.libmongocrypt.1.7.0.nupkg.sha512" - }, - "Mono.TextTemplating/2.2.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", - "path": "mono.texttemplating/2.2.1", - "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512" - }, - "MySql.Data/8.0.29": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", - "path": "mysql.data/8.0.29", - "hashPath": "mysql.data.8.0.29.nupkg.sha512" - }, - "MySqlConnector/2.2.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6sinY78RvryhHwpup3awdjYO7d5hhWahb5p/1VDODJhSxJggV/sBbYuKK5IQF9TuzXABiddqUbmRfM884tqA3Q==", - "path": "mysqlconnector/2.2.5", - "hashPath": "mysqlconnector.2.2.5.nupkg.sha512" - }, - "NETStandard.Library/1.6.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", - "path": "netstandard.library/1.6.1", - "hashPath": "netstandard.library.1.6.1.nupkg.sha512" - }, - "Newtonsoft.Json/13.0.3": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", - "path": "newtonsoft.json/13.0.3", - "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" - }, - "Newtonsoft.Json.Bson/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", - "path": "newtonsoft.json.bson/1.0.2", - "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" - }, - "NonFactors.Grid.Core.Mvc6/7.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rvPZICY/Gyca1vEuQmxRXR1PHxlxYmw7JzBjAF6wdQy+bXyikT5aq2kWO+4V0wl62uV6u0fFtL6nVnl9IKniXg==", - "path": "nonfactors.grid.core.mvc6/7.1.0", - "hashPath": "nonfactors.grid.core.mvc6.7.1.0.nupkg.sha512" - }, - "Npgsql/6.0.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SJMlOmFHr32oOzVXeHmarGaBKkhi0wHVN/rzuu2tUSJ4Qx2AkHCpr9R/DhLWwDiklqgzFU++9wkFyGJxbx/zzg==", - "path": "npgsql/6.0.4", - "hashPath": "npgsql.6.0.4.nupkg.sha512" - }, - "Pomelo.EntityFrameworkCore.MySql/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Qk5WB/skSZet5Yrz6AN2ywjZaB1pxfAmvQ+5I4khTkLwwIamI4QJoH2NphCWLFQL+2ar8HvsNCTmwYk0qhqL0w==", - "path": "pomelo.entityframeworkcore.mysql/7.0.0", - "hashPath": "pomelo.entityframeworkcore.mysql.7.0.0.nupkg.sha512" - }, - "Pomelo.EntityFrameworkCore.MySql.Design/1.1.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Hzq1gPtZ3+1zuNhOAQea8Q7j6iX0FjRwNp5S30+X0jBdATiLEJvlfQi4wuVQDS5Y2ClYICGynNqAJUR3EtgA5g==", - "path": "pomelo.entityframeworkcore.mysql.design/1.1.2", - "hashPath": "pomelo.entityframeworkcore.mysql.design.1.1.2.nupkg.sha512" - }, - "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", - "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", - "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", - "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.native.System/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", - "path": "runtime.native.system/4.3.0", - "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Data.SqlClient.sni/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", - "path": "runtime.native.system.data.sqlclient.sni/4.7.0", - "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" - }, - "runtime.native.System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", - "path": "runtime.native.system.io.compression/4.3.0", - "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", - "path": "runtime.native.system.net.http/4.3.0", - "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", - "path": "runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", - "path": "runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", - "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", - "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.CoreCompat.System.Drawing/6.0.5.128": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rjnyMb0Tk3k4DB5YeEeUBg9jbOY+VrT84o8Npkxayv2Vz1qSqgCfLATbvZ1oCuplSqHLINsSRMvkDup39pTIPw==", - "path": "runtime.osx.10.10-x64.corecompat.system.drawing/6.0.5.128", - "hashPath": "runtime.osx.10.10-x64.corecompat.system.drawing.6.0.5.128.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" - }, - "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", - "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", - "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", - "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", - "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", - "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", - "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", - "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", - "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", - "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", - "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" - }, - "Sentry/3.29.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-WSkE7LS496it0A9Sbfz7yvsg5/PCzxPAROKtmsZDrdrsks5kzKei9dN9/FeoL3XgUfRv5557jCG961bttTevrg==", - "path": "sentry/3.29.1", - "hashPath": "sentry.3.29.1.nupkg.sha512" - }, - "Sentry.AspNetCore/3.29.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-CfuwP1gL066QOioB9LrHKrEy76ffLH1WCo6nSFpdbLIgrqTWlfhMZ+CcrUzxrqGSJMxFqWw0cg35MlKjB+MS1A==", - "path": "sentry.aspnetcore/3.29.1", - "hashPath": "sentry.aspnetcore.3.29.1.nupkg.sha512" - }, - "Sentry.Extensions.Logging/3.29.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aOm5XFv2RHD39U1qfTS8mHIL4VprO4txFcwL2ANsvGAybbr0g5Crp89ImMNQCLIqWDs6G8oiqE5CfsV+8aSl6g==", - "path": "sentry.extensions.logging/3.29.1", - "hashPath": "sentry.extensions.logging.3.29.1.nupkg.sha512" - }, - "Serilog/2.12.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-xaiJLIdu6rYMKfQMYUZgTy8YK7SMZjB4Yk50C/u//Z4OsvxkUfSPJy4nknfvwAC34yr13q7kcyh4grbwhSxyZg==", - "path": "serilog/2.12.0", - "hashPath": "serilog.2.12.0.nupkg.sha512" - }, - "Serilog.AspNetCore/6.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-iMwFUJDN+/yWIPz4TKCliagJ1Yn//SceCYCzgdPwe/ECYUwb5/WUL8cTzRKV+tFwxGjLEV/xpm0GupS5RwbhSQ==", - "path": "serilog.aspnetcore/6.1.0", - "hashPath": "serilog.aspnetcore.6.1.0.nupkg.sha512" - }, - "Serilog.Enrichers.Environment/2.2.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DMrj3A4l65kc4JouQyZjjFv7N58Y7lGsB81kSzorTwUGeI2wrTy7CVwSOfG90/Pcu/HV5bwGrUmxDZ38pON+5Q==", - "path": "serilog.enrichers.environment/2.2.0", - "hashPath": "serilog.enrichers.environment.2.2.0.nupkg.sha512" - }, - "Serilog.Exceptions/8.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-nc/+hUw3lsdo0zCj0KMIybAu7perMx79vu72w0za9Nsi6mWyNkGXxYxakAjWB7nEmYL6zdmhEQRB4oJ2ALUeug==", - "path": "serilog.exceptions/8.4.0", - "hashPath": "serilog.exceptions.8.4.0.nupkg.sha512" - }, - "Serilog.Extensions.Hosting/5.0.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-o0VUyt3npAqOJaZ6CiWLFeLYs3CYJwfcAqaUqprzsmj7qYIvorcn8cZLVR8AQX6vzX7gee2bD0sQeA17iO2/Aw==", - "path": "serilog.extensions.hosting/5.0.1", - "hashPath": "serilog.extensions.hosting.5.0.1.nupkg.sha512" - }, - "Serilog.Extensions.Logging/3.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==", - "path": "serilog.extensions.logging/3.1.0", - "hashPath": "serilog.extensions.logging.3.1.0.nupkg.sha512" - }, - "Serilog.Formatting.Compact/1.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==", - "path": "serilog.formatting.compact/1.1.0", - "hashPath": "serilog.formatting.compact.1.1.0.nupkg.sha512" - }, - "Serilog.Formatting.Elasticsearch/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-r93M8cn7xlmk4lXzVG8mWxgeEXWZ4wRBSHMEhyYOf3Av7M+HJ4+eYAv5zGrp40OCLkZEPzvjVAqK3KkRzdWhrQ==", - "path": "serilog.formatting.elasticsearch/9.0.0", - "hashPath": "serilog.formatting.elasticsearch.9.0.0.nupkg.sha512" - }, - "Serilog.Settings.Configuration/3.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7GNudISZwqaT902hqEL2OFGTZeUFWfnrNLupJkOqeF41AR3GjcxX+Hwb30xb8gG2/CDXsCMVfF8o0+8KY0fJNg==", - "path": "serilog.settings.configuration/3.3.0", - "hashPath": "serilog.settings.configuration.3.3.0.nupkg.sha512" - }, - "Serilog.Sinks.Console/4.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-K6N5q+5fetjnJPvCmkWOpJ/V8IEIoMIB1s86OzBrbxwTyHxdx3pmz4H+8+O/Dc/ftUX12DM1aynx/dDowkwzqg==", - "path": "serilog.sinks.console/4.1.0", - "hashPath": "serilog.sinks.console.4.1.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.Elasticsearch/9.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ule76W48feKREYBXrZEkqhiwDkwjMsQbvNMQyVVlH61zXg9FyStzjryVHbefLmHOurvRUmtHOUEdkG9gIS2M6Q==", - "path": "serilog.sinks.elasticsearch/9.0.0", - "hashPath": "serilog.sinks.elasticsearch.9.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" - }, - "Serilog.Sinks.PeriodicBatching/3.1.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NDWR7m3PalVlGEq3rzoktrXikjFMLmpwF0HI4sowo8YDdU+gqPlTHlDQiOGxHfB0sTfjPA9JjA7ctKG9zqjGkw==", - "path": "serilog.sinks.periodicbatching/3.1.0", - "hashPath": "serilog.sinks.periodicbatching.3.1.0.nupkg.sha512" - }, - "SharpCompress/0.30.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", - "path": "sharpcompress/0.30.1", - "hashPath": "sharpcompress.0.30.1.nupkg.sha512" - }, - "Snappier/1.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==", - "path": "snappier/1.0.0", - "hashPath": "snappier.1.0.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==", - "path": "swashbuckle.aspnetcore/6.5.0", - "hashPath": "swashbuckle.aspnetcore.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.Annotations/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-EcHd1z2pEdnpaBMTI9qjVxk6mFVGVMZ1n0ySC3fjrkXCQQ8O9fMdt9TxPJRKyjiTiTjvO9700jKjmyl+hPBinQ==", - "path": "swashbuckle.aspnetcore.annotations/6.5.0", - "hashPath": "swashbuckle.aspnetcore.annotations.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.Swagger/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==", - "path": "swashbuckle.aspnetcore.swagger/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==", - "path": "swashbuckle.aspnetcore.swaggergen/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512" - }, - "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==", - "path": "swashbuckle.aspnetcore.swaggerui/6.5.0", - "hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512" - }, - "System.AppContext/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", - "path": "system.appcontext/4.3.0", - "hashPath": "system.appcontext.4.3.0.nupkg.sha512" - }, - "System.Buffers/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", - "path": "system.buffers/4.5.1", - "hashPath": "system.buffers.4.5.1.nupkg.sha512" - }, - "System.CodeDom/4.4.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", - "path": "system.codedom/4.4.0", - "hashPath": "system.codedom.4.4.0.nupkg.sha512" - }, - "System.Collections/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", - "path": "system.collections/4.3.0", - "hashPath": "system.collections.4.3.0.nupkg.sha512" - }, - "System.Collections.Concurrent/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", - "path": "system.collections.concurrent/4.3.0", - "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" - }, - "System.Collections.Immutable/1.3.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", - "path": "system.collections.immutable/1.3.1", - "hashPath": "system.collections.immutable.1.3.1.nupkg.sha512" - }, - "System.ComponentModel.Annotations/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==", - "path": "system.componentmodel.annotations/4.5.0", - "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512" - }, - "System.Configuration.ConfigurationManager/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==", - "path": "system.configuration.configurationmanager/5.0.0", - "hashPath": "system.configuration.configurationmanager.5.0.0.nupkg.sha512" - }, - "System.Console/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", - "path": "system.console/4.3.0", - "hashPath": "system.console.4.3.0.nupkg.sha512" - }, - "System.Data.SqlClient/4.8.5": { - "type": "package", - "serviceable": true, - "sha512": "sha512-fRqxut4lrndPHrXD+ht1XRmCL3obuKldm4XjCRYS9p5f7FSR7shBxAwTkDrpFMsHC9BhNgjjmUtiIjvehn5zkg==", - "path": "system.data.sqlclient/4.8.5", - "hashPath": "system.data.sqlclient.4.8.5.nupkg.sha512" - }, - "System.Diagnostics.Debug/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", - "path": "system.diagnostics.debug/4.3.0", - "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.DiagnosticSource/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", - "path": "system.diagnostics.diagnosticsource/6.0.0", - "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" - }, - "System.Diagnostics.FileVersionInfo/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==", - "path": "system.diagnostics.fileversioninfo/4.3.0", - "hashPath": "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.StackTrace/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", - "path": "system.diagnostics.stacktrace/4.3.0", - "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tools/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", - "path": "system.diagnostics.tools/4.3.0", - "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" - }, - "System.Diagnostics.Tracing/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", - "path": "system.diagnostics.tracing/4.3.0", - "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" - }, - "System.Drawing.Common/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", - "path": "system.drawing.common/7.0.0", - "hashPath": "system.drawing.common.7.0.0.nupkg.sha512" - }, - "System.Dynamic.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", - "path": "system.dynamic.runtime/4.3.0", - "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" - }, - "System.Formats.Asn1/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-+nfpV0afLmvJW8+pLlHxRjz3oZJw4fkyU9MMEaMhCsHi/SN9bGF9q79ROubDiwTiCHezmK0uCWkPP7tGFP/4yg==", - "path": "system.formats.asn1/7.0.0", - "hashPath": "system.formats.asn1.7.0.0.nupkg.sha512" - }, - "System.Globalization/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", - "path": "system.globalization/4.3.0", - "hashPath": "system.globalization.4.3.0.nupkg.sha512" - }, - "System.Globalization.Calendars/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", - "path": "system.globalization.calendars/4.3.0", - "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" - }, - "System.Globalization.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", - "path": "system.globalization.extensions/4.3.0", - "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" - }, - "System.IdentityModel.Tokens.Jwt/6.21.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JRD8AuypBE+2zYxT3dMJomQVsPYsCqlyZhWel3J1d5nzQokSRyTueF+Q4ID3Jcu6zSZKuzOdJ1MLTkbQsDqcvQ==", - "path": "system.identitymodel.tokens.jwt/6.21.0", - "hashPath": "system.identitymodel.tokens.jwt.6.21.0.nupkg.sha512" - }, - "System.IO/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", - "path": "system.io/4.3.0", - "hashPath": "system.io.4.3.0.nupkg.sha512" - }, - "System.IO.Compression/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", - "path": "system.io.compression/4.3.0", - "hashPath": "system.io.compression.4.3.0.nupkg.sha512" - }, - "System.IO.Compression.ZipFile/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", - "path": "system.io.compression.zipfile/4.3.0", - "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", - "path": "system.io.filesystem/4.3.0", - "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" - }, - "System.IO.FileSystem.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", - "path": "system.io.filesystem.primitives/4.3.0", - "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" - }, - "System.IO.Pipelines/4.5.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", - "path": "system.io.pipelines/4.5.2", - "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512" - }, - "System.Linq/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", - "path": "system.linq/4.3.0", - "hashPath": "system.linq.4.3.0.nupkg.sha512" - }, - "System.Linq.Expressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", - "path": "system.linq.expressions/4.3.0", - "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" - }, - "System.Memory/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", - "path": "system.memory/4.5.4", - "hashPath": "system.memory.4.5.4.nupkg.sha512" - }, - "System.Memory.Data/1.0.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", - "path": "system.memory.data/1.0.2", - "hashPath": "system.memory.data.1.0.2.nupkg.sha512" - }, - "System.Net.Http/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", - "path": "system.net.http/4.3.0", - "hashPath": "system.net.http.4.3.0.nupkg.sha512" - }, - "System.Net.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", - "path": "system.net.primitives/4.3.0", - "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" - }, - "System.Net.Sockets/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", - "path": "system.net.sockets/4.3.0", - "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" - }, - "System.Net.WebSockets.WebSocketProtocol/4.5.1": { - "type": "package", - "serviceable": true, - "sha512": "sha512-FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==", - "path": "system.net.websockets.websocketprotocol/4.5.1", - "hashPath": "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512" - }, - "System.Numerics.Vectors/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", - "path": "system.numerics.vectors/4.5.0", - "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" - }, - "System.ObjectModel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", - "path": "system.objectmodel/4.3.0", - "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" - }, - "System.Reflection/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", - "path": "system.reflection/4.3.0", - "hashPath": "system.reflection.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", - "path": "system.reflection.emit/4.3.0", - "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.ILGeneration/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", - "path": "system.reflection.emit.ilgeneration/4.3.0", - "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" - }, - "System.Reflection.Emit.Lightweight/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", - "path": "system.reflection.emit.lightweight/4.3.0", - "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" - }, - "System.Reflection.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", - "path": "system.reflection.extensions/4.3.0", - "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" - }, - "System.Reflection.Metadata/1.4.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-KYPNMDrLB2R+G5JJiJ2fjBpihtktKVIjsirmyyv+VDo5rQkIR9BWeCYM1wDSzbQatWNZ/NQfPsQyTB1Ui3qBfQ==", - "path": "system.reflection.metadata/1.4.2", - "hashPath": "system.reflection.metadata.1.4.2.nupkg.sha512" - }, - "System.Reflection.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", - "path": "system.reflection.primitives/4.3.0", - "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" - }, - "System.Reflection.TypeExtensions/4.7.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VybpaOQQhqE6siHppMktjfGBw1GCwvCqiufqmP8F1nj7fTUNtW35LOEt3UZTEsECfo+ELAl/9o9nJx3U91i7vA==", - "path": "system.reflection.typeextensions/4.7.0", - "hashPath": "system.reflection.typeextensions.4.7.0.nupkg.sha512" - }, - "System.Resources.ResourceManager/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", - "path": "system.resources.resourcemanager/4.3.0", - "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" - }, - "System.Runtime/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", - "path": "system.runtime/4.3.0", - "hashPath": "system.runtime.4.3.0.nupkg.sha512" - }, - "System.Runtime.Caching/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-30D6MkO8WF9jVGWZIP0hmCN8l9BTY4LCsAzLIe4xFSXzs+AjDotR7DpSmj27pFskDURzUvqYYY0ikModgBTxWw==", - "path": "system.runtime.caching/5.0.0", - "hashPath": "system.runtime.caching.5.0.0.nupkg.sha512" - }, - "System.Runtime.CompilerServices.Unsafe/6.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", - "path": "system.runtime.compilerservices.unsafe/6.0.0", - "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" - }, - "System.Runtime.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", - "path": "system.runtime.extensions/4.3.0", - "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" - }, - "System.Runtime.Handles/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", - "path": "system.runtime.handles/4.3.0", - "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", - "path": "system.runtime.interopservices/4.3.0", - "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" - }, - "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", - "path": "system.runtime.interopservices.runtimeinformation/4.3.0", - "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" - }, - "System.Runtime.Numerics/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", - "path": "system.runtime.numerics/4.3.0", - "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" - }, - "System.Security.AccessControl/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", - "path": "system.security.accesscontrol/5.0.0", - "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Algorithms/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", - "path": "system.security.cryptography.algorithms/4.3.0", - "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Cng/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", - "path": "system.security.cryptography.cng/5.0.0", - "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Csp/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", - "path": "system.security.cryptography.csp/4.3.0", - "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", - "path": "system.security.cryptography.encoding/4.3.0", - "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.OpenSsl/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", - "path": "system.security.cryptography.openssl/4.3.0", - "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Pkcs/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-mjUbEXkR6DYRef6dnEYKdfec9otcAkibExL+1f9hmbGlWIUyaCnS3Y3oGZEet38waXmuY1ORE8vgv4sgD5nMYg==", - "path": "system.security.cryptography.pkcs/7.0.0", - "hashPath": "system.security.cryptography.pkcs.7.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.Primitives/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", - "path": "system.security.cryptography.primitives/4.3.0", - "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.ProtectedData/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==", - "path": "system.security.cryptography.protecteddata/5.0.0", - "hashPath": "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512" - }, - "System.Security.Cryptography.X509Certificates/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", - "path": "system.security.cryptography.x509certificates/4.3.0", - "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" - }, - "System.Security.Cryptography.Xml/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-i2Jn6rGXR63J0zIklImGRkDIJL4b1NfPSEbIVHBlqoIb12lfXIigCbDRpDmIEzwSo/v1U5y/rYJdzZYSyCWxvg==", - "path": "system.security.cryptography.xml/4.5.0", - "hashPath": "system.security.cryptography.xml.4.5.0.nupkg.sha512" - }, - "System.Security.Permissions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==", - "path": "system.security.permissions/5.0.0", - "hashPath": "system.security.permissions.5.0.0.nupkg.sha512" - }, - "System.Security.Principal.Windows/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", - "path": "system.security.principal.windows/5.0.0", - "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" - }, - "System.Text.Encoding/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", - "path": "system.text.encoding/4.3.0", - "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" - }, - "System.Text.Encoding.CodePages/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LSyCblMpvOe0N3E+8e0skHcrIhgV2huaNcjUUEa8hRtgEAm36aGkRoC8Jxlb6Ra6GSfF29ftduPNywin8XolzQ==", - "path": "system.text.encoding.codepages/7.0.0", - "hashPath": "system.text.encoding.codepages.7.0.0.nupkg.sha512" - }, - "System.Text.Encoding.Extensions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", - "path": "system.text.encoding.extensions/4.3.0", - "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" - }, - "System.Text.Encodings.Web/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", - "path": "system.text.encodings.web/7.0.0", - "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" - }, - "System.Text.Json/7.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==", - "path": "system.text.json/7.0.0", - "hashPath": "system.text.json.7.0.0.nupkg.sha512" - }, - "System.Text.RegularExpressions/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", - "path": "system.text.regularexpressions/4.3.0", - "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" - }, - "System.Threading/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", - "path": "system.threading/4.3.0", - "hashPath": "system.threading.4.3.0.nupkg.sha512" - }, - "System.Threading.Channels/4.5.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", - "path": "system.threading.channels/4.5.0", - "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" - }, - "System.Threading.Tasks/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", - "path": "system.threading.tasks/4.3.0", - "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" - }, - "System.Threading.Tasks.Extensions/4.5.4": { - "type": "package", - "serviceable": true, - "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", - "path": "system.threading.tasks.extensions/4.5.4", - "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" - }, - "System.Threading.Tasks.Parallel/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==", - "path": "system.threading.tasks.parallel/4.3.0", - "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" - }, - "System.Threading.Thread/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", - "path": "system.threading.thread/4.3.0", - "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" - }, - "System.Threading.Timer/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", - "path": "system.threading.timer/4.3.0", - "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" - }, - "System.ValueTuple/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==", - "path": "system.valuetuple/4.3.0", - "hashPath": "system.valuetuple.4.3.0.nupkg.sha512" - }, - "System.Windows.Extensions/5.0.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==", - "path": "system.windows.extensions/5.0.0", - "hashPath": "system.windows.extensions.5.0.0.nupkg.sha512" - }, - "System.Xml.ReaderWriter/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", - "path": "system.xml.readerwriter/4.3.0", - "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" - }, - "System.Xml.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", - "path": "system.xml.xdocument/4.3.0", - "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XmlDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", - "path": "system.xml.xmldocument/4.3.0", - "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", - "path": "system.xml.xpath/4.3.0", - "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" - }, - "System.Xml.XPath.XDocument/4.3.0": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==", - "path": "system.xml.xpath.xdocument/4.3.0", - "hashPath": "system.xml.xpath.xdocument.4.3.0.nupkg.sha512" - }, - "WatchDog.NET/1.4.6": { - "type": "package", - "serviceable": true, - "sha512": "sha512-TnzNYo82CnfSWnDE3Sur/sVrfOP+lD0lVH5LIG3FrByIH+ue+ns7KepWxVy9SmqeUIBNk5wnp790q4Rsy8KIUw==", - "path": "watchdog.net/1.4.6", - "hashPath": "watchdog.net.1.4.6.nupkg.sha512" - }, - "ZstdSharp.Port/0.6.2": { - "type": "package", - "serviceable": true, - "sha512": "sha512-jPao/LdUNLUz8rn3H1D8W7wQbZsRZM0iayvWI4xGejJg3XJHT56gcmYdgmCGPdJF1UEBqUjucCRrFB+4HbJsbw==", - "path": "zstdsharp.port/0.6.2", - "hashPath": "zstdsharp.port.0.6.2.nupkg.sha512" - } - } +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": { + "BMA.EHR.Recruit.Service/1.0.0": { + "dependencies": { + "AWSSDK.S3": "3.7.103.35", + "CoreAdmin": "2.7.0", + "EPPlus": "6.1.3", + "Microsoft.AspNetCore.Authentication.JwtBearer": "7.0.3", + "Microsoft.AspNetCore.Mvc.NewtonsoftJson": "7.0.3", + "Microsoft.AspNetCore.Mvc.Versioning": "5.0.0", + "Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer": "5.0.0", + "Microsoft.AspNetCore.OpenApi": "7.0.3", + "Microsoft.EntityFrameworkCore": "7.0.3", + "Microsoft.EntityFrameworkCore.SqlServer": "7.0.3", + "Microsoft.EntityFrameworkCore.Tools": "7.0.3", + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": "1.17.0", + "MongoDB.Driver": "2.19.0", + "MongoDB.Driver.GridFS": "2.19.0", + "NEST": "7.17.5", + "Newtonsoft.Json": "13.0.3", + "Pomelo.EntityFrameworkCore.MySql": "7.0.0", + "Pomelo.EntityFrameworkCore.MySql.Design": "1.1.2", + "Sentry.AspNetCore": "3.29.1", + "Serilog.AspNetCore": "6.1.0", + "Serilog.Enrichers.Environment": "2.2.0", + "Serilog.Exceptions": "8.4.0", + "Serilog.Sinks.Console": "4.1.0", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.Elasticsearch": "9.0.0", + "Swashbuckle.AspNetCore": "6.5.0", + "Swashbuckle.AspNetCore.Annotations": "6.5.0", + "WatchDog.NET": "1.4.6", + "runtime.osx.10.10-x64.CoreCompat.System.Drawing": "6.0.5.128" + }, + "runtime": { + "BMA.EHR.Recruit.Service.dll": {} + } + }, + "AWSSDK.Core/3.7.106.5": { + "runtime": { + "lib/netcoreapp3.1/AWSSDK.Core.dll": { + "assemblyVersion": "3.3.0.0", + "fileVersion": "3.7.106.5" + } + } + }, + "AWSSDK.S3/3.7.103.35": { + "dependencies": { + "AWSSDK.Core": "3.7.106.5" + }, + "runtime": { + "lib/netcoreapp3.1/AWSSDK.S3.dll": { + "assemblyVersion": "3.3.0.0", + "fileVersion": "3.7.103.35" + } + } + }, + "AWSSDK.SecurityToken/3.7.100.14": { + "dependencies": { + "AWSSDK.Core": "3.7.106.5" + }, + "runtime": { + "lib/netcoreapp3.1/AWSSDK.SecurityToken.dll": { + "assemblyVersion": "3.3.0.0", + "fileVersion": "3.7.100.14" + } + } + }, + "Azure.Core/1.24.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.1", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Memory.Data": "1.0.2", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "7.0.0", + "System.Text.Json": "7.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/net5.0/Azure.Core.dll": { + "assemblyVersion": "1.24.0.0", + "fileVersion": "1.2400.22.20404" + } + } + }, + "Azure.Identity/1.6.0": { + "dependencies": { + "Azure.Core": "1.24.0", + "Microsoft.Identity.Client": "4.45.0", + "Microsoft.Identity.Client.Extensions.Msal": "2.19.3", + "System.Memory": "4.5.4", + "System.Security.Cryptography.ProtectedData": "5.0.0", + "System.Text.Json": "7.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "assemblyVersion": "1.6.0.0", + "fileVersion": "1.600.22.20503" + } + } + }, + "BouncyCastle.NetCore/1.8.5": { + "runtime": { + "lib/netstandard2.0/BouncyCastle.Crypto.dll": { + "assemblyVersion": "1.8.5.0", + "fileVersion": "1.8.19031.1" + } + } + }, + "CoreAdmin/2.7.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "7.0.3", + "NonFactors.Grid.Core.Mvc6": "7.1.0" + }, + "runtime": { + "lib/net7.0/DotNetEd.CoreAdmin.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Dapper/2.0.123": { + "runtime": { + "lib/net5.0/Dapper.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.123.33578" + } + } + }, + "DnsClient/1.6.1": { + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0" + }, + "runtime": { + "lib/net5.0/DnsClient.dll": { + "assemblyVersion": "1.6.1.0", + "fileVersion": "1.6.1.0" + } + } + }, + "Elasticsearch.Net/7.17.5": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "System.Buffers": "4.5.1", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/Elasticsearch.Net.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.17.5.0" + } + } + }, + "EPPlus/6.1.3": { + "dependencies": { + "EPPlus.Interfaces": "6.1.1", + "EPPlus.System.Drawing": "6.1.1", + "Microsoft.Extensions.Configuration.Json": "7.0.0", + "Microsoft.IO.RecyclableMemoryStream": "2.2.1", + "System.Security.Cryptography.Pkcs": "7.0.0", + "System.Text.Encoding.CodePages": "7.0.0" + }, + "runtime": { + "lib/net7.0/EPPlus.dll": { + "assemblyVersion": "6.1.3.0", + "fileVersion": "6.1.3.0" + } + } + }, + "EPPlus.Interfaces/6.1.1": { + "runtime": { + "lib/net7.0/EPPlus.Interfaces.dll": { + "assemblyVersion": "6.1.1.0", + "fileVersion": "6.1.1.0" + } + } + }, + "EPPlus.System.Drawing/6.1.1": { + "dependencies": { + "EPPlus.Interfaces": "6.1.1", + "System.Drawing.Common": "7.0.0" + }, + "runtime": { + "lib/net7.0/EPPlus.System.Drawing.dll": { + "assemblyVersion": "6.1.1.0", + "fileVersion": "6.1.1.0" + } + } + }, + "Google.Protobuf/3.19.4": { + "runtime": { + "lib/net5.0/Google.Protobuf.dll": { + "assemblyVersion": "3.19.4.0", + "fileVersion": "3.19.4.0" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "K4os.Compression.LZ4/1.2.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Compression.LZ4.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "dependencies": { + "K4os.Compression.LZ4": "1.2.6", + "K4os.Hash.xxHash": "1.0.6" + }, + "runtime": { + "lib/netstandard2.1/K4os.Compression.LZ4.Streams.dll": { + "assemblyVersion": "1.2.6.0", + "fileVersion": "1.2.6.0" + } + } + }, + "K4os.Hash.xxHash/1.0.6": { + "dependencies": { + "System.Memory": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/K4os.Hash.xxHash.dll": { + "assemblyVersion": "1.0.6.0", + "fileVersion": "1.0.6.0" + } + } + }, + "LiteDB/5.0.11": { + "runtime": { + "lib/netstandard2.0/LiteDB.dll": { + "assemblyVersion": "5.0.11.0", + "fileVersion": "5.0.11.0" + } + } + }, + "Microsoft.AspNetCore.Antiforgery/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.DataProtection": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0" + } + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + } + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0" + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/7.0.3": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.21.0" + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "7.0.3.0", + "fileVersion": "7.0.323.8009" + } + } + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + } + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Authorization": "2.2.0" + } + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.IO.Pipelines": "4.5.2" + } + }, + "Microsoft.AspNetCore.Cors/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": {}, + "Microsoft.AspNetCore.DataProtection/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "2.2.0", + "Microsoft.AspNetCore.DataProtection.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Security.Cryptography.Xml": "4.5.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": {}, + "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": {}, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.Hosting.Abstractions": "3.1.8" + } + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" + } + }, + "Microsoft.AspNetCore.Html.Abstractions/2.2.0": { + "dependencies": { + "System.Text.Encodings.Web": "7.0.0" + } + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.WebUtilities": "2.2.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "7.0.0", + "Microsoft.Net.Http.Headers": "2.2.0" + } + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Features": "2.2.0", + "System.Text.Encodings.Web": "7.0.0" + } + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Connections.Common": "1.1.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.WebSockets": "2.2.0", + "Newtonsoft.Json": "13.0.3", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Newtonsoft.Json": "13.0.3", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + } + }, + "Microsoft.AspNetCore.JsonPatch/7.0.3": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.JsonPatch.dll": { + "assemblyVersion": "7.0.3.0", + "fileVersion": "7.0.323.8009" + } + } + }, + "Microsoft.AspNetCore.Localization/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Localization.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + } + }, + "Microsoft.AspNetCore.Mvc/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Analyzers": "2.2.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "2.2.0", + "Microsoft.AspNetCore.Mvc.Cors": "2.2.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.2.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.2.0", + "Microsoft.AspNetCore.Mvc.Localization": "2.2.0", + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.2.0", + "Microsoft.AspNetCore.Mvc.RazorPages": "2.2.0", + "Microsoft.AspNetCore.Mvc.TagHelpers": "2.2.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.2.0", + "Microsoft.AspNetCore.Razor.Design": "2.2.0", + "Microsoft.Extensions.Caching.Memory": "7.0.0", + "Microsoft.Extensions.DependencyInjection": "7.0.0" + } + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Net.Http.Headers": "2.2.0" + } + }, + "Microsoft.AspNetCore.Mvc.Analyzers/2.2.0": {}, + "Microsoft.AspNetCore.Mvc.ApiExplorer/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Core": "2.2.0" + } + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.Core": "2.2.0", + "Microsoft.AspNetCore.Authorization.Policy": "2.2.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "2.2.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Routing": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.DependencyModel": "7.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Threading.Tasks.Extensions": "4.5.4" + } + }, + "Microsoft.AspNetCore.Mvc.Cors/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Cors": "2.2.0", + "Microsoft.AspNetCore.Mvc.Core": "2.2.0" + } + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Core": "2.2.0", + "Microsoft.Extensions.Localization": "2.2.0", + "System.ComponentModel.Annotations": "4.5.0" + } + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "7.0.3", + "Microsoft.AspNetCore.Mvc.Core": "2.2.0" + } + }, + "Microsoft.AspNetCore.Mvc.Localization/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Localization": "2.2.0", + "Microsoft.AspNetCore.Mvc.Razor": "2.2.0", + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.Localization": "2.2.0" + } + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.3": { + "dependencies": { + "Microsoft.AspNetCore.JsonPatch": "7.0.3", + "Newtonsoft.Json": "13.0.3", + "Newtonsoft.Json.Bson": "1.0.2" + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll": { + "assemblyVersion": "7.0.3.0", + "fileVersion": "7.0.323.8009" + } + } + }, + "Microsoft.AspNetCore.Mvc.Razor/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "2.2.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "2.2.0", + "Microsoft.AspNetCore.Razor.Runtime": "2.2.0", + "Microsoft.CodeAnalysis.CSharp": "2.8.0", + "Microsoft.CodeAnalysis.Razor": "2.2.0", + "Microsoft.Extensions.Caching.Memory": "7.0.0", + "Microsoft.Extensions.FileProviders.Composite": "2.2.0" + } + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "2.2.0", + "Microsoft.CodeAnalysis.Razor": "2.2.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Mvc.RazorPages/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor": "2.2.0" + } + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor": "2.2.0", + "Microsoft.AspNetCore.Razor.Runtime": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Caching.Memory": "7.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + } + }, + "Microsoft.AspNetCore.Mvc.Versioning/5.0.0": { + "runtime": { + "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.7710.5690" + } + } + }, + "Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer/5.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Versioning": "5.0.0" + }, + "runtime": { + "lib/net5.0/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.7710.5714" + } + } + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Antiforgery": "2.2.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Html.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Mvc.Core": "2.2.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "2.2.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "2.2.0", + "Microsoft.Extensions.WebEncoders": "2.2.0", + "Newtonsoft.Json.Bson": "1.0.2" + } + }, + "Microsoft.AspNetCore.OpenApi/7.0.3": { + "dependencies": { + "Microsoft.OpenApi": "1.4.3" + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "7.0.3.0", + "fileVersion": "7.0.323.8009" + } + } + }, + "Microsoft.AspNetCore.Razor/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Html.Abstractions": "2.2.0" + } + }, + "Microsoft.AspNetCore.Razor.Design/2.2.0": {}, + "Microsoft.AspNetCore.Razor.Language/2.2.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.AspNetCore.Razor.Runtime/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Html.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Razor": "2.2.0" + } + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + } + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.AspNetCore.Routing.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.ObjectPool": "2.2.0", + "Microsoft.Extensions.Options": "7.0.0" + } + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0" + } + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Connections": "1.1.0", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0" + } + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Connections.Abstractions": "2.2.0", + "Microsoft.Extensions.Options": "7.0.0", + "Newtonsoft.Json": "13.0.3", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.Authorization": "2.2.0", + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "1.1.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "System.Reflection.Emit": "4.3.0", + "System.Threading.Channels": "4.5.0" + } + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "dependencies": { + "Microsoft.AspNetCore.SignalR.Common": "1.1.0", + "Newtonsoft.Json": "13.0.3" + } + }, + "Microsoft.AspNetCore.StaticFiles/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Hosting.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.WebEncoders": "2.2.0" + } + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Http.Extensions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0", + "System.Net.WebSockets.WebSocketProtocol": "4.5.1" + } + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "dependencies": { + "Microsoft.Net.Http.Headers": "2.2.0", + "System.Text.Encodings.Web": "7.0.0" + } + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "4.700.20.21406" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": {}, + "Microsoft.CodeAnalysis.Common/2.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "1.1.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Collections.Immutable": "1.3.1", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.FileVersionInfo": "4.3.0", + "System.Diagnostics.StackTrace": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Dynamic.Runtime": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.2", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.CodePages": "7.0.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Parallel": "4.3.0", + "System.Threading.Thread": "4.3.0", + "System.ValueTuple": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0", + "System.Xml.XPath.XDocument": "4.3.0", + "System.Xml.XmlDocument": "4.3.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "2.8.0.0", + "fileVersion": "2.8.0.62830" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/2.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "2.8.0" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "2.8.0.0", + "fileVersion": "2.8.0.62830" + } + } + }, + "Microsoft.CodeAnalysis.Razor/2.2.0": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "2.2.0", + "Microsoft.CodeAnalysis.CSharp": "2.8.0", + "Microsoft.CodeAnalysis.Common": "2.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.0.18316" + } + } + }, + "Microsoft.CSharp/4.7.0": {}, + "Microsoft.Data.SqlClient/5.0.1": { + "dependencies": { + "Azure.Identity": "1.6.0", + "Microsoft.Data.SqlClient.SNI.runtime": "5.0.1", + "Microsoft.Identity.Client": "4.45.0", + "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.21.0", + "Microsoft.SqlServer.Server": "1.0.0", + "Microsoft.Win32.Registry": "5.0.0", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime.Caching": "5.0.0", + "System.Security.Cryptography.Cng": "5.0.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Text.Encoding.CodePages": "7.0.0", + "System.Text.Encodings.Web": "7.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + }, + "runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "5.0.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "5.0.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "5.0.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "5.0.1.0" + } + } + }, + "Microsoft.EntityFrameworkCore/7.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "7.0.3", + "Microsoft.EntityFrameworkCore.Analyzers": "7.0.3", + "Microsoft.Extensions.Caching.Memory": "7.0.0", + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.Logging": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "7.0.3.0", + "fileVersion": "7.0.323.6302" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/7.0.3": { + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "7.0.3.0", + "fileVersion": "7.0.323.6302" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/7.0.3": {}, + "Microsoft.EntityFrameworkCore.Design/7.0.3": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.EntityFrameworkCore.Relational": "7.0.3", + "Microsoft.Extensions.DependencyModel": "7.0.0", + "Mono.TextTemplating": "2.2.1" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "7.0.3.0", + "fileVersion": "7.0.323.6302" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/7.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "7.0.3", + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "7.0.3.0", + "fileVersion": "7.0.323.6302" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational.Design/1.1.1": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "7.0.3", + "NETStandard.Library": "1.6.1" + }, + "runtime": { + "lib/netstandard1.3/Microsoft.EntityFrameworkCore.Relational.Design.dll": { + "assemblyVersion": "1.1.1.0", + "fileVersion": "1.1.1.30217" + } + } + }, + "Microsoft.EntityFrameworkCore.SqlServer/7.0.3": { + "dependencies": { + "Microsoft.Data.SqlClient": "5.0.1", + "Microsoft.EntityFrameworkCore.Relational": "7.0.3" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "assemblyVersion": "7.0.3.0", + "fileVersion": "7.0.323.6302" + } + } + }, + "Microsoft.EntityFrameworkCore.Tools/7.0.3": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "7.0.3" + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.Extensions.Caching.Abstractions/7.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/7.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + } + }, + "Microsoft.Extensions.Configuration/7.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + } + }, + "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + } + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" + } + }, + "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "7.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", + "Microsoft.Extensions.FileProviders.Physical": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + } + }, + "Microsoft.Extensions.Configuration.Json/7.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "7.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "7.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", + "System.Text.Json": "7.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {}, + "Microsoft.Extensions.DependencyModel/7.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "7.0.0", + "System.Text.Json": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Composite/2.2.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Embedded/3.1.22": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0" + } + }, + "Microsoft.Extensions.FileProviders.Physical/7.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/7.0.0": {}, + "Microsoft.Extensions.Hosting.Abstractions/3.1.8": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0" + } + }, + "Microsoft.Extensions.Http/6.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + } + }, + "Microsoft.Extensions.Localization/2.2.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Localization.Abstractions": "2.2.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + } + }, + "Microsoft.Extensions.Localization.Abstractions/2.2.0": {}, + "Microsoft.Extensions.Logging/7.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": {}, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration": "7.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0" + } + }, + "Microsoft.Extensions.Logging.Console/1.1.1": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "NETStandard.Library": "1.6.1" + } + }, + "Microsoft.Extensions.ObjectPool/2.2.0": {}, + "Microsoft.Extensions.Options/7.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + } + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "dependencies": { + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0", + "Microsoft.Extensions.Configuration.Binder": "6.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + } + }, + "Microsoft.Extensions.Primitives/7.0.0": {}, + "Microsoft.Extensions.WebEncoders/2.2.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0", + "System.Text.Encodings.Web": "7.0.0" + } + }, + "Microsoft.Identity.Client/4.45.0": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.21.0" + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.45.0.0", + "fileVersion": "4.45.0.0" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { + "dependencies": { + "Microsoft.Identity.Client": "4.45.0", + "System.Security.Cryptography.ProtectedData": "5.0.0" + }, + "runtime": { + "lib/netcoreapp2.1/Microsoft.Identity.Client.Extensions.Msal.dll": { + "assemblyVersion": "2.19.3.0", + "fileVersion": "2.19.3.0" + } + } + }, + "Microsoft.IdentityModel.Abstractions/6.21.0": { + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "6.21.0.0", + "fileVersion": "6.21.0.30701" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.21.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.21.0.0", + "fileVersion": "6.21.0.30701" + } + } + }, + "Microsoft.IdentityModel.Logging/6.21.0": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.21.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.21.0.0", + "fileVersion": "6.21.0.30701" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.21.0": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.21.0", + "Microsoft.IdentityModel.Tokens": "6.21.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.21.0.0", + "fileVersion": "6.21.0.30701" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.21.0", + "System.IdentityModel.Tokens.Jwt": "6.21.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.21.0.0", + "fileVersion": "6.21.0.30701" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.21.0": { + "dependencies": { + "Microsoft.CSharp": "4.7.0", + "Microsoft.IdentityModel.Logging": "6.21.0", + "System.Security.Cryptography.Cng": "5.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.21.0.0", + "fileVersion": "6.21.0.30701" + } + } + }, + "Microsoft.IO.RecyclableMemoryStream/2.2.1": { + "runtime": { + "lib/net5.0/Microsoft.IO.RecyclableMemoryStream.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + } + } + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0", + "System.Buffers": "4.5.1" + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.NETCore.Targets/1.1.0": {}, + "Microsoft.OpenApi/1.4.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.4.3.0", + "fileVersion": "1.4.3.0" + } + } + }, + "Microsoft.SqlServer.Server/1.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.0": {}, + "Microsoft.Win32.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "Microsoft.Win32.Registry/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "MongoDB.Bson/2.19.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Bson.dll": { + "assemblyVersion": "2.19.0.0", + "fileVersion": "2.19.0.0" + } + } + }, + "MongoDB.Driver/2.19.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "MongoDB.Bson": "2.19.0", + "MongoDB.Driver.Core": "2.19.0", + "MongoDB.Libmongocrypt": "1.7.0" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.dll": { + "assemblyVersion": "2.19.0.0", + "fileVersion": "2.19.0.0" + } + } + }, + "MongoDB.Driver.Core/2.19.0": { + "dependencies": { + "AWSSDK.SecurityToken": "3.7.100.14", + "DnsClient": "1.6.1", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "MongoDB.Bson": "2.19.0", + "MongoDB.Libmongocrypt": "1.7.0", + "SharpCompress": "0.30.1", + "Snappier": "1.0.0", + "System.Buffers": "4.5.1", + "ZstdSharp.Port": "0.6.2" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.Core.dll": { + "assemblyVersion": "2.19.0.0", + "fileVersion": "2.19.0.0" + } + } + }, + "MongoDB.Driver.GridFS/2.19.0": { + "dependencies": { + "MongoDB.Bson": "2.19.0", + "MongoDB.Driver": "2.19.0", + "MongoDB.Driver.Core": "2.19.0" + }, + "runtime": { + "lib/netstandard2.1/MongoDB.Driver.GridFS.dll": { + "assemblyVersion": "2.19.0.0", + "fileVersion": "2.19.0.0" + } + } + }, + "MongoDB.Libmongocrypt/1.7.0": { + "runtime": { + "lib/netstandard2.1/MongoDB.Libmongocrypt.dll": { + "assemblyVersion": "1.7.0.0", + "fileVersion": "1.7.0.0" + } + }, + "runtimeTargets": { + "runtimes/linux/native/libmongocrypt.so": { + "rid": "linux", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx/native/libmongocrypt.dylib": { + "rid": "osx", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/win/native/mongocrypt.dll": { + "rid": "win", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "Mono.TextTemplating/2.2.1": { + "dependencies": { + "System.CodeDom": "4.4.0" + }, + "runtime": { + "lib/netstandard2.0/Mono.TextTemplating.dll": { + "assemblyVersion": "2.2.0.0", + "fileVersion": "2.2.1.1" + } + } + }, + "MySql.Data/8.0.29": { + "dependencies": { + "BouncyCastle.NetCore": "1.8.5", + "Google.Protobuf": "3.19.4", + "K4os.Compression.LZ4.Streams": "1.2.6", + "System.Buffers": "4.5.1", + "System.Configuration.ConfigurationManager": "5.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0", + "System.Security.Permissions": "5.0.0", + "System.Text.Encoding.CodePages": "7.0.0" + }, + "runtime": { + "lib/net6.0/MySql.Data.dll": { + "assemblyVersion": "8.0.29.0", + "fileVersion": "8.0.29.0" + }, + "lib/net6.0/Ubiety.Dns.Core.dll": { + "assemblyVersion": "2.2.1.0", + "fileVersion": "2.2.1.0" + }, + "lib/net6.0/ZstdNet.dll": { + "assemblyVersion": "1.4.5.0", + "fileVersion": "1.4.5.0" + } + } + }, + "MySqlConnector/2.2.5": { + "runtime": { + "lib/net7.0/MySqlConnector.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.2.5.0" + } + } + }, + "NEST/7.17.5": { + "dependencies": { + "Elasticsearch.Net": "7.17.5" + }, + "runtime": { + "lib/netstandard2.0/Nest.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.17.5.0" + } + } + }, + "NETStandard.Library/1.6.1": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.Win32.Primitives": "4.3.0", + "System.AppContext": "4.3.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Console": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.Compression.ZipFile": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.Net.Http": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Net.Sockets": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.InteropServices.RuntimeInformation": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Timer": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0" + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Newtonsoft.Json.Bson/1.0.2": { + "dependencies": { + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.Bson.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.2.22727" + } + } + }, + "NonFactors.Grid.Core.Mvc6/7.1.0": { + "runtime": { + "lib/net6.0/Mvc.Grid.Core.dll": { + "assemblyVersion": "7.1.0.0", + "fileVersion": "7.1.0.0" + } + } + }, + "Npgsql/6.0.4": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net6.0/Npgsql.dll": { + "assemblyVersion": "6.0.4.0", + "fileVersion": "6.0.4.0" + } + } + }, + "Pomelo.EntityFrameworkCore.MySql/7.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "7.0.3", + "MySqlConnector": "2.2.5" + }, + "runtime": { + "lib/net7.0/Pomelo.EntityFrameworkCore.MySql.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.0.0" + } + } + }, + "Pomelo.EntityFrameworkCore.MySql.Design/1.1.2": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational.Design": "1.1.1", + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.Logging.Console": "1.1.1", + "MySqlConnector": "2.2.5", + "NETStandard.Library": "1.6.1", + "Pomelo.EntityFrameworkCore.MySql": "7.0.0" + }, + "runtime": { + "lib/netstandard1.3/Pomelo.EntityFrameworkCore.MySql.Design.dll": { + "assemblyVersion": "1.1.1.0", + "fileVersion": "1.1.1.0" + } + } + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.native.System/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "dependencies": { + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni": "4.4.0", + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni": "4.4.0" + } + }, + "runtime.native.System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "dependencies": { + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "4.3.0" + } + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.osx.10.10-x64.CoreCompat.System.Drawing/6.0.5.128": { + "runtime": { + "lib/netstandard2.0/runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll": { + "assemblyVersion": "6.0.5.128", + "fileVersion": "6.0.5.128" + } + }, + "runtimeTargets": { + "runtimes/osx-x64/native/libX11.6.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libXau.6.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libXdmcp.6.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libXext.6.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libXrender.1.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libcairo.2.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libfontconfig.1.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libfreetype.6.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libgdiplus.0.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libgdiplus.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libgif.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libglib-2.0.0.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libintl.8.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libjpeg.9.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libpcre.1.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libpixman-1.0.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libpng16.16.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libtiff.5.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libxcb-render.0.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libxcb-shm.0.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + }, + "runtimes/osx-x64/native/libxcb.1.dylib": { + "rid": "osx-x64", + "assetType": "native", + "fileVersion": "0.0.0.0" + } + } + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": {}, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": {}, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-arm64/native/sni.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x64/native/sni.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "runtimeTargets": { + "runtimes/win-x86/native/sni.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "4.6.25512.1" + } + } + }, + "Sentry/3.29.1": { + "runtime": { + "lib/net6.0/Sentry.dll": { + "assemblyVersion": "3.29.1.0", + "fileVersion": "3.29.1.0" + } + } + }, + "Sentry.AspNetCore/3.29.1": { + "dependencies": { + "Sentry.Extensions.Logging": "3.29.1" + }, + "runtime": { + "lib/net6.0/Sentry.AspNetCore.dll": { + "assemblyVersion": "3.29.1.0", + "fileVersion": "3.29.1.0" + } + } + }, + "Sentry.Extensions.Logging/3.29.1": { + "dependencies": { + "Microsoft.Extensions.Http": "6.0.0", + "Microsoft.Extensions.Logging.Configuration": "6.0.0", + "Sentry": "3.29.1" + }, + "runtime": { + "lib/net6.0/Sentry.Extensions.Logging.dll": { + "assemblyVersion": "3.29.1.0", + "fileVersion": "3.29.1.0" + } + } + }, + "Serilog/2.12.0": { + "runtime": { + "lib/net6.0/Serilog.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.12.0.0" + } + } + }, + "Serilog.AspNetCore/6.1.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.Logging": "7.0.0", + "Serilog": "2.12.0", + "Serilog.Extensions.Hosting": "5.0.1", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Settings.Configuration": "3.3.0", + "Serilog.Sinks.Console": "4.1.0", + "Serilog.Sinks.Debug": "2.0.0", + "Serilog.Sinks.File": "5.0.0" + }, + "runtime": { + "lib/net5.0/Serilog.AspNetCore.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "6.1.0.0" + } + } + }, + "Serilog.Enrichers.Environment/2.2.0": { + "dependencies": { + "Serilog": "2.12.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Enrichers.Environment.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.2.0.0" + } + } + }, + "Serilog.Exceptions/8.4.0": { + "dependencies": { + "Serilog": "2.12.0", + "System.Reflection.TypeExtensions": "4.7.0" + }, + "runtime": { + "lib/net6.0/Serilog.Exceptions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.4.0.0" + } + } + }, + "Serilog.Extensions.Hosting/5.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "3.1.8", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Serilog": "2.12.0", + "Serilog.Extensions.Logging": "3.1.0" + }, + "runtime": { + "lib/netstandard2.1/Serilog.Extensions.Hosting.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "5.0.1.0" + } + } + }, + "Serilog.Extensions.Logging/3.1.0": { + "dependencies": { + "Microsoft.Extensions.Logging": "7.0.0", + "Serilog": "2.12.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Extensions.Logging.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "Serilog.Formatting.Compact/1.1.0": { + "dependencies": { + "Serilog": "2.12.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Compact.dll": { + "assemblyVersion": "1.1.0.0", + "fileVersion": "1.1.0.0" + } + } + }, + "Serilog.Formatting.Elasticsearch/9.0.0": { + "dependencies": { + "Serilog": "2.12.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Formatting.Elasticsearch.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.0.0" + } + } + }, + "Serilog.Settings.Configuration/3.3.0": { + "dependencies": { + "Microsoft.Extensions.DependencyModel": "7.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "6.0.0", + "Serilog": "2.12.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Settings.Configuration.dll": { + "assemblyVersion": "3.3.0.0", + "fileVersion": "3.3.0.0" + } + } + }, + "Serilog.Sinks.Console/4.1.0": { + "dependencies": { + "Serilog": "2.12.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.Console.dll": { + "assemblyVersion": "4.1.0.0", + "fileVersion": "4.1.0.0" + } + } + }, + "Serilog.Sinks.Debug/2.0.0": { + "dependencies": { + "Serilog": "2.12.0" + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.Debug.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Serilog.Sinks.Elasticsearch/9.0.0": { + "dependencies": { + "Elasticsearch.Net": "7.17.5", + "Serilog": "2.12.0", + "Serilog.Formatting.Compact": "1.1.0", + "Serilog.Formatting.Elasticsearch": "9.0.0", + "Serilog.Sinks.File": "5.0.0", + "Serilog.Sinks.PeriodicBatching": "3.1.0", + "System.Diagnostics.DiagnosticSource": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/Serilog.Sinks.Elasticsearch.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.0.0" + } + } + }, + "Serilog.Sinks.File/5.0.0": { + "dependencies": { + "Serilog": "2.12.0" + }, + "runtime": { + "lib/net5.0/Serilog.Sinks.File.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.0.0" + } + } + }, + "Serilog.Sinks.PeriodicBatching/3.1.0": { + "dependencies": { + "Serilog": "2.12.0" + }, + "runtime": { + "lib/netstandard2.1/Serilog.Sinks.PeriodicBatching.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.1.0.0" + } + } + }, + "SharpCompress/0.30.1": { + "runtime": { + "lib/net5.0/SharpCompress.dll": { + "assemblyVersion": "0.30.1.0", + "fileVersion": "0.30.1.0" + } + } + }, + "Snappier/1.0.0": { + "runtime": { + "lib/net5.0/Snappier.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Swashbuckle.AspNetCore/6.5.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.5.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.5.0" + } + }, + "Swashbuckle.AspNetCore.Annotations/6.5.0": { + "dependencies": { + "Swashbuckle.AspNetCore.SwaggerGen": "6.5.0" + }, + "runtime": { + "lib/net7.0/Swashbuckle.AspNetCore.Annotations.dll": { + "assemblyVersion": "6.5.0.0", + "fileVersion": "6.5.0.0" + } + } + }, + "Swashbuckle.AspNetCore.Swagger/6.5.0": { + "dependencies": { + "Microsoft.OpenApi": "1.4.3" + }, + "runtime": { + "lib/net7.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.5.0.0", + "fileVersion": "6.5.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.5.0" + }, + "runtime": { + "lib/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.5.0.0", + "fileVersion": "6.5.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { + "runtime": { + "lib/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.5.0.0", + "fileVersion": "6.5.0.0" + } + } + }, + "System.AppContext/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Buffers/4.5.1": {}, + "System.CodeDom/4.4.0": { + "runtime": { + "lib/netstandard2.0/System.CodeDom.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.25519.3" + } + } + }, + "System.Collections/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Collections.Concurrent/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Collections.Immutable/1.3.1": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.ComponentModel.Annotations/4.5.0": {}, + "System.Configuration.ConfigurationManager/5.0.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "5.0.0", + "System.Security.Permissions": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Console/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Data.SqlClient/4.8.5": { + "dependencies": { + "Microsoft.Win32.Registry": "5.0.0", + "System.Security.Principal.Windows": "5.0.0", + "runtime.native.System.Data.SqlClient.sni": "4.7.0" + }, + "runtime": { + "lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "assemblyVersion": "4.6.1.5", + "fileVersion": "4.700.22.51706" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "4.6.1.5", + "fileVersion": "4.700.22.51706" + }, + "runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.6.1.5", + "fileVersion": "4.700.22.51706" + } + } + }, + "System.Diagnostics.Debug/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.FileVersionInfo/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Reflection.Metadata": "1.4.2", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.Diagnostics.StackTrace/4.3.0": { + "dependencies": { + "System.IO.FileSystem": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Metadata": "1.4.2", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tools/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Diagnostics.Tracing/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Drawing.Common/7.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Dynamic.Runtime/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Linq.Expressions": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.7.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Formats.Asn1/7.0.0": {}, + "System.Globalization/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Calendars/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Globalization.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0" + } + }, + "System.IdentityModel.Tokens.Jwt/6.21.0": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.21.0", + "Microsoft.IdentityModel.Tokens": "6.21.0" + }, + "runtime": { + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.21.0.0", + "fileVersion": "6.21.0.30701" + } + } + }, + "System.IO/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.Compression/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Buffers": "4.5.1", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.IO.Compression": "4.3.0" + } + }, + "System.IO.Compression.ZipFile/4.3.0": { + "dependencies": { + "System.Buffers": "4.5.1", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.IO.FileSystem/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.IO.Pipelines/4.5.2": {}, + "System.Linq/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Linq.Expressions/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Linq": "4.3.0", + "System.ObjectModel": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Emit.Lightweight": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Reflection.TypeExtensions": "4.7.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Memory/4.5.4": {}, + "System.Memory.Data/1.0.2": { + "dependencies": { + "System.Text.Encodings.Web": "7.0.0", + "System.Text.Json": "7.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "assemblyVersion": "1.0.2.0", + "fileVersion": "1.0.221.20802" + } + } + }, + "System.Net.Http/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.DiagnosticSource": "6.0.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Extensions": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Security.Cryptography.X509Certificates": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Net.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Net.Sockets/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Net.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "runtime": { + "lib/netcoreapp2.1/System.Net.WebSockets.WebSocketProtocol.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "4.6.26606.5" + } + } + }, + "System.Numerics.Vectors/4.5.0": {}, + "System.ObjectModel/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.IO": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit/4.3.0": { + "dependencies": { + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Emit.ILGeneration": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.Metadata/1.4.2": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Collections.Immutable": "1.3.1", + "System.Diagnostics.Debug": "4.3.0", + "System.IO": "4.3.0", + "System.IO.Compression": "4.3.0", + "System.Linq": "4.3.0", + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Reflection.Primitives/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Reflection.TypeExtensions/4.7.0": {}, + "System.Resources.ResourceManager/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Globalization": "4.3.0", + "System.Reflection": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0" + } + }, + "System.Runtime.Caching/5.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Runtime.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.Handles/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Runtime.InteropServices/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Reflection": "4.3.0", + "System.Reflection.Primitives": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Handles": "4.3.0" + } + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "dependencies": { + "System.Reflection": "4.3.0", + "System.Reflection.Extensions": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0" + } + }, + "System.Runtime.Numerics/4.3.0": { + "dependencies": { + "System.Globalization": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0" + } + }, + "System.Security.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.Apple": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Cng/5.0.0": { + "dependencies": { + "System.Formats.Asn1": "7.0.0" + } + }, + "System.Security.Cryptography.Csp/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0" + } + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Collections.Concurrent": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Pkcs/7.0.0": { + "dependencies": { + "System.Formats.Asn1": "7.0.0" + } + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "runtime": { + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.Globalization.Calendars": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.Handles": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Runtime.Numerics": "4.3.0", + "System.Security.Cryptography.Algorithms": "4.3.0", + "System.Security.Cryptography.Cng": "5.0.0", + "System.Security.Cryptography.Csp": "4.3.0", + "System.Security.Cryptography.Encoding": "4.3.0", + "System.Security.Cryptography.OpenSsl": "4.3.0", + "System.Security.Cryptography.Primitives": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "runtime.native.System": "4.3.0", + "runtime.native.System.Net.Http": "4.3.0", + "runtime.native.System.Security.Cryptography.OpenSsl": "4.3.0" + } + }, + "System.Security.Cryptography.Xml/4.5.0": { + "dependencies": { + "System.Security.Cryptography.Pkcs": "7.0.0", + "System.Security.Permissions": "5.0.0" + } + }, + "System.Security.Permissions/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Windows.Extensions": "5.0.0" + }, + "runtime": { + "lib/net5.0/System.Security.Permissions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.Text.Encoding/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Text.Encoding.CodePages/7.0.0": {}, + "System.Text.Encoding.Extensions/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0", + "System.Text.Encoding": "4.3.0" + } + }, + "System.Text.Encodings.Web/7.0.0": {}, + "System.Text.Json/7.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "7.0.0" + } + }, + "System.Text.RegularExpressions/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Channels/4.5.0": {}, + "System.Threading.Tasks/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Threading.Tasks.Parallel/4.3.0": { + "dependencies": { + "System.Collections.Concurrent": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tracing": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Threading.Tasks": "4.3.0" + } + }, + "System.Threading.Thread/4.3.0": { + "dependencies": { + "System.Runtime": "4.3.0" + } + }, + "System.Threading.Timer/4.3.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "Microsoft.NETCore.Targets": "1.1.0", + "System.Runtime": "4.3.0" + } + }, + "System.ValueTuple/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0" + } + }, + "System.Windows.Extensions/5.0.0": { + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "runtime": { + "lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Xml.ReaderWriter/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.IO.FileSystem": "4.3.0", + "System.IO.FileSystem.Primitives": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Runtime.InteropServices": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Text.Encoding.Extensions": "4.3.0", + "System.Text.RegularExpressions": "4.3.0", + "System.Threading.Tasks": "4.3.0", + "System.Threading.Tasks.Extensions": "4.5.4" + } + }, + "System.Xml.XDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Diagnostics.Tools": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Reflection": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XmlDocument/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Text.Encoding": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XPath/4.3.0": { + "dependencies": { + "System.Collections": "4.3.0", + "System.Diagnostics.Debug": "4.3.0", + "System.Globalization": "4.3.0", + "System.IO": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0" + } + }, + "System.Xml.XPath.XDocument/4.3.0": { + "dependencies": { + "System.Diagnostics.Debug": "4.3.0", + "System.Linq": "4.3.0", + "System.Resources.ResourceManager": "4.3.0", + "System.Runtime": "4.3.0", + "System.Runtime.Extensions": "4.3.0", + "System.Threading": "4.3.0", + "System.Xml.ReaderWriter": "4.3.0", + "System.Xml.XDocument": "4.3.0", + "System.Xml.XPath": "4.3.0" + } + }, + "WatchDog.NET/1.4.6": { + "dependencies": { + "Dapper": "2.0.123", + "LiteDB": "5.0.11", + "Microsoft.AspNetCore.Http": "2.2.2", + "Microsoft.AspNetCore.Http.Abstractions": "2.2.0", + "Microsoft.AspNetCore.Mvc": "2.2.0", + "Microsoft.AspNetCore.SignalR": "1.1.0", + "Microsoft.AspNetCore.SignalR.Core": "1.1.0", + "Microsoft.AspNetCore.StaticFiles": "2.2.0", + "Microsoft.Extensions.FileProviders.Abstractions": "7.0.0", + "Microsoft.Extensions.FileProviders.Embedded": "3.1.22", + "Microsoft.Extensions.FileProviders.Physical": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.IO.RecyclableMemoryStream": "2.2.1", + "MongoDB.Driver": "2.19.0", + "MySql.Data": "8.0.29", + "Newtonsoft.Json": "13.0.3", + "Npgsql": "6.0.4", + "System.Data.SqlClient": "4.8.5" + }, + "runtime": { + "lib/net6.0/WatchDog.dll": { + "assemblyVersion": "1.4.6.0", + "fileVersion": "1.4.6.0" + } + } + }, + "ZstdSharp.Port/0.6.2": { + "runtime": { + "lib/net6.0/ZstdSharp.dll": { + "assemblyVersion": "0.6.2.0", + "fileVersion": "0.6.2.0" + } + } + } + } + }, + "libraries": { + "BMA.EHR.Recruit.Service/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "AWSSDK.Core/3.7.106.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ko+ZIM9HVtisWy6v+sNDmTGfSsMgQT2KxtYHLa3ztpEiN7ta9BiuBmgiNAc1BPSu3xMs4NsBBdt+qMrMKfUB/A==", + "path": "awssdk.core/3.7.106.5", + "hashPath": "awssdk.core.3.7.106.5.nupkg.sha512" + }, + "AWSSDK.S3/3.7.103.35": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zQMIHW6BCt+3wt0WkuuL1TUotvaDUTB7ykZ42sYJDKg2O8NeNn5pCibA4np9Kp1WBsulTGKZBU+dSMF1mvd69A==", + "path": "awssdk.s3/3.7.103.35", + "hashPath": "awssdk.s3.3.7.103.35.nupkg.sha512" + }, + "AWSSDK.SecurityToken/3.7.100.14": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dGCVuVo0CFUKWW85W8YENO+aREf8sCBDjvGbnNvxJuNW4Ss+brEU9ltHhq2KfZze2VUNK1/wygbPG1bmbpyXEw==", + "path": "awssdk.securitytoken/3.7.100.14", + "hashPath": "awssdk.securitytoken.3.7.100.14.nupkg.sha512" + }, + "Azure.Core/1.24.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+/qI1j2oU1S4/nvxb2k/wDsol00iGf1AyJX5g3epV7eOpQEP/2xcgh/cxgKMeFgn3U2fmgSiBnQZdkV+l5y0Uw==", + "path": "azure.core/1.24.0", + "hashPath": "azure.core.1.24.0.nupkg.sha512" + }, + "Azure.Identity/1.6.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EycyMsb6rD2PK9P0SyibFfEhvWWttdrYhyPF4f41uzdB/44yQlV+2Wehxyg489Rj6gbPvSPgbKq0xsHJBhipZA==", + "path": "azure.identity/1.6.0", + "hashPath": "azure.identity.1.6.0.nupkg.sha512" + }, + "BouncyCastle.NetCore/1.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6uxsQw2UXrt82VQAWC2td3oBSJjUZ3P4u4DliagB8wf67KsU53V8sW9xwdF+IwZOOZFR0TCZuv/YKZ2BlrfAag==", + "path": "bouncycastle.netcore/1.8.5", + "hashPath": "bouncycastle.netcore.1.8.5.nupkg.sha512" + }, + "CoreAdmin/2.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qwa33DYykMuQ6JCeDoIPI3NMU91MEWI35ukK/FcMCeWtNjDxuwaWoTRS8P6+vA3cF81AkuIsxCU7CH7yzK0ofw==", + "path": "coreadmin/2.7.0", + "hashPath": "coreadmin.2.7.0.nupkg.sha512" + }, + "Dapper/2.0.123": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RDFF4rBLLmbpi6pwkY7q/M6UXHRJEOerplDGE5jwEkP/JGJnBauAClYavNKJPW1yOTWRPIyfj4is3EaJxQXILQ==", + "path": "dapper/2.0.123", + "hashPath": "dapper.2.0.123.nupkg.sha512" + }, + "DnsClient/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4H/f2uYJOZ+YObZjpY9ABrKZI+JNw3uizp6oMzTXwDw6F+2qIPhpRl/1t68O/6e98+vqNiYGu+lswmwdYUy3gg==", + "path": "dnsclient/1.6.1", + "hashPath": "dnsclient.1.6.1.nupkg.sha512" + }, + "Elasticsearch.Net/7.17.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-orChsQi1Ceho/NyIylNOn6y4vuGcsbCfMZnCueNN0fzqYEGQmQdPfcVmsR5+3fwpXTgxCdjTUVmqOwvHpCSB+Q==", + "path": "elasticsearch.net/7.17.5", + "hashPath": "elasticsearch.net.7.17.5.nupkg.sha512" + }, + "EPPlus/6.1.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1NEgW7wMxHWz7k3hN6D7PPkCCKR24LK86EIIEwfKrBy+yyWQM/fsCrngt+DPAjVgGLOThVmXInSFJqD15X7OCQ==", + "path": "epplus/6.1.3", + "hashPath": "epplus.6.1.3.nupkg.sha512" + }, + "EPPlus.Interfaces/6.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y7dkrOoE1ZR9Vgy1Jf2rEIaTf3SHlUjYt01NklP+F5Qh7S2ruPbzTcpYLRWMeXiG8XL8h2jqX4CyIkFt3NQGZw==", + "path": "epplus.interfaces/6.1.1", + "hashPath": "epplus.interfaces.6.1.1.nupkg.sha512" + }, + "EPPlus.System.Drawing/6.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lRF5gHYrmkHOOiLMI0t6q8zNYjUrzRgAM5BCXumv5xiqXko8fx3AWI+HCNZfhEqVFGOop+42KfR5GiUcCoyoMw==", + "path": "epplus.system.drawing/6.1.1", + "hashPath": "epplus.system.drawing.6.1.1.nupkg.sha512" + }, + "Google.Protobuf/3.19.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fd07/ykL4O4FhqrZIELm5lmiyOHfdPg9+o+hWr6tcfRdS7tHXnImg/2wtogLzlW2eEmr0J7j6ZrZvaWOLiJbxQ==", + "path": "google.protobuf/3.19.4", + "hashPath": "google.protobuf.3.19.4.nupkg.sha512" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "K4os.Compression.LZ4/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4EN8EE6bZG2U8dFfeqn+Om3UNajK3cPYHvyQROCFm4jNFVLuRB7Nl5bDkjBSAjfctS6konm+ay3u5RafBzltDA==", + "path": "k4os.compression.lz4/1.2.6", + "hashPath": "k4os.compression.lz4.1.2.6.nupkg.sha512" + }, + "K4os.Compression.LZ4.Streams/1.2.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5KMcNFRHeRrnJ9c8k5fZcfAJJEY0FndMiDiHIYa35Mx5KCMkeSNo/PEXu7YmtCoVczJagx+Vt7J/F+//S1PcJQ==", + "path": "k4os.compression.lz4.streams/1.2.6", + "hashPath": "k4os.compression.lz4.streams.1.2.6.nupkg.sha512" + }, + "K4os.Hash.xxHash/1.0.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jCfNP0inx1sGcP3KSbpiDEH3km2e1sVBjMfKo+V92jr1dL4ZYgA1uhRMl1wAtdGZcbObXIikKqtVlgx3j/CW6g==", + "path": "k4os.hash.xxhash/1.0.6", + "hashPath": "k4os.hash.xxhash.1.0.6.nupkg.sha512" + }, + "LiteDB/5.0.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6cL4bOmVCUB0gIK+6qIr68HeqjjHZicPDGQjvJ87mIOvkFsEsJWkIps3yoKNeLpHhJQur++yoQ9Q8gxsdos0xQ==", + "path": "litedb/5.0.11", + "hashPath": "litedb.5.0.11.nupkg.sha512" + }, + "Microsoft.AspNetCore.Antiforgery/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fVQsSXNZz38Ysx8iKwwqfOLHhLrAeKEMBS5Ia3Lh7BJjOC2vPV28/yk08AovOMsB3SNQPGnE7bv+lsIBTmAkvw==", + "path": "microsoft.aspnetcore.antiforgery/2.2.0", + "hashPath": "microsoft.aspnetcore.antiforgery.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VloMLDJMf3n/9ic5lCBOa42IBYJgyB1JhzLsL68Zqg+2bEPWfGBj/xCJy/LrKTArN0coOcZp3wyVTZlx0y9pHQ==", + "path": "microsoft.aspnetcore.authentication.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.Core/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XlVJzJ5wPOYW+Y0J6Q/LVTEyfS4ssLXmt60T0SPP+D8abVhBTl+cgw2gDHlyKYIkcJg7btMVh383NDkMVqD/fg==", + "path": "microsoft.aspnetcore.authentication.core/2.2.0", + "hashPath": "microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/7.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LoWGXSI5P67sjTVEcUf0u37Ms9t/jEUyW462M6CAOfs48Gug2InaBXkt+dUYxkwtD4+WH4blafqF9Es2SrBBEw==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/7.0.3", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.7.0.3.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/L0W8H3jMYWyaeA9gBJqS/tSWBegP9aaTM0mjRhxTttBY9z4RVDRYJ2CwPAmAXIuPr3r1sOw+CS8jFVRGHRezQ==", + "path": "microsoft.aspnetcore.authorization/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization.Policy/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aJCo6niDRKuNg2uS2WMEmhJTooQUGARhV2ENQ2tO5443zVHUo19MSgrgGo9FIrfD+4yKPF8Q+FF33WkWfPbyKw==", + "path": "microsoft.aspnetcore.authorization.policy/2.2.0", + "hashPath": "microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Connections.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Aqr/16Cu5XmGv7mLKJvXRxhhd05UJ7cTTSaUV4MZ3ynAzfgWjsAdpIU8FWuxwAjmVdmI8oOWuVDrbs+sRkhKnA==", + "path": "microsoft.aspnetcore.connections.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cors/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LFlTM3ThS3ZCILuKnjy8HyK9/IlDh3opogdbCVx6tMGyDzTQBgMPXLjGDLtMk5QmLDCcP3l1TO3z/+1viA8GUg==", + "path": "microsoft.aspnetcore.cors/2.2.0", + "hashPath": "microsoft.aspnetcore.cors.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GXmMD8/vuTLPLvKzKEPz/4vapC5e0cwx1tUVd83ePRyWF9CCrn/pg4/1I+tGkQqFLPvi3nlI2QtPtC6MQN8Nww==", + "path": "microsoft.aspnetcore.cryptography.internal/2.2.0", + "hashPath": "microsoft.aspnetcore.cryptography.internal.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.DataProtection/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G6dvu5Nd2vjpYbzazZ//qBFbSEf2wmBUbyAR7E4AwO3gWjhoJD5YxpThcGJb7oE3VUcW65SVMXT+cPCiiBg8Sg==", + "path": "microsoft.aspnetcore.dataprotection/2.2.0", + "hashPath": "microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-seANFXmp8mb5Y12m1ShiElJ3ZdOT3mBN3wA1GPhHJIvZ/BxOCPyqEOR+810OWsxEZwA5r5fDRNpG/CqiJmQnJg==", + "path": "microsoft.aspnetcore.dataprotection.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pva9ggfUDtnJIKzv0+wxwTX7LduDx6xLSpMqWwdOJkW52L0t31PI78+v+WqqMpUtMzcKug24jGs3nTFpAmA/2g==", + "path": "microsoft.aspnetcore.diagnostics.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ubycklv+ZY7Kutdwuy1W4upWcZ6VFR8WUXU7l7B2+mvbDBBPAcfpi+E+Y5GFe+Q157YfA3C49D2GCjAZc7Mobw==", + "path": "microsoft.aspnetcore.hosting.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1PMijw8RMtuQF60SsD/JlKtVfvh4NORAhF4wjysdABhlhTrYmtgssqyncR0Stq5vqtjplZcj6kbT4LRTglt9IQ==", + "path": "microsoft.aspnetcore.hosting.server.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Html.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y4rs5aMEXY8G7wJo5S3EEt6ltqyOTr/qOeZzfn+hw/fuQj5GppGckMY5psGLETo1U9hcT5MmAhaT5xtusM1b5g==", + "path": "microsoft.aspnetcore.html.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http/2.2.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BAibpoItxI5puk7YJbIGj95arZueM8B8M5xT1fXBn3hb3L2G3ucrZcYXv1gXdaroLbntUs8qeV8iuBrpjQsrKw==", + "path": "microsoft.aspnetcore.http/2.2.2", + "hashPath": "microsoft.aspnetcore.http.2.2.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nxs7Z1q3f1STfLYKJSVXCs1iBl+Ya6E8o4Oy1bCxJ/rNI44E/0f6tbsrVqAWfB7jlnJfyaAtIalBVxPKUPQb4Q==", + "path": "microsoft.aspnetcore.http.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZcwAM9rE5yjGC+vtiNAK0INybpKIqnvB+/rntZn2/CPtyiBAtovVrEp4UZOoC31zH5t0P78ix9gLNJzII/ODsA==", + "path": "microsoft.aspnetcore.http.connections/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Connections.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mYk5QUUjyXQmlyDHWDjkLYDArt97plwe6KsDsNVhDEQ+HgZMKGjISyM6YSA7BERQNR25kXBTbIYfSy1vePGQgg==", + "path": "microsoft.aspnetcore.http.connections.common/1.1.0", + "hashPath": "microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Extensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2DgZ9rWrJtuR7RYiew01nGRzuQBDaGHGmK56Rk54vsLLsCdzuFUPqbDTJCS1qJQWTbmbIQ9wGIOjpxA1t0l7/w==", + "path": "microsoft.aspnetcore.http.extensions/2.2.0", + "hashPath": "microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Http.Features/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ziFz5zH8f33En4dX81LW84I6XrYXKf9jg6aM39cM+LffN9KJahViKZ61dGMSO2gd3e+qe5yBRwsesvyqlZaSMg==", + "path": "microsoft.aspnetcore.http.features/2.2.0", + "hashPath": "microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.JsonPatch/7.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-k5Vf0AK5dFh0gdg4aZha3caJ7DD0h+0MzgvjbAO4zfIxxpZn25LlUwEC/a5e8nUbw1DBPxfaic2K6yJolWaBkw==", + "path": "microsoft.aspnetcore.jsonpatch/7.0.3", + "hashPath": "microsoft.aspnetcore.jsonpatch.7.0.3.nupkg.sha512" + }, + "Microsoft.AspNetCore.Localization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+PGX1mEfq19EVvskBBb9XBQrXZpZrh6hYhX0x3FkPTEqr+rDM2ZmsEwAAMRmzcidmlDM1/7cyDSU/WhkecU8tA==", + "path": "microsoft.aspnetcore.localization/2.2.0", + "hashPath": "microsoft.aspnetcore.localization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-noun9xcrEvOs/ubczt2OluY9/bOOM2erv1D/gyyYtfS2sfyx2uGknUIAWoqmqc401TvQDysyx8S4M9j5zPIVBw==", + "path": "microsoft.aspnetcore.mvc/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ET6uZpfVbGR1NjCuLaLy197cQ3qZUjzl7EG5SL4GfJH/c9KRE89MMBrQegqWsh0w1iRUB/zQaK0anAjxa/pz4g==", + "path": "microsoft.aspnetcore.mvc.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Analyzers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Wxxt1rFVHITp4MDaGQP/wyl+ROVVVeQCTWI6C8hxI8X66C4u6gcxvelqgnmsn+dISMCdE/7FQOwgiMx1HxuZqA==", + "path": "microsoft.aspnetcore.mvc.analyzers/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.analyzers.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iSREQct43Xg2t3KiQ2648e064al/HSLPXpI5yO9VPeTGDspWKHW23XFHRKPN1YjIQHHfBj8ytXbiF0XcSxp5pg==", + "path": "microsoft.aspnetcore.mvc.apiexplorer/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.apiexplorer.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Core/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ALiY4a6BYsghw8PT5+VU593Kqp911U3w9f/dH9/ZoI3ezDsDAGiObqPu/HP1oXK80Ceu0XdQ3F0bx5AXBeuN/Q==", + "path": "microsoft.aspnetcore.mvc.core/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.core.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Cors/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oINjMqhU7yzT2T9AMuvktlWlMd40i0do8E1aYslJS+c5fof+EMhjnwTh6cHN1dfrgjkoXJ/gutxn5Qaqf/81Kg==", + "path": "microsoft.aspnetcore.mvc.cors/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.cors.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WOw4SA3oT47aiU7ZjN/88j+b79YU6VftmHmxK29Km3PTI7WZdmw675QTcgWfsjEX4joCB82v7TvarO3D0oqOyw==", + "path": "microsoft.aspnetcore.mvc.dataannotations/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.dataannotations.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ScWwXrkAvw6PekWUFkIr5qa9NKn4uZGRvxtt3DvtUrBYW5Iu2y4SS/vx79JN0XDHNYgAJ81nVs+4M7UE1Y/O+g==", + "path": "microsoft.aspnetcore.mvc.formatters.json/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.formatters.json.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Localization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H1L4pP124mrN6duwOtNVIJUqy4CczC2/ah4MXarRt9ZRpJd2zNp1j3tJCgyEQpqai6zNVP6Vp2ZRMQcNDcNAKA==", + "path": "microsoft.aspnetcore.mvc.localization/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.localization.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.NewtonsoftJson/7.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Q4Trx6jnKgsC/UARC2pCOIm0pFWRjc28e0ex3HZzcQE0EaVfmQaELIo8akgmljXnebT5D4Ivx5hXyvZbQOAWbw==", + "path": "microsoft.aspnetcore.mvc.newtonsoftjson/7.0.3", + "hashPath": "microsoft.aspnetcore.mvc.newtonsoftjson.7.0.3.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TXvEOjp3r6qDEjmDtv3pXjQr/Zia9PpoGkl1MyTEqKqrUehBTpAdCjA8APXFwun19lH20OuyU+e4zDYv9g134w==", + "path": "microsoft.aspnetcore.mvc.razor/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.razor.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Sei/0moqBDQKaAYT9PtOeRtvYgHQQLyw/jm3exHw2w9VdzejiMEqCQrN2d63Dk4y7IY0Irr/P9JUFkoVURRcNw==", + "path": "microsoft.aspnetcore.mvc.razor.extensions/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.razor.extensions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.RazorPages/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GsMs4QKCf5VgdGZq9/nfAVkMJ/8uE4ie0Iugv4FtxbHBmMdpPQQBfTFKoUpwMbgIRw7hzV8xy2HPPU5o58PsdQ==", + "path": "microsoft.aspnetcore.mvc.razorpages/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.razorpages.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hsrm/dLx7ztfWV+WEE7O8YqEePW7TmUwFwR7JsOUSTKaV9uSeghdmoOsYuk0HeoTiMhRxH8InQVE9/BgBj+jog==", + "path": "microsoft.aspnetcore.mvc.taghelpers/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.taghelpers.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Versioning/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mN9IARvNpHMBD2/oGmp5Bxp1Dg45Hfcp+LWaAyTtL2HisWLMOIcf0Ox1qW9IvCvdbHM+2A9dWEInhiqBsNxsJA==", + "path": "microsoft.aspnetcore.mvc.versioning/5.0.0", + "hashPath": "microsoft.aspnetcore.mvc.versioning.5.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GZH7F1iDtJKw23qkqQaAnBh9Rw+GVUq5SK0ldfAqMh+2syFRtzPkvQUl0V+qe2wuP0QRr1zG82G812ZN8AU6ig==", + "path": "microsoft.aspnetcore.mvc.versioning.apiexplorer/5.0.0", + "hashPath": "microsoft.aspnetcore.mvc.versioning.apiexplorer.5.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dt7MGkzCFVTAD5oesI8UeVVeiSgaZ0tPdFstQjG6YLJSCiq1koOUSHMpf0PASGdOW/H9hxXkolIBhT5dWqJi7g==", + "path": "microsoft.aspnetcore.mvc.viewfeatures/2.2.0", + "hashPath": "microsoft.aspnetcore.mvc.viewfeatures.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.OpenApi/7.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nihfseI7Jpaogc5bPAbta17sFzhyXwwC74xAhOyc6cgqriJQ2eB4TcJsAi4NePT2q+pFfEAtSCgPXw4IdJOF0w==", + "path": "microsoft.aspnetcore.openapi/7.0.3", + "hashPath": "microsoft.aspnetcore.openapi.7.0.3.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V54PIyDCFl8COnTp9gezNHpUNHk7F9UnerGeZy3UfbnwYvfzbo+ipqQmSgeoESH8e0JvKhRTyQyZquW2EPtCmg==", + "path": "microsoft.aspnetcore.razor/2.2.0", + "hashPath": "microsoft.aspnetcore.razor.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Design/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VLWK+ZtMMNukY6XjxYHc7mz33vkquoEzQJHm/LCF5REVxIaexLr+UTImljRRJBdUDJluDAQwU+59IX0rFDfURA==", + "path": "microsoft.aspnetcore.razor.design/2.2.0", + "hashPath": "microsoft.aspnetcore.razor.design.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IeyzVFXZdpUAnWKWoNYE0SsP1Eu7JLjZaC94jaI1VfGtK57QykROz/iGMc8D0VcqC8i02qYTPQN/wPKm6PfidA==", + "path": "microsoft.aspnetcore.razor.language/2.2.0", + "hashPath": "microsoft.aspnetcore.razor.language.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Runtime/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7YqK+H61lN6yj9RiQUko7oaOhKtRR9Q/kBcoWNRemhJdTIWOh1OmdvJKzZrMWOlff3BAjejkPQm+0V0qXk+B1w==", + "path": "microsoft.aspnetcore.razor.runtime/2.2.0", + "hashPath": "microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CIHWEKrHzZfFp7t57UXsueiSA/raku56TgRYauV/W1+KAQq6vevz60zjEKaazt3BI76zwMz3B4jGWnCwd8kwQw==", + "path": "microsoft.aspnetcore.responsecaching.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jAhDBy0wryOnMhhZTtT9z63gJbvCzFuLm8yC6pHzuVu9ZD1dzg0ltxIwT4cfwuNkIL/TixdKsm3vpVOpG8euWQ==", + "path": "microsoft.aspnetcore.routing/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Routing.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lRRaPN7jDlUCVCp9i0W+PB0trFaKB0bgMJD7hEJS9Uo4R9MXaMC8X2tJhPLmeVE3SGDdYI4QNKdVmhNvMJGgPQ==", + "path": "microsoft.aspnetcore.routing.abstractions/2.2.0", + "hashPath": "microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V5X5XkeAHaFyyBOGPrddVeqTNo6zRPJNS5PRhlzEyBXiNG9AtqUbMyWFdZahQyMiIWJau550z59A4kdC9g5I9A==", + "path": "microsoft.aspnetcore.signalr/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Common/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TyLgQ4y4RVUIxiYFnHT181/rJ33/tL/NcBWC9BwLpulDt5/yGCG4EvsToZ49EBQ7256zj+R6OGw6JF+jj6MdPQ==", + "path": "microsoft.aspnetcore.signalr.common/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Core/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mk69z50oFk2e89d3F/AfKeAvP3kvGG7MHG4ErydZiUd3ncSRq0kl0czq/COn/QVKYua9yGr2LIDwuR1C6/pu8Q==", + "path": "microsoft.aspnetcore.signalr.core/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BOsjatDJnvnnXCMajOlC0ISmiFnJi/EyJzMo0i//5fZJVCLrQ4fyV/HzrhhAhSJuwJOQDdDozKQ9MB9jHq84pg==", + "path": "microsoft.aspnetcore.signalr.protocols.json/1.1.0", + "hashPath": "microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.StaticFiles/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-byZDrjir6Co5EoWbraQyG0qbPCUG6XgGYQstipMF9lucOAjq/mqnIyt8B8iMWnin/ghZoOln9Y01af4rUAwOhA==", + "path": "microsoft.aspnetcore.staticfiles/2.2.0", + "hashPath": "microsoft.aspnetcore.staticfiles.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebSockets/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZpOcg2V0rCwU9ErfDb9y3Hcjoe7rU42XlmUS0mO4pVZQSgJVqR+DfyZtYd5LDa11F7bFNS2eezI9cBM3CmfGhw==", + "path": "microsoft.aspnetcore.websockets/2.2.0", + "hashPath": "microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.WebUtilities/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ErxAAKaDzxXASB/b5uLEkLgUWv1QbeVxyJYEHQwMaxXOeFFVkQxiq8RyfVcifLU7NR0QY0p3acqx4ZpYfhHDg==", + "path": "microsoft.aspnetcore.webutilities/2.2.0", + "hashPath": "microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yuvf07qFWFqtK3P/MRkEKLhn5r2UbSpVueRziSqj0yJQIKFwG1pq9mOayK3zE5qZCTs0CbrwL9M6R8VwqyGy2w==", + "path": "microsoft.bcl.asyncinterfaces/1.1.1", + "hashPath": "microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HS3iRWZKcUw/8eZ/08GXKY2Bn7xNzQPzf8gRPHGSowX7u7XXu9i9YEaBeBNKUXWfI7qjvT2zXtLUvbN0hds8vg==", + "path": "microsoft.codeanalysis.analyzers/1.1.0", + "hashPath": "microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/2.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-06AzG7oOLKTCN1EnoVYL1bQz+Zwa10LMpUn7Kc+PdpN8CQXRqXTyhfxuKIz6t0qWfoatBNXdHD0OLcEYp5pOvQ==", + "path": "microsoft.codeanalysis.common/2.8.0", + "hashPath": "microsoft.codeanalysis.common.2.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/2.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RizcFXuHgGmeuZhxxE1qQdhFA9lGOHlk0MJlCUt6LOnYsevo72gNikPcbANFHY02YK8L/buNrihchY0TroGvXQ==", + "path": "microsoft.codeanalysis.csharp/2.8.0", + "hashPath": "microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Razor/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2qL0Qyu5qHzg6/JzF80mLgsqn9NP/Q0mQwjH+Z+DiqcuODJx8segjN4un2Tnz6bEAWv8FCRFNXR/s5wzlxqA8A==", + "path": "microsoft.codeanalysis.razor/2.2.0", + "hashPath": "microsoft.codeanalysis.razor.2.2.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pTj+D3uJWyN3My70i2Hqo+OXixq3Os2D1nJ2x92FFo6sk8fYS1m1WLNTs0Dc1uPaViH0YvEEwvzddQ7y4rhXmA==", + "path": "microsoft.csharp/4.7.0", + "hashPath": "microsoft.csharp.4.7.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uu8dfrsx081cSbEevWuZAvqdmANDGJkbLBL2G3j0LAZxX1Oy8RCVAaC4Lcuak6jNicWP6CWvHqBTIEmQNSxQlw==", + "path": "microsoft.data.sqlclient/5.0.1", + "hashPath": "microsoft.data.sqlclient.5.0.1.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y0X5MxiNdbITJYoafJ2ruaX6hqO0twpCGR/ipiDOe85JKLU8WL4TuAQfDe5qtt3bND5Je26HnrarLSAMMnVTNg==", + "path": "microsoft.data.sqlclient.sni.runtime/5.0.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.5.0.1.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/7.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6XUI2YGoaLMoP9KGaqWmmd4B2n5bpQbXrVRpH20Et3YjQ0Rn3Ia6HM/ANcSq9rBfjfUySgo9SwUZgQ4m4PF3LQ==", + "path": "microsoft.entityframeworkcore/7.0.3", + "hashPath": "microsoft.entityframeworkcore.7.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/7.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0NaFBZykUlQHknddRuKY4v+MFZX/AW+v2V85dgj7abIlt+kL3GWa7QNH5S1084VLf1u+dq1SnhZsOvykc3Y0sA==", + "path": "microsoft.entityframeworkcore.abstractions/7.0.3", + "hashPath": "microsoft.entityframeworkcore.abstractions.7.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/7.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CLyRWFLwaOUZNPEia/aBMzFxZqm/ITKt3B+yUFtrg4Ys5VF3n2gvneuItC9IhpeOcjfdSgu/yUKf8y/IsNHs5A==", + "path": "microsoft.entityframeworkcore.analyzers/7.0.3", + "hashPath": "microsoft.entityframeworkcore.analyzers.7.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/7.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nv0Y2Zh8d919qKq8Q1bvbWQbFeb4JQ7jCuakajSVtip5JIwt4hTIWetVIapJ2vOQDDZuAHCzkjimMOlHH5LVsQ==", + "path": "microsoft.entityframeworkcore.design/7.0.3", + "hashPath": "microsoft.entityframeworkcore.design.7.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/7.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RxNNjtTrxsMtdBtgoXGRSy8uCXaBHaVzIonTeo7+Ys+N0yEWwhf2E74cxneyunMi13Ezlld10ecCHlDubEU/Pw==", + "path": "microsoft.entityframeworkcore.relational/7.0.3", + "hashPath": "microsoft.entityframeworkcore.relational.7.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational.Design/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WZKmQwuDUTLtjhxT/6c3hiMJTwi8OBl9rsPljY/ZhcMFAsF8sLj4uVrpkuNmrg5DEK2dEtnQn6p+Y9miQiIeZw==", + "path": "microsoft.entityframeworkcore.relational.design/1.1.1", + "hashPath": "microsoft.entityframeworkcore.relational.design.1.1.1.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.SqlServer/7.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WXd8Mg12+LrfuVOfz0YUYsiaIKI0fLTdhN/WdQGxzGM3l86GLdpACUb30Y7oUpMG4YNegerEd0AVLlMpfwOjug==", + "path": "microsoft.entityframeworkcore.sqlserver/7.0.3", + "hashPath": "microsoft.entityframeworkcore.sqlserver.7.0.3.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Tools/7.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yHFlYPZS3Jx7JMCQnGKfJzv95rJWVcmcUn/OW5cbCyWgQk81JJpTZ9Q6kkvwquYjFRfvYHBGuXNIYhAJokOBTQ==", + "path": "microsoft.entityframeworkcore.tools/7.0.3", + "hashPath": "microsoft.entityframeworkcore.tools.7.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/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==", + "path": "microsoft.extensions.caching.abstractions/7.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==", + "path": "microsoft.extensions.caching.memory/7.0.0", + "hashPath": "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tldQUBWt/xeH2K7/hMPPo5g8zuLc3Ro9I5d4o/XrxvxOCA2EZBtW7bCHHTc49fcBtvB8tLAb/Qsmfrq+2SJ4vA==", + "path": "microsoft.extensions.configuration/7.0.0", + "hashPath": "microsoft.extensions.configuration.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==", + "path": "microsoft.extensions.configuration.abstractions/7.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Binder/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3ErKzND8LIC7o08QAVlKfaEIYEvLJbtmVbFZVBRXeu9YkKfSSzLZfR1SUfQPBIy9mKLhEtJgGYImkcMNaKE0A==", + "path": "microsoft.extensions.configuration.binder/6.0.0", + "hashPath": "microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.FileExtensions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xk2lRJ1RDuqe57BmgvRPyCt6zyePKUmvT6iuXqiHR+/OIIgWVR8Ff5k2p6DwmqY8a17hx/OnrekEhziEIeQP6Q==", + "path": "microsoft.extensions.configuration.fileextensions/7.0.0", + "hashPath": "microsoft.extensions.configuration.fileextensions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Json/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LDNYe3uw76W35Jci+be4LDf2lkQZe0A7EEYQVChFbc509CpZ4Iupod8li4PUXPBhEUOFI/rlQNf5xkzJRQGvtA==", + "path": "microsoft.extensions.configuration.json/7.0.0", + "hashPath": "microsoft.extensions.configuration.json.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==", + "path": "microsoft.extensions.dependencyinjection/7.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==", + "path": "microsoft.extensions.dependencymodel/7.0.0", + "hashPath": "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NyawiW9ZT/liQb34k9YqBSNPLuuPkrjMgQZ24Y/xXX1RoiBkLUdPMaQTmxhZ5TYu8ZKZ9qayzil75JX95vGQUg==", + "path": "microsoft.extensions.fileproviders.abstractions/7.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Composite/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Az/RxWB+UlyVN/TvQFaGXx8XAXVZN5WQnnuJOsjwBzghSJc1i8zqNjIypPHOedcuIXs2XSWgOSL6YQ3BlCnoJA==", + "path": "microsoft.extensions.fileproviders.composite/2.2.0", + "hashPath": "microsoft.extensions.fileproviders.composite.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Embedded/3.1.22": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4hTeyTOT11sAxbYpvWa0C5AztrcdQTOUdhWN+NW+G3UPVaUziF/JIQWBW/yE2dy5zXJJW9MTYgAsNPtAFH79EA==", + "path": "microsoft.extensions.fileproviders.embedded/3.1.22", + "hashPath": "microsoft.extensions.fileproviders.embedded.3.1.22.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-K8D2MTR+EtzkbZ8z80LrG7Ur64R7ZZdRLt1J5cgpc/pUWl0C6IkAUapPuK28oionHueCPELUqq0oYEvZfalNdg==", + "path": "microsoft.extensions.fileproviders.physical/7.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2jONjKHiF+E92ynz2ZFcr9OvxIw+rTGMPEH+UZGeHTEComVav93jQUWGkso8yWwVBcEJGcNcZAaqY01FFJcj7w==", + "path": "microsoft.extensions.filesystemglobbing/7.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Hosting.Abstractions/3.1.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7ZJUKwPipkDvuv2KJPZ3r01wp2AWNMiYH+61i0dL89F7QICknjKpWgLKLpTSUYFgl77S3b4264I6i4HzDdrb2A==", + "path": "microsoft.extensions.hosting.abstractions/3.1.8", + "hashPath": "microsoft.extensions.hosting.abstractions.3.1.8.nupkg.sha512" + }, + "Microsoft.Extensions.Http/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-15+pa2G0bAMHbHewaQIdr/y6ag2H3yh4rd9hTXavtWDzQBkvpe2RMqFg8BxDpcQWssmjmBApGPcw93QRz6YcMg==", + "path": "microsoft.extensions.http/6.0.0", + "hashPath": "microsoft.extensions.http.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Localization/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3nBQLeBrcd4Rgd9vQi4gF5NgAWxnQrHekjjwlgww4wyLNfJDizjiex2resOLoAuAgy3y2IIAWjOpbr0UKR2ykw==", + "path": "microsoft.extensions.localization/2.2.0", + "hashPath": "microsoft.extensions.localization.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Localization.Abstractions/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FQzXG/lYR9UOM2zHpqsjTRpp3EghIYo3FCsQpfmtbp+glPaU0WXZfNmMjyqBRmMj1Sq93fPnC+G9zzYRauuRQA==", + "path": "microsoft.extensions.localization.abstractions/2.2.0", + "hashPath": "microsoft.extensions.localization.abstractions.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==", + "path": "microsoft.extensions.logging/7.0.0", + "hashPath": "microsoft.extensions.logging.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", + "path": "microsoft.extensions.logging.abstractions/7.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Configuration/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZDskjagmBAbv+K8rYW9VhjPplhbOE63xUD0DiuydZJwt15dRyoqicYklLd86zzeintUc7AptDkHn+YhhYkYo8A==", + "path": "microsoft.extensions.logging.configuration/6.0.0", + "hashPath": "microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Console/1.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oKfmQdH7c89QyFvolNhwIU3AME0LXOo89DTNbu0c3+b42/0UkJi3fT4Jz6Pg8AY38yYYP7lH/MFVxmbRqiUmhw==", + "path": "microsoft.extensions.logging.console/1.1.1", + "hashPath": "microsoft.extensions.logging.console.1.1.1.nupkg.sha512" + }, + "Microsoft.Extensions.ObjectPool/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gA8H7uQOnM5gb+L0uTNjViHYr+hRDqCdfugheGo/MxQnuHzmhhzCBTIPm19qL1z1Xe0NEMabfcOBGv9QghlZ8g==", + "path": "microsoft.extensions.objectpool/2.2.0", + "hashPath": "microsoft.extensions.objectpool.2.2.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==", + "path": "microsoft.extensions.options/7.0.0", + "hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXWINbTn0vC0FYc9GaQTISbxhQLAMrvtbuvD9N6JelEaIS/Pr62wUCinrq5bf1WRBGczt1v4wDhxFtVFNcMdUQ==", + "path": "microsoft.extensions.options.configurationextensions/6.0.0", + "hashPath": "microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", + "path": "microsoft.extensions.primitives/7.0.0", + "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.WebEncoders/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-V8XcqYcpcdBAxUhLeyYcuKmxu4CtNQA9IphTnARpQGhkop4A93v2XgM3AtaVVJo3H2cDWxWM6aeO8HxkifREqw==", + "path": "microsoft.extensions.webencoders/2.2.0", + "hashPath": "microsoft.extensions.webencoders.2.2.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.45.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ircobISCLWbtE5eEoLKU+ldfZ8O41vg4lcy38KRj/znH17jvBiAl8oxcyNp89CsuqE3onxIpn21Ca7riyDDrRw==", + "path": "microsoft.identity.client/4.45.0", + "hashPath": "microsoft.identity.client.4.45.0.nupkg.sha512" + }, + "Microsoft.Identity.Client.Extensions.Msal/2.19.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zVVZjn8aW7W79rC1crioDgdOwaFTQorsSO6RgVlDDjc7MvbEGz071wSNrjVhzR0CdQn6Sefx7Abf1o7vasmrLg==", + "path": "microsoft.identity.client.extensions.msal/2.19.3", + "hashPath": "microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/6.21.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XeE6LQtD719Qs2IG7HDi1TSw9LIkDbJ33xFiOBoHbApVw/8GpIBCbW+t7RwOjErUDyXZvjhZliwRkkLb8Z1uzg==", + "path": "microsoft.identitymodel.abstractions/6.21.0", + "hashPath": "microsoft.identitymodel.abstractions.6.21.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.21.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d3h1/BaMeylKTkdP6XwRCxuOoDJZ44V9xaXr6gl5QxmpnZGdoK3bySo3OQN8ehRLJHShb94ElLUvoXyglQtgAw==", + "path": "microsoft.identitymodel.jsonwebtokens/6.21.0", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.21.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.21.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tuEhHIQwvBEhMf8I50hy8FHmRSUkffDFP5EdLsSDV4qRcl2wvOPkQxYqEzWkh+ytW6sbdJGEXElGhmhDfAxAKg==", + "path": "microsoft.identitymodel.logging/6.21.0", + "hashPath": "microsoft.identitymodel.logging.6.21.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.21.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0FqY5cTLQKtHrClzHEI+QxJl8OBT2vUiEQQB7UKk832JDiJJmetzYZ3AdSrPjN/3l3nkhByeWzXnhrX0JbifKg==", + "path": "microsoft.identitymodel.protocols/6.21.0", + "hashPath": "microsoft.identitymodel.protocols.6.21.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.21.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vtSKL7n6EnAsLyxmiviusm6LKrblT2ndnNqN6rvVq6iIHAnPCK9E2DkDx6h1Jrpy1cvbp40r0cnTg23nhEAGTA==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.21.0", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.21.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.21.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AAEHZvZyb597a+QJSmtxH3n2P1nIJGpZ4Q89GTenknRx6T6zyfzf592yW/jA5e8EHN4tNMjjXHQaYWEq5+L05w==", + "path": "microsoft.identitymodel.tokens/6.21.0", + "hashPath": "microsoft.identitymodel.tokens.6.21.0.nupkg.sha512" + }, + "Microsoft.IO.RecyclableMemoryStream/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T5ahjOqWFMTSb9wFHKFNAcGXm35BxbUbwARtAPLSSPPFehcLz5mwDsKO1RR9R2aZ2Lk1BNQC7Ja63onOBE6rpA==", + "path": "microsoft.io.recyclablememorystream/2.2.1", + "hashPath": "microsoft.io.recyclablememorystream.2.2.1.nupkg.sha512" + }, + "Microsoft.Net.Http.Headers/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iZNkjYqlo8sIOI0bQfpsSoMTmB/kyvmV2h225ihyZT33aTp48ZpF6qYnXxzSXmHt8DpBAwBTX+1s1UFLbYfZKg==", + "path": "microsoft.net.http.headers/2.2.0", + "hashPath": "microsoft.net.http.headers.2.2.0.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.NETCore.Targets/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOZA3BWfz9RXjpzt0sRJJMjAscAUm3Hoa4UWAfceV9UTYxgwZ1lZt5nO2myFf+/jetYQo4uTP7zS8sJY67BBxg==", + "path": "microsoft.netcore.targets/1.1.0", + "hashPath": "microsoft.netcore.targets.1.1.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.4.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==", + "path": "microsoft.openapi/1.4.3", + "hashPath": "microsoft.openapi.1.4.3.nupkg.sha512" + }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "path": "microsoft.sqlserver.server/1.0.0", + "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" + }, + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.17.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gfDtAL1WhkjbRdbZlt/ZeQYCbgRpNCZCGj+yeqHObsNFRDHjq8qZJOX9AyTxJpSRYMi9SJk7JDyAbbVYRgEhAA==", + "path": "microsoft.visualstudio.azure.containers.tools.targets/1.17.0", + "hashPath": "microsoft.visualstudio.azure.containers.tools.targets.1.17.0.nupkg.sha512" + }, + "Microsoft.Win32.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ZQKCWxH7Ijp9BfahvL2Zyf1cJIk8XYLF6Yjzr2yi0b2cOut/HQ31qf1ThHAgCc3WiZMdnWcfJCgN82/0UunxA==", + "path": "microsoft.win32.primitives/4.3.0", + "hashPath": "microsoft.win32.primitives.4.3.0.nupkg.sha512" + }, + "Microsoft.Win32.Registry/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dDoKi0PnDz31yAyETfRntsLArTlVAVzUzCIvvEDsDsucrl33Dl8pIJG06ePTJTI3tGpeyHS9Cq7Foc/s4EeKcg==", + "path": "microsoft.win32.registry/5.0.0", + "hashPath": "microsoft.win32.registry.5.0.0.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "path": "microsoft.win32.systemevents/7.0.0", + "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512" + }, + "MongoDB.Bson/2.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pGp9F2PWU3Dj54PiXKibuaQ5rphWkfp8/Nsy5jLp2dWZGRGlr3r/Lfwnr0PvfihFfxieUcJZ2z3VeO8RctXcvA==", + "path": "mongodb.bson/2.19.0", + "hashPath": "mongodb.bson.2.19.0.nupkg.sha512" + }, + "MongoDB.Driver/2.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W/1YByn5gNGfHBe8AyDURXWKn1Z9xJ9IUjplFcvk8B/jlTlDOkmXgmwjlToIdqr0l8rX594kksjGx3a9if3dsg==", + "path": "mongodb.driver/2.19.0", + "hashPath": "mongodb.driver.2.19.0.nupkg.sha512" + }, + "MongoDB.Driver.Core/2.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KbzJJJc4EsUZ+YQoe7zZL1OxHVC9RjgQMso2LjhZWnlP+IHSON63vKNt7jGarXrOVXK0DqIUrRwQyXMgmqTX5g==", + "path": "mongodb.driver.core/2.19.0", + "hashPath": "mongodb.driver.core.2.19.0.nupkg.sha512" + }, + "MongoDB.Driver.GridFS/2.19.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-neAIAO+QkawjdOKkewZti9eCAyOe5/WJH4kqAGzWBENDCYSq7r5Q881YO7zToBreHaCxsM4UCG5fSp25oqBlYA==", + "path": "mongodb.driver.gridfs/2.19.0", + "hashPath": "mongodb.driver.gridfs.2.19.0.nupkg.sha512" + }, + "MongoDB.Libmongocrypt/1.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p9+peTZX63nGHskOLhvhfBtrknxNg1RzXepE07rPozuCGz27bMjCcQyvn2YByg0L3YEcNWdTmI4BlnG/5RF+5Q==", + "path": "mongodb.libmongocrypt/1.7.0", + "hashPath": "mongodb.libmongocrypt.1.7.0.nupkg.sha512" + }, + "Mono.TextTemplating/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", + "path": "mono.texttemplating/2.2.1", + "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512" + }, + "MySql.Data/8.0.29": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3I+QUbSDTknNVAWUEr8JEtXU5sk83kofwy79TROew9YMhVQAq39jZwpHQfFNG757JZFGWJ5oa5VA3tZBxJa1jw==", + "path": "mysql.data/8.0.29", + "hashPath": "mysql.data.8.0.29.nupkg.sha512" + }, + "MySqlConnector/2.2.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6sinY78RvryhHwpup3awdjYO7d5hhWahb5p/1VDODJhSxJggV/sBbYuKK5IQF9TuzXABiddqUbmRfM884tqA3Q==", + "path": "mysqlconnector/2.2.5", + "hashPath": "mysqlconnector.2.2.5.nupkg.sha512" + }, + "NEST/7.17.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bo9UyuIoVRx4IUQiuC8ZrlZuvAXKIccernC7UUKukQCEmRq2eVIk+gubHlnMQljrP51q0mN4cjgy9vv5uZPkoA==", + "path": "nest/7.17.5", + "hashPath": "nest.7.17.5.nupkg.sha512" + }, + "NETStandard.Library/1.6.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", + "path": "netstandard.library/1.6.1", + "hashPath": "netstandard.library.1.6.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Newtonsoft.Json.Bson/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QYFyxhaABwmq3p/21VrZNYvCg3DaEoN/wUuw5nmfAf0X3HLjgupwhkEWdgfb9nvGAUIv3osmZoD3kKl4jxEmYQ==", + "path": "newtonsoft.json.bson/1.0.2", + "hashPath": "newtonsoft.json.bson.1.0.2.nupkg.sha512" + }, + "NonFactors.Grid.Core.Mvc6/7.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rvPZICY/Gyca1vEuQmxRXR1PHxlxYmw7JzBjAF6wdQy+bXyikT5aq2kWO+4V0wl62uV6u0fFtL6nVnl9IKniXg==", + "path": "nonfactors.grid.core.mvc6/7.1.0", + "hashPath": "nonfactors.grid.core.mvc6.7.1.0.nupkg.sha512" + }, + "Npgsql/6.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SJMlOmFHr32oOzVXeHmarGaBKkhi0wHVN/rzuu2tUSJ4Qx2AkHCpr9R/DhLWwDiklqgzFU++9wkFyGJxbx/zzg==", + "path": "npgsql/6.0.4", + "hashPath": "npgsql.6.0.4.nupkg.sha512" + }, + "Pomelo.EntityFrameworkCore.MySql/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Qk5WB/skSZet5Yrz6AN2ywjZaB1pxfAmvQ+5I4khTkLwwIamI4QJoH2NphCWLFQL+2ar8HvsNCTmwYk0qhqL0w==", + "path": "pomelo.entityframeworkcore.mysql/7.0.0", + "hashPath": "pomelo.entityframeworkcore.mysql.7.0.0.nupkg.sha512" + }, + "Pomelo.EntityFrameworkCore.MySql.Design/1.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Hzq1gPtZ3+1zuNhOAQea8Q7j6iX0FjRwNp5S30+X0jBdATiLEJvlfQi4wuVQDS5Y2ClYICGynNqAJUR3EtgA5g==", + "path": "pomelo.entityframeworkcore.mysql.design/1.1.2", + "hashPath": "pomelo.entityframeworkcore.mysql.design.1.1.2.nupkg.sha512" + }, + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HdSSp5MnJSsg08KMfZThpuLPJpPwE5hBXvHwoKWosyHHfe8Mh5WKT0ylEOf6yNzX6Ngjxe4Whkafh5q7Ymac4Q==", + "path": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+yH1a49wJMy8Zt4yx5RhJrxO/DBDByAiCzNwiETI+1S4mPdCu0OY4djdciC7Vssk0l22wQaDLrXxXkp+3+7bVA==", + "path": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c3YNH1GQJbfIPJeCnr4avseugSqPrxwIqzthYyZDN6EuOyNOzq+y2KSUfRcXauya1sF4foESTgwM5e1A8arAKw==", + "path": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.native.System/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c/qWt2LieNZIj1jGnVNsE2Kl23Ya2aSTBuXMD6V7k9KWr6l16Tqdwq+hJScEpWER9753NWC8h96PaVNY5Ld7Jw==", + "path": "runtime.native.system/4.3.0", + "hashPath": "runtime.native.system.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Data.SqlClient.sni/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9kyFSIdN3T0qjDQ2R0HRXYIhS3l5psBzQi6qqhdLz+SzFyEy4sVxNOke+yyYv8Cu8rPER12c3RDjLT8wF3WBYQ==", + "path": "runtime.native.system.data.sqlclient.sni/4.7.0", + "hashPath": "runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512" + }, + "runtime.native.System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-INBPonS5QPEgn7naufQFXJEp3zX6L4bwHgJ/ZH78aBTpeNfQMtf7C6VrAFhlq2xxWBveIOWyFzQjJ8XzHMhdOQ==", + "path": "runtime.native.system.io.compression/4.3.0", + "hashPath": "runtime.native.system.io.compression.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZVuZJqnnegJhd2k/PtAbbIcZ3aZeITq3sj06oKfMBSfphW3HDmk/t4ObvbOk/JA/swGR0LNqMksAh/f7gpTROg==", + "path": "runtime.native.system.net.http/4.3.0", + "hashPath": "runtime.native.system.net.http.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DloMk88juo0OuOWr56QG7MNchmafTLYWvABy36izkrLI5VledI0rq28KGs1i9wbpeT9NPQrx/wTf8U2vazqQ3Q==", + "path": "runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NS1U+700m4KFRHR5o4vo9DSlTmlCKu/u7dtE5sUHVIPB+xpXxYQvgBgA6wEIeCz6Yfn0Z52/72WYsToCEPJnrw==", + "path": "runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-b3pthNgxxFcD+Pc0WSEoC0+md3MyhRS6aCEeenvNE3Fdw1HyJ18ZhRFVJJzIeR/O/jpxPboB805Ho0T3Ul7w8A==", + "path": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KeLz4HClKf+nFS7p/6Fi/CqyLXh81FpiGzcmuS8DGi9lUqSnZ6Es23/gv2O+1XVGfrbNmviF7CckBpavkBoIFQ==", + "path": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.CoreCompat.System.Drawing/6.0.5.128": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rjnyMb0Tk3k4DB5YeEeUBg9jbOY+VrT84o8Npkxayv2Vz1qSqgCfLATbvZ1oCuplSqHLINsSRMvkDup39pTIPw==", + "path": "runtime.osx.10.10-x64.corecompat.system.drawing/6.0.5.128", + "hashPath": "runtime.osx.10.10-x64.corecompat.system.drawing.6.0.5.128.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kVXCuMTrTlxq4XOOMAysuNwsXWpYeboGddNGpIgNSZmv1b6r/s/DPk0fYMB7Q5Qo4bY68o48jt4T4y5BVecbCQ==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512" + }, + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X7IdhILzr4ROXd8mI1BUCQMSHSQwelUlBjF1JyTKCjXaOGn2fB4EKBxQbCK2VjO3WaWIdlXZL3W6TiIVnrhX4g==", + "path": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nyFNiCk/r+VOiIqreLix8yN+q3Wga9+SE8BCgkf+2BwEKiNx6DyvFjCgkfV743/grxv8jHJ8gUK4XEQw7yzRYg==", + "path": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ytoewC6wGorL7KoCAvRfsgoJPJbNq+64k2SqW6JcOAebWsFUvCCYgfzQMrnpvPiEl4OrblUlhF2ji+Q1+SVLrQ==", + "path": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-I8bKw2I8k58Wx7fMKQJn2R8lamboCAiHfHeV/pS65ScKWMMI0+wJkLYlEKvgW1D/XvSl/221clBoR2q9QNNM7A==", + "path": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VB5cn/7OzUfzdnC8tqAIMQciVLiq2epm2NrAm1E9OjNRyG4lVhfR61SMcLizejzQP8R8Uf/0l5qOIbUEi+RdEg==", + "path": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl/4.3.0", + "hashPath": "runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "runtime.win-arm64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbrynESTp3bm5O/+jGL8v0Qg5SJlTV08lpIpFesXjF6uGNMWqFnUQbYBJwZTeua6E/Y7FIM1C54Ey1btLWupdg==", + "path": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x64.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-38ugOfkYJqJoX9g6EYRlZB5U2ZJH51UP8ptxZgdpS07FgOEToV+lS11ouNK2PM12Pr6X/PpT5jK82G3DwH/SxQ==", + "path": "runtime.win-x64.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "runtime.win-x86.runtime.native.System.Data.SqlClient.sni/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YhEdSQUsTx+C8m8Bw7ar5/VesXvCFMItyZF7G1AUY+OM0VPZUOeAVpJ4Wl6fydBGUYZxojTDR3I6Bj/+BPkJNA==", + "path": "runtime.win-x86.runtime.native.system.data.sqlclient.sni/4.4.0", + "hashPath": "runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512" + }, + "Sentry/3.29.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WSkE7LS496it0A9Sbfz7yvsg5/PCzxPAROKtmsZDrdrsks5kzKei9dN9/FeoL3XgUfRv5557jCG961bttTevrg==", + "path": "sentry/3.29.1", + "hashPath": "sentry.3.29.1.nupkg.sha512" + }, + "Sentry.AspNetCore/3.29.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CfuwP1gL066QOioB9LrHKrEy76ffLH1WCo6nSFpdbLIgrqTWlfhMZ+CcrUzxrqGSJMxFqWw0cg35MlKjB+MS1A==", + "path": "sentry.aspnetcore/3.29.1", + "hashPath": "sentry.aspnetcore.3.29.1.nupkg.sha512" + }, + "Sentry.Extensions.Logging/3.29.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aOm5XFv2RHD39U1qfTS8mHIL4VprO4txFcwL2ANsvGAybbr0g5Crp89ImMNQCLIqWDs6G8oiqE5CfsV+8aSl6g==", + "path": "sentry.extensions.logging/3.29.1", + "hashPath": "sentry.extensions.logging.3.29.1.nupkg.sha512" + }, + "Serilog/2.12.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xaiJLIdu6rYMKfQMYUZgTy8YK7SMZjB4Yk50C/u//Z4OsvxkUfSPJy4nknfvwAC34yr13q7kcyh4grbwhSxyZg==", + "path": "serilog/2.12.0", + "hashPath": "serilog.2.12.0.nupkg.sha512" + }, + "Serilog.AspNetCore/6.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iMwFUJDN+/yWIPz4TKCliagJ1Yn//SceCYCzgdPwe/ECYUwb5/WUL8cTzRKV+tFwxGjLEV/xpm0GupS5RwbhSQ==", + "path": "serilog.aspnetcore/6.1.0", + "hashPath": "serilog.aspnetcore.6.1.0.nupkg.sha512" + }, + "Serilog.Enrichers.Environment/2.2.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DMrj3A4l65kc4JouQyZjjFv7N58Y7lGsB81kSzorTwUGeI2wrTy7CVwSOfG90/Pcu/HV5bwGrUmxDZ38pON+5Q==", + "path": "serilog.enrichers.environment/2.2.0", + "hashPath": "serilog.enrichers.environment.2.2.0.nupkg.sha512" + }, + "Serilog.Exceptions/8.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nc/+hUw3lsdo0zCj0KMIybAu7perMx79vu72w0za9Nsi6mWyNkGXxYxakAjWB7nEmYL6zdmhEQRB4oJ2ALUeug==", + "path": "serilog.exceptions/8.4.0", + "hashPath": "serilog.exceptions.8.4.0.nupkg.sha512" + }, + "Serilog.Extensions.Hosting/5.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-o0VUyt3npAqOJaZ6CiWLFeLYs3CYJwfcAqaUqprzsmj7qYIvorcn8cZLVR8AQX6vzX7gee2bD0sQeA17iO2/Aw==", + "path": "serilog.extensions.hosting/5.0.1", + "hashPath": "serilog.extensions.hosting.5.0.1.nupkg.sha512" + }, + "Serilog.Extensions.Logging/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IWfem7wfrFbB3iw1OikqPFNPEzfayvDuN4WP7Ue1AVFskalMByeWk3QbtUXQR34SBkv1EbZ3AySHda/ErDgpcg==", + "path": "serilog.extensions.logging/3.1.0", + "hashPath": "serilog.extensions.logging.3.1.0.nupkg.sha512" + }, + "Serilog.Formatting.Compact/1.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pNroKVjo+rDqlxNG5PXkRLpfSCuDOBY0ri6jp9PLe505ljqwhwZz8ospy2vWhQlFu5GkIesh3FcDs4n7sWZODA==", + "path": "serilog.formatting.compact/1.1.0", + "hashPath": "serilog.formatting.compact.1.1.0.nupkg.sha512" + }, + "Serilog.Formatting.Elasticsearch/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-r93M8cn7xlmk4lXzVG8mWxgeEXWZ4wRBSHMEhyYOf3Av7M+HJ4+eYAv5zGrp40OCLkZEPzvjVAqK3KkRzdWhrQ==", + "path": "serilog.formatting.elasticsearch/9.0.0", + "hashPath": "serilog.formatting.elasticsearch.9.0.0.nupkg.sha512" + }, + "Serilog.Settings.Configuration/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7GNudISZwqaT902hqEL2OFGTZeUFWfnrNLupJkOqeF41AR3GjcxX+Hwb30xb8gG2/CDXsCMVfF8o0+8KY0fJNg==", + "path": "serilog.settings.configuration/3.3.0", + "hashPath": "serilog.settings.configuration.3.3.0.nupkg.sha512" + }, + "Serilog.Sinks.Console/4.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-K6N5q+5fetjnJPvCmkWOpJ/V8IEIoMIB1s86OzBrbxwTyHxdx3pmz4H+8+O/Dc/ftUX12DM1aynx/dDowkwzqg==", + "path": "serilog.sinks.console/4.1.0", + "hashPath": "serilog.sinks.console.4.1.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.Elasticsearch/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ule76W48feKREYBXrZEkqhiwDkwjMsQbvNMQyVVlH61zXg9FyStzjryVHbefLmHOurvRUmtHOUEdkG9gIS2M6Q==", + "path": "serilog.sinks.elasticsearch/9.0.0", + "hashPath": "serilog.sinks.elasticsearch.9.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" + }, + "Serilog.Sinks.PeriodicBatching/3.1.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NDWR7m3PalVlGEq3rzoktrXikjFMLmpwF0HI4sowo8YDdU+gqPlTHlDQiOGxHfB0sTfjPA9JjA7ctKG9zqjGkw==", + "path": "serilog.sinks.periodicbatching/3.1.0", + "hashPath": "serilog.sinks.periodicbatching.3.1.0.nupkg.sha512" + }, + "SharpCompress/0.30.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XqD4TpfyYGa7QTPzaGlMVbcecKnXy4YmYLDWrU+JIj7IuRNl7DH2END+Ll7ekWIY8o3dAMWLFDE1xdhfIWD1nw==", + "path": "sharpcompress/0.30.1", + "hashPath": "sharpcompress.0.30.1.nupkg.sha512" + }, + "Snappier/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rFtK2KEI9hIe8gtx3a0YDXdHOpedIf9wYCEYtBEmtlyiWVX3XlCNV03JrmmAi/Cdfn7dxK+k0sjjcLv4fpHnqA==", + "path": "snappier/1.0.0", + "hashPath": "snappier.1.0.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FK05XokgjgwlCI6wCT+D4/abtQkL1X1/B9Oas6uIwHFmYrIO9WUD5aLC9IzMs9GnHfUXOtXZ2S43gN1mhs5+aA==", + "path": "swashbuckle.aspnetcore/6.5.0", + "hashPath": "swashbuckle.aspnetcore.6.5.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Annotations/6.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EcHd1z2pEdnpaBMTI9qjVxk6mFVGVMZ1n0ySC3fjrkXCQQ8O9fMdt9TxPJRKyjiTiTjvO9700jKjmyl+hPBinQ==", + "path": "swashbuckle.aspnetcore.annotations/6.5.0", + "hashPath": "swashbuckle.aspnetcore.annotations.6.5.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XWmCmqyFmoItXKFsQSwQbEAsjDKcxlNf1l+/Ki42hcb6LjKL8m5Db69OTvz5vLonMSRntYO1XLqz0OP+n3vKnA==", + "path": "swashbuckle.aspnetcore.swagger/6.5.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y/qW8Qdg9OEs7V013tt+94OdPxbRdbhcEbw4NiwGvf4YBcfhL/y7qp/Mjv/cENsQ2L3NqJ2AOu94weBy/h4KvA==", + "path": "swashbuckle.aspnetcore.swaggergen/6.5.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OvbvxX+wL8skxTBttcBsVxdh73Fag4xwqEU2edh4JMn7Ws/xJHnY/JB1e9RoCb6XpDxUF3hD9A0Z1lEUx40Pfw==", + "path": "swashbuckle.aspnetcore.swaggerui/6.5.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512" + }, + "System.AppContext/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fKC+rmaLfeIzUhagxY17Q9siv/sPrjjKcfNg1Ic8IlQkZLipo8ljcaZQu4VtI4Jqbzjc2VTjzGLF6WmsRXAEgA==", + "path": "system.appcontext/4.3.0", + "hashPath": "system.appcontext.4.3.0.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.CodeDom/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", + "path": "system.codedom/4.4.0", + "hashPath": "system.codedom.4.4.0.nupkg.sha512" + }, + "System.Collections/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Dcj85/TBdVpL5Zr+gEEBUuFe2icOnLalmEh9hfck1PTYbbyWuZgh4fmm2ysCLTrqLQw6t3TgTyJ+VLp+Qb+Lw==", + "path": "system.collections/4.3.0", + "hashPath": "system.collections.4.3.0.nupkg.sha512" + }, + "System.Collections.Concurrent/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ztl69Xp0Y/UXCL+3v3tEU+lIy+bvjKNUmopn1wep/a291pVPK7dxBd6T7WnlQqRog+d1a/hSsgRsmFnIBKTPLQ==", + "path": "system.collections.concurrent/4.3.0", + "hashPath": "system.collections.concurrent.4.3.0.nupkg.sha512" + }, + "System.Collections.Immutable/1.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-n+AGX7zmiZumW9aggOkXaHzUeAS3EfeTErnkKCusyONUozbTv+kMb8VE36m+ldV6kF9g57G2c641KCdgH9E0pg==", + "path": "system.collections.immutable/1.3.1", + "hashPath": "system.collections.immutable.1.3.1.nupkg.sha512" + }, + "System.ComponentModel.Annotations/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UxYQ3FGUOtzJ7LfSdnYSFd7+oEv6M8NgUatatIN2HxNtDdlcvFAf+VIq4Of9cDMJEJC0aSRv/x898RYhB4Yppg==", + "path": "system.componentmodel.annotations/4.5.0", + "hashPath": "system.componentmodel.annotations.4.5.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aM7cbfEfVNlEEOj3DsZP+2g9NRwbkyiAv2isQEzw7pnkDg9ekCU2m1cdJLM02Uq691OaCS91tooaxcEn8d0q5w==", + "path": "system.configuration.configurationmanager/5.0.0", + "hashPath": "system.configuration.configurationmanager.5.0.0.nupkg.sha512" + }, + "System.Console/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DHDrIxiqk1h03m6khKWV2X8p/uvN79rgSqpilL6uzpmSfxfU5ng8VcPtW4qsDsQDHiTv6IPV9TmD5M/vElPNLg==", + "path": "system.console/4.3.0", + "hashPath": "system.console.4.3.0.nupkg.sha512" + }, + "System.Data.SqlClient/4.8.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fRqxut4lrndPHrXD+ht1XRmCL3obuKldm4XjCRYS9p5f7FSR7shBxAwTkDrpFMsHC9BhNgjjmUtiIjvehn5zkg==", + "path": "system.data.sqlclient/4.8.5", + "hashPath": "system.data.sqlclient.4.8.5.nupkg.sha512" + }, + "System.Diagnostics.Debug/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZUhUOdqmaG5Jk3Xdb8xi5kIyQYAA4PnTNlHx1mu9ZY3qv4ELIdKbnL/akbGaKi2RnNUWaZsAs31rvzFdewTj2g==", + "path": "system.diagnostics.debug/4.3.0", + "hashPath": "system.diagnostics.debug.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-frQDfv0rl209cKm1lnwTgFPzNigy2EKk1BS3uAvHvlBVKe5cymGyHO+Sj+NLv5VF/AhHsqPIUUwya5oV4CHMUw==", + "path": "system.diagnostics.diagnosticsource/6.0.0", + "hashPath": "system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512" + }, + "System.Diagnostics.FileVersionInfo/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-omCF64wzQ3Q2CeIqkD6lmmxeMZtGHUmzgFMPjfVaOsyqpR66p/JaZzManMw1s33osoAb5gqpncsjie67+yUPHQ==", + "path": "system.diagnostics.fileversioninfo/4.3.0", + "hashPath": "system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.StackTrace/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiHg0vgtd35/DM9jvtaC1eKRpWZxr0gcQd643ABG7GnvSlf5pOkY2uyd42mMOJoOmKvnpNj0F4tuoS1pacTwYw==", + "path": "system.diagnostics.stacktrace/4.3.0", + "hashPath": "system.diagnostics.stacktrace.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tools/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-UUvkJfSYJMM6x527dJg2VyWPSRqIVB0Z7dbjHst1zmwTXz5CcXSYJFWRpuigfbO1Lf7yfZiIaEUesfnl/g5EyA==", + "path": "system.diagnostics.tools/4.3.0", + "hashPath": "system.diagnostics.tools.4.3.0.nupkg.sha512" + }, + "System.Diagnostics.Tracing/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rswfv0f/Cqkh78rA5S8eN8Neocz234+emGCtTF3lxPY96F+mmmUen6tbn0glN6PMvlKQb9bPAY5e9u7fgPTkKw==", + "path": "system.diagnostics.tracing/4.3.0", + "hashPath": "system.diagnostics.tracing.4.3.0.nupkg.sha512" + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "path": "system.drawing.common/7.0.0", + "hashPath": "system.drawing.common.7.0.0.nupkg.sha512" + }, + "System.Dynamic.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SNVi1E/vfWUAs/WYKhE9+qlS6KqK0YVhnlT0HQtr8pMIA8YX3lwy3uPMownDwdYISBdmAF/2holEIldVp85Wag==", + "path": "system.dynamic.runtime/4.3.0", + "hashPath": "system.dynamic.runtime.4.3.0.nupkg.sha512" + }, + "System.Formats.Asn1/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+nfpV0afLmvJW8+pLlHxRjz3oZJw4fkyU9MMEaMhCsHi/SN9bGF9q79ROubDiwTiCHezmK0uCWkPP7tGFP/4yg==", + "path": "system.formats.asn1/7.0.0", + "hashPath": "system.formats.asn1.7.0.0.nupkg.sha512" + }, + "System.Globalization/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kYdVd2f2PAdFGblzFswE4hkNANJBKRmsfa2X5LG2AcWE1c7/4t0pYae1L8vfZ5xvE2nK/R9JprtToA61OSHWIg==", + "path": "system.globalization/4.3.0", + "hashPath": "system.globalization.4.3.0.nupkg.sha512" + }, + "System.Globalization.Calendars/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GUlBtdOWT4LTV3I+9/PJW+56AnnChTaOqqTLFtdmype/L500M2LIyXgmtd9X2P2VOkmJd5c67H5SaC2QcL1bFA==", + "path": "system.globalization.calendars/4.3.0", + "hashPath": "system.globalization.calendars.4.3.0.nupkg.sha512" + }, + "System.Globalization.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FhKmdR6MPG+pxow6wGtNAWdZh7noIOpdD5TwQ3CprzgIE1bBBoim0vbR1+AWsWjQmU7zXHgQo4TWSP6lCeiWcQ==", + "path": "system.globalization.extensions/4.3.0", + "hashPath": "system.globalization.extensions.4.3.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.21.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JRD8AuypBE+2zYxT3dMJomQVsPYsCqlyZhWel3J1d5nzQokSRyTueF+Q4ID3Jcu6zSZKuzOdJ1MLTkbQsDqcvQ==", + "path": "system.identitymodel.tokens.jwt/6.21.0", + "hashPath": "system.identitymodel.tokens.jwt.6.21.0.nupkg.sha512" + }, + "System.IO/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3qjaHvxQPDpSOYICjUoTsmoq5u6QJAFRUITgeT/4gqkF1bajbSmb1kwSxEA8AHlofqgcKJcM8udgieRNhaJ5Cg==", + "path": "system.io/4.3.0", + "hashPath": "system.io.4.3.0.nupkg.sha512" + }, + "System.IO.Compression/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YHndyoiV90iu4iKG115ibkhrG+S3jBm8Ap9OwoUAzO5oPDAWcr0SFwQFm0HjM8WkEZWo0zvLTyLmbvTkW1bXgg==", + "path": "system.io.compression/4.3.0", + "hashPath": "system.io.compression.4.3.0.nupkg.sha512" + }, + "System.IO.Compression.ZipFile/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-G4HwjEsgIwy3JFBduZ9quBkAu+eUwjIdJleuNSgmUojbH6O3mlvEIme+GHx/cLlTAPcrnnL7GqvB9pTlWRfhOg==", + "path": "system.io.compression.zipfile/4.3.0", + "hashPath": "system.io.compression.zipfile.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3wEMARTnuio+ulnvi+hkRNROYwa1kylvYahhcLk4HSoVdl+xxTFVeVlYOfLwrDPImGls0mDqbMhrza8qnWPTdA==", + "path": "system.io.filesystem/4.3.0", + "hashPath": "system.io.filesystem.4.3.0.nupkg.sha512" + }, + "System.IO.FileSystem.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6QOb2XFLch7bEc4lIcJH49nJN2HV+OC3fHDgsLVsBVBk3Y4hFAnOBGzJ2lUu7CyDDFo9IBWkSsnbkT6IBwwiMw==", + "path": "system.io.filesystem.primitives/4.3.0", + "hashPath": "system.io.filesystem.primitives.4.3.0.nupkg.sha512" + }, + "System.IO.Pipelines/4.5.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NOC/SO4gSX6t0tB25xxDPqPEzkksuzW7NVFBTQGAkjXXUPQl7ZtyE83T7tUCP2huFBbPombfCKvq1Ox1aG8D9w==", + "path": "system.io.pipelines/4.5.2", + "hashPath": "system.io.pipelines.4.5.2.nupkg.sha512" + }, + "System.Linq/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5DbqIUpsDp0dFftytzuMmc0oeMdQwjcP/EWxsksIz/w1TcFRkZ3yKKz0PqiYFMmEwPSWw+qNVqD7PJ889JzHbw==", + "path": "system.linq/4.3.0", + "hashPath": "system.linq.4.3.0.nupkg.sha512" + }, + "System.Linq.Expressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PGKkrd2khG4CnlyJwxwwaWWiSiWFNBGlgXvJpeO0xCXrZ89ODrQ6tjEWS/kOqZ8GwEOUATtKtzp1eRgmYNfclg==", + "path": "system.linq.expressions/4.3.0", + "hashPath": "system.linq.expressions.4.3.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", + "path": "system.memory.data/1.0.2", + "hashPath": "system.memory.data.1.0.2.nupkg.sha512" + }, + "System.Net.Http/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sYg+FtILtRQuYWSIAuNOELwVuVsxVyJGWQyOnlAzhV4xvhyFnON1bAzYYC+jjRW8JREM45R0R5Dgi8MTC5sEwA==", + "path": "system.net.http/4.3.0", + "hashPath": "system.net.http.4.3.0.nupkg.sha512" + }, + "System.Net.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qOu+hDwFwoZPbzPvwut2qATe3ygjeQBDQj91xlsaqGFQUI5i4ZnZb8yyQuLGpDGivEPIt8EJkd1BVzVoP31FXA==", + "path": "system.net.primitives/4.3.0", + "hashPath": "system.net.primitives.4.3.0.nupkg.sha512" + }, + "System.Net.Sockets/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-m6icV6TqQOAdgt5N/9I5KNpjom/5NFtkmGseEH+AK/hny8XrytLH3+b5M8zL/Ycg3fhIocFpUMyl/wpFnVRvdw==", + "path": "system.net.sockets/4.3.0", + "hashPath": "system.net.sockets.4.3.0.nupkg.sha512" + }, + "System.Net.WebSockets.WebSocketProtocol/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FquLjdb/0CeMqb15u9Px6TwnyFl306WztKWu6sKKc5kWPYMdpi5BFEkdxzGoieYFp9UksyGwJnCw4KKAUfJjrw==", + "path": "system.net.websockets.websocketprotocol/4.5.1", + "hashPath": "system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.ObjectModel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bdX+80eKv9bN6K4N+d77OankKHGn6CH711a6fcOpMQu2Fckp/Ft4L/kW9WznHpyR0NRAvJutzOMHNNlBGvxQzQ==", + "path": "system.objectmodel/4.3.0", + "hashPath": "system.objectmodel.4.3.0.nupkg.sha512" + }, + "System.Reflection/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KMiAFoW7MfJGa9nDFNcfu+FpEdiHpWgTcS2HdMpDvt9saK3y/G4GwprPyzqjFH9NTaGPQeWNHU+iDlDILj96aQ==", + "path": "system.reflection/4.3.0", + "hashPath": "system.reflection.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-228FG0jLcIwTVJyz8CLFKueVqQK36ANazUManGaJHkO0icjiIypKW7YLWLIWahyIkdh5M7mV2dJepllLyA1SKg==", + "path": "system.reflection.emit/4.3.0", + "hashPath": "system.reflection.emit.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.ILGeneration/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-59tBslAk9733NXLrUJrwNZEzbMAcu8k344OYo+wfSVygcgZ9lgBdGIzH/nrg3LYhXceynyvTc8t5/GD4Ri0/ng==", + "path": "system.reflection.emit.ilgeneration/4.3.0", + "hashPath": "system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512" + }, + "System.Reflection.Emit.Lightweight/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oadVHGSMsTmZsAF864QYN1t1QzZjIcuKU3l2S9cZOwDdDueNTrqq1yRj7koFfIGEnKpt6NjpL3rOzRhs4ryOgA==", + "path": "system.reflection.emit.lightweight/4.3.0", + "hashPath": "system.reflection.emit.lightweight.4.3.0.nupkg.sha512" + }, + "System.Reflection.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rJkrJD3kBI5B712aRu4DpSIiHRtr6QlfZSQsb0hYHrDCZORXCFjQfoipo2LaMUHoT9i1B7j7MnfaEKWDFmFQNQ==", + "path": "system.reflection.extensions/4.3.0", + "hashPath": "system.reflection.extensions.4.3.0.nupkg.sha512" + }, + "System.Reflection.Metadata/1.4.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KYPNMDrLB2R+G5JJiJ2fjBpihtktKVIjsirmyyv+VDo5rQkIR9BWeCYM1wDSzbQatWNZ/NQfPsQyTB1Ui3qBfQ==", + "path": "system.reflection.metadata/1.4.2", + "hashPath": "system.reflection.metadata.1.4.2.nupkg.sha512" + }, + "System.Reflection.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5RXItQz5As4xN2/YUDxdpsEkMhvw3e6aNveFXUn4Hl/udNTCNhnKp8lT9fnc3MhvGKh1baak5CovpuQUXHAlIA==", + "path": "system.reflection.primitives/4.3.0", + "hashPath": "system.reflection.primitives.4.3.0.nupkg.sha512" + }, + "System.Reflection.TypeExtensions/4.7.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VybpaOQQhqE6siHppMktjfGBw1GCwvCqiufqmP8F1nj7fTUNtW35LOEt3UZTEsECfo+ELAl/9o9nJx3U91i7vA==", + "path": "system.reflection.typeextensions/4.7.0", + "hashPath": "system.reflection.typeextensions.4.7.0.nupkg.sha512" + }, + "System.Resources.ResourceManager/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/zrcPkkWdZmI4F92gL/TPumP98AVDu/Wxr3CSJGQQ+XN6wbRZcyfSKVoPo17ilb3iOr0cCRqJInGwNMolqhS8A==", + "path": "system.resources.resourcemanager/4.3.0", + "hashPath": "system.resources.resourcemanager.4.3.0.nupkg.sha512" + }, + "System.Runtime/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JufQi0vPQ0xGnAczR13AUFglDyVYt4Kqnz1AZaiKZ5+GICq0/1MH/mO/eAJHt/mHW1zjKBJd7kV26SrxddAhiw==", + "path": "system.runtime/4.3.0", + "hashPath": "system.runtime.4.3.0.nupkg.sha512" + }, + "System.Runtime.Caching/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-30D6MkO8WF9jVGWZIP0hmCN8l9BTY4LCsAzLIe4xFSXzs+AjDotR7DpSmj27pFskDURzUvqYYY0ikModgBTxWw==", + "path": "system.runtime.caching/5.0.0", + "hashPath": "system.runtime.caching.5.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Runtime.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-guW0uK0fn5fcJJ1tJVXYd7/1h5F+pea1r7FLSOz/f8vPEqbR2ZAknuRDvTQ8PzAilDveOxNjSfr0CHfIQfFk8g==", + "path": "system.runtime.extensions/4.3.0", + "hashPath": "system.runtime.extensions.4.3.0.nupkg.sha512" + }, + "System.Runtime.Handles/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OKiSUN7DmTWeYb3l51A7EYaeNMnvxwE249YtZz7yooT4gOZhmTjIn48KgSsw2k2lYdLgTKNJw/ZIfSElwDRVgg==", + "path": "system.runtime.handles/4.3.0", + "hashPath": "system.runtime.handles.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uv1ynXqiMK8mp1GM3jDqPCFN66eJ5w5XNomaK2XD+TuCroNTLFGeZ+WCmBMcBDyTFKou3P6cR6J/QsaqDp7fGQ==", + "path": "system.runtime.interopservices/4.3.0", + "hashPath": "system.runtime.interopservices.4.3.0.nupkg.sha512" + }, + "System.Runtime.InteropServices.RuntimeInformation/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbz4YJMqRDR7oLeMRbdYv7mYzc++17lNhScCX0goO2XpGWdvAt60CGN+FHdePUEHCe/Jy9jUlvNAiNdM+7jsOw==", + "path": "system.runtime.interopservices.runtimeinformation/4.3.0", + "hashPath": "system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512" + }, + "System.Runtime.Numerics/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yMH+MfdzHjy17l2KESnPiF2dwq7T+xLnSJar7slyimAkUh/gTrS9/UQOtv7xarskJ2/XDSNvfLGOBQPjL7PaHQ==", + "path": "system.runtime.numerics/4.3.0", + "hashPath": "system.runtime.numerics.4.3.0.nupkg.sha512" + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "path": "system.security.accesscontrol/5.0.0", + "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Algorithms/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W1kd2Y8mYSCgc3ULTAZ0hOP2dSdG5YauTb1089T0/kRcN2MpSAW1izOFROrJgxSlMn3ArsgHXagigyi+ibhevg==", + "path": "system.security.cryptography.algorithms/4.3.0", + "hashPath": "system.security.cryptography.algorithms.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "path": "system.security.cryptography.cng/5.0.0", + "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Csp/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X4s/FCkEUnRGnwR3aSfVIkldBmtURMhmexALNTwpjklzxWU7yjMk7GHLKOZTNkgnWnE0q7+BCf9N2LVRWxewaA==", + "path": "system.security.cryptography.csp/4.3.0", + "hashPath": "system.security.cryptography.csp.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1DEWjZZly9ae9C79vFwqaO5kaOlI5q+3/55ohmq/7dpDyDfc8lYe7YVxJUZ5MF/NtbkRjwFRo14yM4OEo9EmDw==", + "path": "system.security.cryptography.encoding/4.3.0", + "hashPath": "system.security.cryptography.encoding.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.OpenSsl/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h4CEgOgv5PKVF/HwaHzJRiVboL2THYCou97zpmhjghx5frc7fIvlkY1jL+lnIQyChrJDMNEXS6r7byGif8Cy4w==", + "path": "system.security.cryptography.openssl/4.3.0", + "hashPath": "system.security.cryptography.openssl.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mjUbEXkR6DYRef6dnEYKdfec9otcAkibExL+1f9hmbGlWIUyaCnS3Y3oGZEet38waXmuY1ORE8vgv4sgD5nMYg==", + "path": "system.security.cryptography.pkcs/7.0.0", + "hashPath": "system.security.cryptography.pkcs.7.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Primitives/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7bDIyVFNL/xKeFHjhobUAQqSpJq9YTOpbEs6mR233Et01STBMXNAc/V+BM6dwYGc95gVh/Zf+iVXWzj3mE8DWg==", + "path": "system.security.cryptography.primitives/4.3.0", + "hashPath": "system.security.cryptography.primitives.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HGxMSAFAPLNoxBvSfW08vHde0F9uh7BjASwu6JF9JnXuEPhCY3YUqURn0+bQV/4UWeaqymmrHWV+Aw9riQCtCA==", + "path": "system.security.cryptography.protecteddata/5.0.0", + "hashPath": "system.security.cryptography.protecteddata.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.X509Certificates/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t2Tmu6Y2NtJ2um0RtcuhP7ZdNNxXEgUm2JeoA/0NvlMjAhKCnM1NX07TDl3244mVp3QU6LPEhT3HTtH1uF7IYw==", + "path": "system.security.cryptography.x509certificates/4.3.0", + "hashPath": "system.security.cryptography.x509certificates.4.3.0.nupkg.sha512" + }, + "System.Security.Cryptography.Xml/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i2Jn6rGXR63J0zIklImGRkDIJL4b1NfPSEbIVHBlqoIb12lfXIigCbDRpDmIEzwSo/v1U5y/rYJdzZYSyCWxvg==", + "path": "system.security.cryptography.xml/4.5.0", + "hashPath": "system.security.cryptography.xml.4.5.0.nupkg.sha512" + }, + "System.Security.Permissions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uE8juAhEkp7KDBCdjDIE3H9R1HJuEHqeqX8nLX9gmYKWwsqk3T5qZlPx8qle5DPKimC/Fy3AFTdV7HamgCh9qQ==", + "path": "system.security.permissions/5.0.0", + "hashPath": "system.security.permissions.5.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.Text.Encoding/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BiIg+KWaSDOITze6jGQynxg64naAPtqGHBwDrLaCtixsa5bKiR8dpPOHA7ge3C0JJQizJE+sfkz1wV+BAKAYZw==", + "path": "system.text.encoding/4.3.0", + "hashPath": "system.text.encoding.4.3.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LSyCblMpvOe0N3E+8e0skHcrIhgV2huaNcjUUEa8hRtgEAm36aGkRoC8Jxlb6Ra6GSfF29ftduPNywin8XolzQ==", + "path": "system.text.encoding.codepages/7.0.0", + "hashPath": "system.text.encoding.codepages.7.0.0.nupkg.sha512" + }, + "System.Text.Encoding.Extensions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YVMK0Bt/A43RmwizJoZ22ei2nmrhobgeiYwFzC4YAN+nue8RF6djXDMog0UCn+brerQoYVyaS+ghy9P/MUVcmw==", + "path": "system.text.encoding.extensions/4.3.0", + "hashPath": "system.text.encoding.extensions.4.3.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", + "path": "system.text.encodings.web/7.0.0", + "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" + }, + "System.Text.Json/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==", + "path": "system.text.json/7.0.0", + "hashPath": "system.text.json.7.0.0.nupkg.sha512" + }, + "System.Text.RegularExpressions/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RpT2DA+L660cBt1FssIE9CAGpLFdFPuheB7pLpKpn6ZXNby7jDERe8Ua/Ne2xGiwLVG2JOqziiaVCGDon5sKFA==", + "path": "system.text.regularexpressions/4.3.0", + "hashPath": "system.text.regularexpressions.4.3.0.nupkg.sha512" + }, + "System.Threading/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VkUS0kOBcUf3Wwm0TSbrevDDZ6BlM+b/HRiapRFWjM5O0NS0LviG0glKmFK+hhPDd1XFeSdU1GmlLhb2CoVpIw==", + "path": "system.threading/4.3.0", + "hashPath": "system.threading.4.3.0.nupkg.sha512" + }, + "System.Threading.Channels/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MEH06N0rIGmRT4LOKQ2BmUO0IxfvmIY/PaouSq+DFQku72OL8cxfw8W99uGpTCFf2vx2QHLRSh374iSM3asdTA==", + "path": "system.threading.channels/4.5.0", + "hashPath": "system.threading.channels.4.5.0.nupkg.sha512" + }, + "System.Threading.Tasks/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LbSxKEdOUhVe8BezB/9uOGGppt+nZf6e1VFyw6v3DN6lqitm0OSn2uXMOdtP0M3W4iMcqcivm2J6UgqiwwnXiA==", + "path": "system.threading.tasks/4.3.0", + "hashPath": "system.threading.tasks.4.3.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "System.Threading.Tasks.Parallel/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cbjBNZHf/vQCfcdhzx7knsiygoCKgxL8mZOeocXZn5gWhCdzHIq6bYNKWX0LAJCWYP7bds4yBK8p06YkP0oa0g==", + "path": "system.threading.tasks.parallel/4.3.0", + "hashPath": "system.threading.tasks.parallel.4.3.0.nupkg.sha512" + }, + "System.Threading.Thread/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OHmbT+Zz065NKII/ZHcH9XO1dEuLGI1L2k7uYss+9C1jLxTC9kTZZuzUOyXHayRk+dft9CiDf3I/QZ0t8JKyBQ==", + "path": "system.threading.thread/4.3.0", + "hashPath": "system.threading.thread.4.3.0.nupkg.sha512" + }, + "System.Threading.Timer/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Z6YfyYTCg7lOZjJzBjONJTFKGN9/NIYKSxhU5GRd+DTwHSZyvWp1xuI5aR+dLg+ayyC5Xv57KiY4oJ0tMO89fQ==", + "path": "system.threading.timer/4.3.0", + "hashPath": "system.threading.timer.4.3.0.nupkg.sha512" + }, + "System.ValueTuple/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cNLEvBX3d6MMQRZe3SMFNukVbitDAEpVZO17qa0/2FHxZ7Y7PpFRpr6m2615XYM/tYYYf0B+WyHNujqIw8Luwg==", + "path": "system.valuetuple/4.3.0", + "hashPath": "system.valuetuple.4.3.0.nupkg.sha512" + }, + "System.Windows.Extensions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-c1ho9WU9ZxMZawML+ssPKZfdnrg/OjR3pe0m9v8230z3acqphwvPJqzAkH54xRYm5ntZHGG1EPP3sux9H3qSPg==", + "path": "system.windows.extensions/5.0.0", + "hashPath": "system.windows.extensions.5.0.0.nupkg.sha512" + }, + "System.Xml.ReaderWriter/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GrprA+Z0RUXaR4N7/eW71j1rgMnEnEVlgii49GZyAjTH7uliMnrOU3HNFBr6fEDBCJCIdlVNq9hHbaDR621XBA==", + "path": "system.xml.readerwriter/4.3.0", + "hashPath": "system.xml.readerwriter.4.3.0.nupkg.sha512" + }, + "System.Xml.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5zJ0XDxAIg8iy+t4aMnQAu0MqVbqyvfoUVl1yDV61xdo3Vth45oA2FoY4pPkxYAH5f8ixpmTqXeEIya95x0aCQ==", + "path": "system.xml.xdocument/4.3.0", + "hashPath": "system.xml.xdocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XmlDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lJ8AxvkX7GQxpC6GFCeBj8ThYVyQczx2+f/cWHJU8tjS7YfI6Cv6bon70jVEgs2CiFbmmM8b9j1oZVx0dSI2Ww==", + "path": "system.xml.xmldocument/4.3.0", + "hashPath": "system.xml.xmldocument.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v1JQ5SETnQusqmS3RwStF7vwQ3L02imIzl++sewmt23VGygix04pEH+FCj1yWb+z4GDzKiljr1W7Wfvrx0YwgA==", + "path": "system.xml.xpath/4.3.0", + "hashPath": "system.xml.xpath.4.3.0.nupkg.sha512" + }, + "System.Xml.XPath.XDocument/4.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jw9oHHEIVW53mHY9PgrQa98Xo2IZ0ZjrpdOTmtvk+Rvg4tq7dydmxdNqUvJ5YwjDqhn75mBXWttWjiKhWP53LQ==", + "path": "system.xml.xpath.xdocument/4.3.0", + "hashPath": "system.xml.xpath.xdocument.4.3.0.nupkg.sha512" + }, + "WatchDog.NET/1.4.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TnzNYo82CnfSWnDE3Sur/sVrfOP+lD0lVH5LIG3FrByIH+ue+ns7KepWxVy9SmqeUIBNk5wnp790q4Rsy8KIUw==", + "path": "watchdog.net/1.4.6", + "hashPath": "watchdog.net.1.4.6.nupkg.sha512" + }, + "ZstdSharp.Port/0.6.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jPao/LdUNLUz8rn3H1D8W7wQbZsRZM0iayvWI4xGejJg3XJHT56gcmYdgmCGPdJF1UEBqUjucCRrFB+4HbJsbw==", + "path": "zstdsharp.port/0.6.2", + "hashPath": "zstdsharp.port.0.6.2.nupkg.sha512" + } + } } \ No newline at end of file diff --git a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll index 4aa732e..c6d9484 100644 Binary files a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll and b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll differ diff --git a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.exe b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.exe index 7bde43f..ae23da2 100644 Binary files a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.exe and b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.exe differ diff --git a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.pdb b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.pdb index af50a10..3cf2d84 100644 Binary files a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.pdb and b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.pdb differ diff --git a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.runtimeconfig.json b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.runtimeconfig.json index d486bb2..6ab2188 100644 --- a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.runtimeconfig.json +++ b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.runtimeconfig.json @@ -1,20 +1,20 @@ -{ - "runtimeOptions": { - "tfm": "net7.0", - "frameworks": [ - { - "name": "Microsoft.NETCore.App", - "version": "7.0.0" - }, - { - "name": "Microsoft.AspNetCore.App", - "version": "7.0.0" - } - ], - "configProperties": { - "System.GC.Server": true, - "System.Reflection.NullabilityInfoContext.IsSupported": true, - "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false - } - } +{ + "runtimeOptions": { + "tfm": "net7.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "7.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "7.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/bin/Debug/net7.0/BMA.EHR.Recruit.Service.staticwebassets.runtime.json b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.staticwebassets.runtime.json index c5f6b8e..1515183 100644 --- a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.staticwebassets.runtime.json +++ b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.staticwebassets.runtime.json @@ -1 +1 @@ -{"ContentRoots":["C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\"],"Root":{"Children":{"_content":{"Children":{"CoreAdmin":{"Children":{"css":{"Children":{"bootstrap-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-dark.css"},"Patterns":null},"bootstrap-dark.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-dark.min.css"},"Patterns":null},"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css.map"},"Patterns":null},"easymde":{"Children":{"easymde-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde-dark.css"},"Patterns":null},"easymde-dark.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde-dark.min.css"},"Patterns":null},"easymde.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde.css"},"Patterns":null},"easymde.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/jquery-ui.min.css"},"Patterns":null},"mvc-grid":{"Children":{"fonts":{"Children":{"grid-glyphs.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/fonts/grid-glyphs.woff"},"Patterns":null}},"Asset":null,"Patterns":null},"mvc-grid-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/mvc-grid-dark.css"},"Patterns":null},"mvc-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/mvc-grid.css"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/additional-methods.min.js"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/bootstrap.min.js"},"Patterns":null},"easymde":{"Children":{"easymde.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/easymde/easymde.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery-ui.min.js"},"Patterns":null},"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.min.map"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.js"},"Patterns":null},"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.unobtrusive.min.js"},"Patterns":null},"mvc-grid":{"Children":{"mvc-grid.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/mvc-grid/mvc-grid.js"},"Patterns":null}},"Asset":null,"Patterns":null},"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}} \ No newline at end of file +{"ContentRoots":["C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\"],"Root":{"Children":{"_content":{"Children":{"CoreAdmin":{"Children":{"css":{"Children":{"bootstrap-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-dark.css"},"Patterns":null},"bootstrap-dark.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-dark.min.css"},"Patterns":null},"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css.map"},"Patterns":null},"easymde":{"Children":{"easymde-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde-dark.css"},"Patterns":null},"easymde-dark.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde-dark.min.css"},"Patterns":null},"easymde.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde.css"},"Patterns":null},"easymde.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/jquery-ui.min.css"},"Patterns":null},"mvc-grid":{"Children":{"fonts":{"Children":{"grid-glyphs.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/fonts/grid-glyphs.woff"},"Patterns":null}},"Asset":null,"Patterns":null},"mvc-grid-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/mvc-grid-dark.css"},"Patterns":null},"mvc-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/mvc-grid.css"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/additional-methods.min.js"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/bootstrap.min.js"},"Patterns":null},"easymde":{"Children":{"easymde.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/easymde/easymde.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery-ui.min.js"},"Patterns":null},"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.min.map"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.js"},"Patterns":null},"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.unobtrusive.min.js"},"Patterns":null},"mvc-grid":{"Children":{"mvc-grid.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/mvc-grid/mvc-grid.js"},"Patterns":null}},"Asset":null,"Patterns":null},"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}} \ No newline at end of file diff --git a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml index 6bb1b05..90c03b1 100644 --- a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml +++ b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml @@ -1,556 +1,556 @@ - - - - BMA.EHR.Recruit.Service - - - - - ตัวอย่างในการเขียน api เพื่อทำการ upload file - - - เมื่อทำการ upload สำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - ตัวอย่างในการเขียน api เพื่อทำการ delete file - - รหัสไฟล์ในฐานข้อมูล - - เมื่อทำการ delete file สำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - ตัวอย่างในการเขียน api เพื่อทำการ download file - - รหัสไฟล์ในฐานข้อมูล - - เมื่อทำการ download file สำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - แสดงข้อมูลรอบการสอบแข่งขัน - - - เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - แสดงข้อมูลรอบการสอบแข่งขันเป็นรายการ - - รหัสรอบการสอบแข่งขัน - - เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - เพิ่มข้อมูลรอบการจัดสอบแข่งขัน - - Request parameters - - เมื่อทำการเพิ่มข้อมูลสำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - แก้ไขข้อมูลรอบการจัดสอบแข่งขัน - - รหัสรอบการสอบแข่งขัน - Request parameters - - เมื่อทำการเพิ่มข้อมูลสำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - ลบข้อมูลรอบการจัดสอบแข่งขัน - - รหัสรอบการสอบแข่งขัน - - เมื่อทำการลบข้อมูลสำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - แสดงข้อมูลสำหรับหน้าจอ รายการนำเข้าข้อมูลผู้สมัครสอบแข่งขัน - - - เมื่อแสดงรายการข้อมูลสำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - นำเข้ารายชื่อผู้สมัครสอบแข่งขัน - - - เมื่อทำนำเข้าข้อมูลสำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - ลบข้อมูลนำข้อมูลผู้สมัครสอบแข่งขัน - - รหัสรอบการสอบแข่งขัน - - เมื่อทำนำเข้าข้อมูลสำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - แสดงประวัติการนำเข้าข้อมูลการสอบแข่งขัน - - รหัสรอบการสอบแข่งขัน - - เมื่อทำนำเข้าข้อมูลสำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - นำเข้ารายชื่อผู้สมัครสอบแข่งขัน - - รหัสรอบการสอบแข่งขัน - - เมื่อทำนำเข้าข้อมูลสำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - แสดงข้อมูลสำหรับหน้าจอ : รายการข้อมูลผู้สมัครสอบ - - - - - Upload Image หรือ เอกสารในรอบการสอบ - - ประเภทเอกสาร - รหัสรอบสมัคร - - เมื่อทำการอ่านข้อมูลรอบการสมัครสอบ และ คนสมัครสอบในรอบสำเร็จ - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - ลบ Image หรือ เอกสารในรอบการสอบ - - ประเภทเอกสาร - รหัสไฟล์ - - เมื่อทำรายการสำเร็จ - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - โอนคนแข่งขันไปบรรจุ - - รหัสรอบสมัคร - - เมื่อโอนคนแข่งขันไปบรรจุสำเร็จ - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - รายงานจำนวนผู้เข้าสอบแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญ - - ปีงบประมาณ - - เมื่อทำการอ่านข้อมูลจำนวนผู้เข้าสอบแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญสำเร็จ - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - รายงานจำนวนผู้สอบผ่านแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญ - - ปีงบประมาณ - - เมื่อทำการอ่านข้อมูลจำนวนผู้สอบผ่านแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญสำเร็จ - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - Determines whether this instance is email. - - The input. - - - - - Determines whether this instance is numeric. - - The input. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ตัวแปรสำหรับสร้างข้อมูลการสอบแข่งขัน - - - - - ปีงบประมาณที่จัดสอบ - - - - - รอบการสอบ - - - - - ครั้งที่ - - - - - รายละเอียด - - - - - ค่าธรรมเนียม - - - - - วันเริ่มประกาศ - - - - - วันสิ้นสุดประกาศ - - - - - วันเริ่มชำระเงิน - - - - - วันสิ้นสุดชำระเงิน - - - - - วันเริ่มสมัครสอบ - - - - - วันสิ้นสุดสมัครสอบ - - - - - วันที่สอบ - - - - - หมายเหตุ - - - - - วันที่ประกาศผลสอบ - - - - - ข้อมูลคุณสมบัติของผู้เข้าสอบ โดยส่งมาจากหน้าจอ 'มีคุณสมบัติ' 'ขาดคุณสมบัติ' - - - - - ข้อมูลผลการสอบ 'ผ่าน' 'ไม่ผ่าน' - - - - + + + + BMA.EHR.Recruit.Service + + + + + ตัวอย่างในการเขียน api เพื่อทำการ upload file + + + เมื่อทำการ upload สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ตัวอย่างในการเขียน api เพื่อทำการ delete file + + รหัสไฟล์ในฐานข้อมูล + + เมื่อทำการ delete file สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ตัวอย่างในการเขียน api เพื่อทำการ download file + + รหัสไฟล์ในฐานข้อมูล + + เมื่อทำการ download file สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงข้อมูลรอบการสอบแข่งขัน + + + เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงข้อมูลรอบการสอบแข่งขันเป็นรายการ + + รหัสรอบการสอบแข่งขัน + + เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + เพิ่มข้อมูลรอบการจัดสอบแข่งขัน + + Request parameters + + เมื่อทำการเพิ่มข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แก้ไขข้อมูลรอบการจัดสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + Request parameters + + เมื่อทำการเพิ่มข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ลบข้อมูลรอบการจัดสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + + เมื่อทำการลบข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงข้อมูลสำหรับหน้าจอ รายการนำเข้าข้อมูลผู้สมัครสอบแข่งขัน + + + เมื่อแสดงรายการข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + นำเข้ารายชื่อผู้สมัครสอบแข่งขัน + + + เมื่อทำนำเข้าข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ลบข้อมูลนำข้อมูลผู้สมัครสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + + เมื่อทำนำเข้าข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงประวัติการนำเข้าข้อมูลการสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + + เมื่อทำนำเข้าข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + นำเข้ารายชื่อผู้สมัครสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + + เมื่อทำนำเข้าข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงข้อมูลสำหรับหน้าจอ : รายการข้อมูลผู้สมัครสอบ + + + + + Upload Image หรือ เอกสารในรอบการสอบ + + ประเภทเอกสาร + รหัสรอบสมัคร + + เมื่อทำการอ่านข้อมูลรอบการสมัครสอบ และ คนสมัครสอบในรอบสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ลบ Image หรือ เอกสารในรอบการสอบ + + ประเภทเอกสาร + รหัสไฟล์ + + เมื่อทำรายการสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + โอนคนแข่งขันไปบรรจุ + + รหัสรอบสมัคร + + เมื่อโอนคนแข่งขันไปบรรจุสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + รายงานจำนวนผู้เข้าสอบแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญ + + ปีงบประมาณ + + เมื่อทำการอ่านข้อมูลจำนวนผู้เข้าสอบแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + รายงานจำนวนผู้สอบผ่านแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญ + + ปีงบประมาณ + + เมื่อทำการอ่านข้อมูลจำนวนผู้สอบผ่านแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + Determines whether this instance is email. + + The input. + + + + + Determines whether this instance is numeric. + + The input. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ตัวแปรสำหรับสร้างข้อมูลการสอบแข่งขัน + + + + + ปีงบประมาณที่จัดสอบ + + + + + รอบการสอบ + + + + + ครั้งที่ + + + + + รายละเอียด + + + + + ค่าธรรมเนียม + + + + + วันเริ่มประกาศ + + + + + วันสิ้นสุดประกาศ + + + + + วันเริ่มชำระเงิน + + + + + วันสิ้นสุดชำระเงิน + + + + + วันเริ่มสมัครสอบ + + + + + วันสิ้นสุดสมัครสอบ + + + + + วันที่สอบ + + + + + หมายเหตุ + + + + + วันที่ประกาศผลสอบ + + + + + ข้อมูลคุณสมบัติของผู้เข้าสอบ โดยส่งมาจากหน้าจอ 'มีคุณสมบัติ' 'ขาดคุณสมบัติ' + + + + + ข้อมูลผลการสอบ 'ผ่าน' 'ไม่ผ่าน' + + + + diff --git a/bin/Debug/net7.0/appsettings.Development.json b/bin/Debug/net7.0/appsettings.Development.json index bb4ce46..d86fcd2 100644 --- a/bin/Debug/net7.0/appsettings.Development.json +++ b/bin/Debug/net7.0/appsettings.Development.json @@ -7,32 +7,5 @@ "System": "Warning" } } - }, - "ElasticConfiguration": { - "Uri": "http://localhost:9200" - }, - "AllowedHosts": "*", - "ConnectionStrings": { - "MongoConnection": "mongodb://admin:adminVM123@127.0.0.1:27017", - "DefaultConnection": "server=192.168.1.80;user=root;password=adminVM123;port=3306;database=bma_ehr_demo;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;", - "OrgConnection": "server=192.168.1.80;user=root;password=adminVM123;port=3306;database=bma_ehr_organization_demo;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;", - "RecruitConnection": "server=192.168.1.80;user=root;password=adminVM123;database=bma_recruit_demo;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;" - }, - "Jwt": { - "Key": "HP-FnQMUj9msHMSD3T9HtdEnphAKoCJLEl85CIqROFI", - "Issuer": "https://id.frappet.synology.me/realms/bma-ehr" - }, - "EPPlus": { - "ExcelPackage": { - "LicenseContext": "NonCommercial" - } - }, - "MinIO": { - "Endpoint": "https://edm-s3.frappet.synology.me/", - "AccessKey": "XxtdnJajPjp3hHuKdOMn", - "SecretKey": "rVPzB05giC7bA400cUuIThzT4T9SGCcpcmL3tBBg", - "BucketName": "bma-ehr-fpt" - }, - "API": "https://bma-ehr.frappet.synology.me/api/v1", - "API_KEY": "fKRL16yyEgbyTEJdsMw2h64tGSCmkW685PRtM3CygzX1JOSdptT9UJtpgWwKM8FybRTJups3GTFwj27ZRvlPdIkv3XgCoVJaD5LmR06ozuEPvCCRSdp2WFthg08V5xHc56fTPfZLpr1VmXrhd6dvYhHIqKkQUJR02Rlkss11cLRWEQOssEFVA4xdu2J5DIRO1EM5m7wRRvEwcDB4mYRXD9HH52SMq6iYqUWEWsMwLdbk7QW9yYESUEuzMW5gWrb6vIeWZxJV5bTz1PcWUyR7eO9Fyw1F5DiQYc9JgzTC1mW7cv31fEtTtrfbJYKIb5EbWilqIEUKC6A0UKBDDek35ML0006cqRVm0pvdOH6jeq7VQyYrhdXe59dBEyhYGUIfozoVBvW7Up4QBuOMjyPjSqJPlMBKwaseptfrblxQV1AOOivSBpf1ZcQyOZ8JktRtKUDSuXsmG0lsXwFlI3JCeSHdpVdgZWFYcJPegqfrB6KotR02t9AVkpLs1ZWrixwz" + } } \ No newline at end of file diff --git a/bin/Debug/net7.0/appsettings.json b/bin/Debug/net7.0/appsettings.json index bb4ce46..643072d 100644 --- a/bin/Debug/net7.0/appsettings.json +++ b/bin/Debug/net7.0/appsettings.json @@ -9,18 +9,20 @@ } }, "ElasticConfiguration": { - "Uri": "http://localhost:9200" + "Uri": "http://192.168.1.40:9200", + "IndexFormat": "bma-ehr-log-index", + "SystemName": "recruiting" }, "AllowedHosts": "*", "ConnectionStrings": { "MongoConnection": "mongodb://admin:adminVM123@127.0.0.1:27017", - "DefaultConnection": "server=192.168.1.80;user=root;password=adminVM123;port=3306;database=bma_ehr_demo;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;", - "OrgConnection": "server=192.168.1.80;user=root;password=adminVM123;port=3306;database=bma_ehr_organization_demo;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;", - "RecruitConnection": "server=192.168.1.80;user=root;password=adminVM123;database=bma_recruit_demo;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;" + "DefaultConnection": "server=192.168.1.80;user=root;password=adminVM123;port=3306;database=hrms;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;", + "OrgConnection": "server=192.168.1.80;user=root;password=adminVM123;port=3306;database=hrms_organization;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;", + "RecruitConnection": "server=192.168.1.80;user=root;password=adminVM123;database=hrms_recruit;Convert Zero Datetime=True;Allow User Variables=true;Pooling=True;" }, "Jwt": { "Key": "HP-FnQMUj9msHMSD3T9HtdEnphAKoCJLEl85CIqROFI", - "Issuer": "https://id.frappet.synology.me/realms/bma-ehr" + "Issuer": "https://id.frappet.synology.me/realms/hrms" }, "EPPlus": { "ExcelPackage": { diff --git a/obj/BMA.EHR.Recruit.Service.csproj.EntityFrameworkCore.targets b/obj/BMA.EHR.Recruit.Service.csproj.EntityFrameworkCore.targets deleted file mode 100644 index 6b67a59..0000000 --- a/obj/BMA.EHR.Recruit.Service.csproj.EntityFrameworkCore.targets +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - diff --git a/obj/BMA.EHR.Recruit.Service.csproj.nuget.dgspec.json b/obj/BMA.EHR.Recruit.Service.csproj.nuget.dgspec.json index 7c52209..e06c52a 100644 --- a/obj/BMA.EHR.Recruit.Service.csproj.nuget.dgspec.json +++ b/obj/BMA.EHR.Recruit.Service.csproj.nuget.dgspec.json @@ -110,6 +110,10 @@ "target": "Package", "version": "[2.19.0, )" }, + "NEST": { + "target": "Package", + "version": "[7.17.5, )" + }, "Newtonsoft.Json": { "target": "Package", "version": "[13.0.3, )" diff --git a/obj/BMA.EHR.Recruit.Service.csproj.nuget.g.targets b/obj/BMA.EHR.Recruit.Service.csproj.nuget.g.targets index 7436eb0..684a6b4 100644 --- a/obj/BMA.EHR.Recruit.Service.csproj.nuget.g.targets +++ b/obj/BMA.EHR.Recruit.Service.csproj.nuget.g.targets @@ -1,10 +1,10 @@ - - - - - - - - - + + + + + + + + + \ No newline at end of file diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs index b6960d4..4a5d3dd 100644 --- a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs +++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs @@ -15,7 +15,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("BMA.EHR.Recruit.Service")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+831e67604282eb3e82a74774be73ba99ec472e57")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+6748d01aa46af106321ce776d114ca5b76e74bf2")] [assembly: System.Reflection.AssemblyProductAttribute("BMA.EHR.Recruit.Service")] [assembly: System.Reflection.AssemblyTitleAttribute("BMA.EHR.Recruit.Service")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache index e3db16c..7c3473c 100644 --- a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache +++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache @@ -1 +1 @@ -46e58d4bbba0e23723a59aa64185ffde2dc0004dada1c8c5e7340999d46cc964 +18782c2453613fb6b79d879c5b0cf9b43fdf0fc4b8bacf291e009707682783b3 diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs index a69066f..38bca91 100644 --- a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs +++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs @@ -1,23 +1,24 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by a tool. -// -// 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("DotNetEd.CoreAdmin")] -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer")] -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.Mvc.Versioning")] -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Mvc.Grid.Core")] -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.Annotations")] -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] -[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("WatchDog")] - -// Generated by the MSBuild WriteCodeFragment class. - +//------------------------------------------------------------------------------ +// +// 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("DotNetEd.CoreAdmin")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.Mvc.Versioning")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Mvc.Grid.Core")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.Annotations")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("WatchDog")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.assets.cache b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.assets.cache index 1da00f5..4bff62b 100644 Binary files a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.assets.cache and b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.assets.cache differ diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache index 723f901..7a4e1dc 100644 --- a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache +++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -118adb39fa17e550a6ea3f0884bcc470c472eff8c41b45c6866e270cec7ab054 +b3124fd4c4016491f5d30ffb74ef9ab034b453eddb7643416b841a217eb48e03 diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.FileListAbsolute.txt b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.FileListAbsolute.txt index e63dc5c..06270af 100644 --- a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.FileListAbsolute.txt +++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.FileListAbsolute.txt @@ -1,1449 +1,186 @@ -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/nuget.config -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.Development.json -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.json -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.staticwebassets.runtime.json -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.exe -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.runtimeconfig.json -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.pdb -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.Core.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.S3.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.SecurityToken.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Azure.Core.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Azure.Identity.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BouncyCastle.Crypto.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/DotNetEd.CoreAdmin.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Dapper.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/DnsClient.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Elasticsearch.Net.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.Interfaces.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.System.Drawing.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Google.Protobuf.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Humanizer.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Compression.LZ4.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Compression.LZ4.Streams.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Hash.xxHash.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/LiteDB.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.JsonPatch.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Data.SqlClient.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.Design.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Identity.Client.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IO.RecyclableMemoryStream.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.OpenApi.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.SqlServer.Server.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Bson.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.Core.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.GridFS.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Libmongocrypt.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Mono.TextTemplating.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MySql.Data.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Ubiety.Dns.Core.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/ZstdNet.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MySqlConnector.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Newtonsoft.Json.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Mvc.Grid.Core.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Npgsql.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.Design.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.AspNetCore.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.Extensions.Logging.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.AspNetCore.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Exceptions.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Extensions.Logging.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Formatting.Compact.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Settings.Configuration.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Console.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Debug.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.File.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/SharpCompress.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Snappier.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.Annotations.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.CodeDom.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Data.SqlClient.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Drawing.Common.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Memory.Data.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Net.WebSockets.WebSocketProtocol.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Runtime.Caching.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Security.Permissions.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Windows.Extensions.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/WatchDog.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/ZstdSharp.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/linux/native/libmongocrypt.so -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx/native/libmongocrypt.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/native/mongocrypt.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libX11.6.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXau.6.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXdmcp.6.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXext.6.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXrender.1.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libcairo.2.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libfontconfig.1.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libfreetype.6.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.0.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgif.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libglib-2.0.0.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libintl.8.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libjpeg.9.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpcre.1.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpixman-1.0.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpng16.16.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libtiff.5.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-render.0.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-shm.0.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb.1.dylib -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm64/native/sni.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x64/native/sni.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x86/native/sni.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/Sentry.Attributes.cs -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cache -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssets.props -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.build.BMA.EHR.Recruit.Service.props -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BMA.EHR.Recruit.Service.props -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.pack.json -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.build.json -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.development.json -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/scopedcss/bundle/BMA.EHR.Recruit.Service.styles.css -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/refint/BMA.EHR.Recruit.Service.dll -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.genruntimeconfig.cache -D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/ref/BMA.EHR.Recruit.Service.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.Development.json -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.json -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/nuget.config -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/global.json -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.staticwebassets.runtime.json -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.exe -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.runtimeconfig.json -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.pdb -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.Core.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.S3.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.SecurityToken.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Azure.Core.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Azure.Identity.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Core.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Extensions.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BouncyCastle.Crypto.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/DotNetEd.CoreAdmin.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Dapper.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/DnsClient.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Elasticsearch.Net.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.Interfaces.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.System.Drawing.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Google.Protobuf.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Humanizer.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Compression.LZ4.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Compression.LZ4.Streams.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Hash.xxHash.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/LiteDB.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.JsonPatch.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Data.SqlClient.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.Design.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Identity.Client.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IO.RecyclableMemoryStream.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.OpenApi.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.SqlServer.Server.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Bson.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.Core.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.GridFS.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Libmongocrypt.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Mono.TextTemplating.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MySql.Data.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Ubiety.Dns.Core.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/ZstdNet.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MySqlConnector.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Newtonsoft.Json.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Mvc.Grid.Core.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Npgsql.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.Design.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.AspNetCore.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.Extensions.Logging.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.AspNetCore.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Exceptions.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Extensions.Logging.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Formatting.Compact.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Settings.Configuration.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Console.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Debug.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.File.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/SharpCompress.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Snappier.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.Annotations.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.CodeDom.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Data.SqlClient.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Drawing.Common.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Memory.Data.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Net.WebSockets.WebSocketProtocol.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Runtime.Caching.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Security.Permissions.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Windows.Extensions.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/WatchDog.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/ZstdSharp.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/linux/native/libmongocrypt.so -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx/native/libmongocrypt.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/native/mongocrypt.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libX11.6.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXau.6.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXdmcp.6.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXext.6.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXrender.1.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libcairo.2.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libfontconfig.1.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libfreetype.6.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.0.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgif.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libglib-2.0.0.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libintl.8.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libjpeg.9.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpcre.1.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpixman-1.0.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpng16.16.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libtiff.5.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-render.0.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-shm.0.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb.1.dylib -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm64/native/sni.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x64/native/sni.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x86/native/sni.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/Sentry.Attributes.cs -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cache -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssets.props -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.build.BMA.EHR.Recruit.Service.props -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BMA.EHR.Recruit.Service.props -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.pack.json -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.build.json -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.development.json -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/scopedcss/bundle/BMA.EHR.Recruit.Service.styles.css -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CopyComplete -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/refint/BMA.EHR.Recruit.Service.dll -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.genruntimeconfig.cache -C:/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/ref/BMA.EHR.Recruit.Service.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/nuget.config -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.Development.json -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.json -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.staticwebassets.runtime.json -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.exe -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.runtimeconfig.json -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.pdb -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.Core.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.S3.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.SecurityToken.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Azure.Core.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Azure.Identity.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Core.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Extensions.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BouncyCastle.Crypto.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/DotNetEd.CoreAdmin.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Dapper.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/DnsClient.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Elasticsearch.Net.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.Interfaces.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.System.Drawing.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Google.Protobuf.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Humanizer.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Compression.LZ4.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Compression.LZ4.Streams.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Hash.xxHash.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/LiteDB.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.JsonPatch.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Data.SqlClient.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.Design.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Identity.Client.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IO.RecyclableMemoryStream.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.OpenApi.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.SqlServer.Server.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Bson.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.Core.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.GridFS.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Libmongocrypt.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Mono.TextTemplating.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MySql.Data.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Ubiety.Dns.Core.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/ZstdNet.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MySqlConnector.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Newtonsoft.Json.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Mvc.Grid.Core.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Npgsql.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.Design.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.AspNetCore.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.Extensions.Logging.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.AspNetCore.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Exceptions.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Extensions.Logging.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Formatting.Compact.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Settings.Configuration.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Console.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Debug.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.File.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/SharpCompress.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Snappier.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.Annotations.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.CodeDom.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Data.SqlClient.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Drawing.Common.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Memory.Data.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Net.WebSockets.WebSocketProtocol.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Runtime.Caching.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Security.Permissions.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Windows.Extensions.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/WatchDog.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/ZstdSharp.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/linux/native/libmongocrypt.so -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx/native/libmongocrypt.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/native/mongocrypt.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libX11.6.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXau.6.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXdmcp.6.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXext.6.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXrender.1.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libcairo.2.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libfontconfig.1.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libfreetype.6.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.0.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgif.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libglib-2.0.0.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libintl.8.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libjpeg.9.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpcre.1.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpixman-1.0.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpng16.16.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libtiff.5.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-render.0.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-shm.0.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb.1.dylib -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm64/native/sni.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x64/native/sni.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x86/native/sni.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/Sentry.Attributes.cs -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cache -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssets.props -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.build.BMA.EHR.Recruit.Service.props -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BMA.EHR.Recruit.Service.props -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.pack.json -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.build.json -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.development.json -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/scopedcss/bundle/BMA.EHR.Recruit.Service.styles.css -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CopyComplete -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/refint/BMA.EHR.Recruit.Service.dll -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.genruntimeconfig.cache -D:/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/ref/BMA.EHR.Recruit.Service.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/Sentry.Attributes.cs -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cache -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/refint/BMA.EHR.Recruit.Service.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/nuget.config -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.Development.json -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/appsettings.json -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/global.json -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.staticwebassets.runtime.json -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.runtimeconfig.json -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.pdb -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.Core.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.S3.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/AWSSDK.SecurityToken.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Azure.Core.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Azure.Identity.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Core.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Extensions.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BouncyCastle.Crypto.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/DotNetEd.CoreAdmin.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Dapper.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/DnsClient.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Elasticsearch.Net.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.Interfaces.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/EPPlus.System.Drawing.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Google.Protobuf.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Humanizer.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Compression.LZ4.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Compression.LZ4.Streams.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/K4os.Hash.xxHash.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/LiteDB.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.JsonPatch.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Data.SqlClient.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.Design.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Identity.Client.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.IO.RecyclableMemoryStream.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.OpenApi.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.SqlServer.Server.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Bson.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.Core.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Driver.GridFS.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MongoDB.Libmongocrypt.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Mono.TextTemplating.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MySql.Data.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Ubiety.Dns.Core.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/ZstdNet.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/MySqlConnector.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Newtonsoft.Json.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Mvc.Grid.Core.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Npgsql.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.Design.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.AspNetCore.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Sentry.Extensions.Logging.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.AspNetCore.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Exceptions.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Extensions.Logging.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Formatting.Compact.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Settings.Configuration.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Console.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Debug.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.File.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/SharpCompress.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Snappier.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.Annotations.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.CodeDom.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Data.SqlClient.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Drawing.Common.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Memory.Data.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Net.WebSockets.WebSocketProtocol.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Runtime.Caching.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Security.Permissions.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/System.Windows.Extensions.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/WatchDog.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/ZstdSharp.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/linux/native/libmongocrypt.so -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx/native/libmongocrypt.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/native/mongocrypt.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libX11.6.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXau.6.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXdmcp.6.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXext.6.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libXrender.1.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libcairo.2.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libfontconfig.1.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libfreetype.6.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.0.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libgif.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libglib-2.0.0.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libintl.8.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libjpeg.9.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpcre.1.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpixman-1.0.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libpng16.16.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libtiff.5.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-render.0.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-shm.0.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb.1.dylib -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-arm64/native/sni.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x64/native/sni.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win-x86/native/sni.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssets.props -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.build.BMA.EHR.Recruit.Service.props -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BMA.EHR.Recruit.Service.props -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.pack.json -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.build.json -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/staticwebassets.development.json -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/scopedcss/bundle/BMA.EHR.Recruit.Service.styles.css -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CopyComplete -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.genruntimeconfig.cache -/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-Recruit-Service/obj/Debug/net7.0/ref/BMA.EHR.Recruit.Service.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\nuget.config -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\appsettings.Development.json -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\appsettings.json -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Recruit.Service.staticwebassets.runtime.json -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Recruit.Service.exe -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Recruit.Service.deps.json -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Recruit.Service.runtimeconfig.json -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Recruit.Service.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Recruit.Service.pdb -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Recruit.Service.xml -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\AWSSDK.Core.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\AWSSDK.S3.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\AWSSDK.SecurityToken.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Azure.Core.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Azure.Identity.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Core.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Extensions.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BouncyCastle.Crypto.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\DotNetEd.CoreAdmin.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Dapper.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\DnsClient.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Elasticsearch.Net.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\EPPlus.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\EPPlus.Interfaces.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\EPPlus.System.Drawing.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Google.Protobuf.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Humanizer.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\K4os.Compression.LZ4.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\K4os.Compression.LZ4.Streams.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\K4os.Hash.xxHash.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\LiteDB.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.AspNetCore.JsonPatch.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.AspNetCore.Razor.Language.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.Bcl.AsyncInterfaces.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.CodeAnalysis.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.CodeAnalysis.Razor.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.Data.SqlClient.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Abstractions.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Design.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.Design.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.SqlServer.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.Extensions.DependencyModel.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.Identity.Client.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.Identity.Client.Extensions.Msal.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.IdentityModel.Abstractions.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.IO.RecyclableMemoryStream.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.OpenApi.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.SqlServer.Server.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\MongoDB.Bson.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\MongoDB.Driver.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\MongoDB.Driver.Core.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\MongoDB.Driver.GridFS.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\MongoDB.Libmongocrypt.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Mono.TextTemplating.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\MySql.Data.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Ubiety.Dns.Core.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\ZstdNet.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\MySqlConnector.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Newtonsoft.Json.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Newtonsoft.Json.Bson.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Mvc.Grid.Core.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Npgsql.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.Design.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Sentry.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Sentry.AspNetCore.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Sentry.Extensions.Logging.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.AspNetCore.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Enrichers.Environment.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Exceptions.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Extensions.Hosting.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Extensions.Logging.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Formatting.Compact.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Formatting.Elasticsearch.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Settings.Configuration.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Sinks.Console.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Sinks.Debug.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Sinks.Elasticsearch.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Sinks.File.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Serilog.Sinks.PeriodicBatching.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\SharpCompress.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Snappier.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Swashbuckle.AspNetCore.Annotations.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.CodeDom.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Data.SqlClient.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Drawing.Common.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Memory.Data.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Net.WebSockets.WebSocketProtocol.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Runtime.Caching.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Security.Permissions.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\System.Windows.Extensions.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\WatchDog.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\ZstdSharp.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win\lib\net7.0\Microsoft.Win32.SystemEvents.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\linux\native\libmongocrypt.so -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx\native\libmongocrypt.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win\native\mongocrypt.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libX11.6.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libXau.6.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libXdmcp.6.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libXext.6.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libXrender.1.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libcairo.2.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libfontconfig.1.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libfreetype.6.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.0.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libgif.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libglib-2.0.0.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libintl.8.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libjpeg.9.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libpcre.1.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libpixman-1.0.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libpng16.16.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libtiff.5.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-render.0.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-shm.0.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb.1.dylib -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win-arm64\native\sni.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win-x64\native\sni.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win-x86\native\sni.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Drawing.Common.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\Sentry.Attributes.cs -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfo.cs -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cache -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\staticwebassets\msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssets.props -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\staticwebassets\msbuild.build.BMA.EHR.Recruit.Service.props -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.BMA.EHR.Recruit.Service.props -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\staticwebassets.pack.json -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\staticwebassets.build.json -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\staticwebassets.development.json -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\scopedcss\bundle\BMA.EHR.Recruit.Service.styles.css -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.CopyComplete -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\refint\BMA.EHR.Recruit.Service.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.xml -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.pdb -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\BMA.EHR.Recruit.Service.genruntimeconfig.cache -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\obj\Debug\net7.0\ref\BMA.EHR.Recruit.Service.dll -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Templates\ExamList.xlsx -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Templates\PassAExamList.xlsx -D:\Develop\Source\BMA-EHR\BMA-EHR-Recruit-Service\bin\Debug\net7.0\Templates\PassExamList.xlsx -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\Sentry.Attributes.cs -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfo.cs -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cache -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.dll -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\refint\BMA.EHR.Recruit.Service.dll -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.xml -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.pdb -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\nuget.config -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\appsettings.Development.json -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\appsettings.json -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Templates\ExamList.xlsx -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Templates\PassAExamList.xlsx -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Templates\PassExamList.xlsx -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.staticwebassets.runtime.json -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.exe -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.deps.json -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.runtimeconfig.json -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.pdb -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.xml -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\AWSSDK.Core.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\AWSSDK.S3.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\AWSSDK.SecurityToken.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Azure.Core.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Azure.Identity.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BouncyCastle.Crypto.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\DotNetEd.CoreAdmin.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Dapper.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\DnsClient.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Elasticsearch.Net.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\EPPlus.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\EPPlus.Interfaces.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\EPPlus.System.Drawing.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Google.Protobuf.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Humanizer.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\K4os.Compression.LZ4.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\K4os.Compression.LZ4.Streams.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\K4os.Hash.xxHash.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\LiteDB.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.JsonPatch.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Razor.Language.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Bcl.AsyncInterfaces.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.CodeAnalysis.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.CodeAnalysis.Razor.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Data.SqlClient.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Abstractions.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Design.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.Design.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.SqlServer.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Extensions.DependencyModel.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Identity.Client.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Identity.Client.Extensions.Msal.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Abstractions.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IO.RecyclableMemoryStream.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.OpenApi.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.SqlServer.Server.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Bson.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Driver.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Driver.Core.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Driver.GridFS.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Libmongocrypt.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Mono.TextTemplating.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MySql.Data.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Ubiety.Dns.Core.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\ZstdNet.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MySqlConnector.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Newtonsoft.Json.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Newtonsoft.Json.Bson.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Mvc.Grid.Core.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Npgsql.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.Design.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Sentry.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Sentry.AspNetCore.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Sentry.Extensions.Logging.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.AspNetCore.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Enrichers.Environment.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Exceptions.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Extensions.Hosting.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Extensions.Logging.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Formatting.Compact.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Formatting.Elasticsearch.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Settings.Configuration.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.Console.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.Debug.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.Elasticsearch.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.File.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.PeriodicBatching.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\SharpCompress.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Snappier.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Swashbuckle.AspNetCore.Annotations.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.CodeDom.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Data.SqlClient.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Drawing.Common.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Memory.Data.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Net.WebSockets.WebSocketProtocol.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Runtime.Caching.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Security.Permissions.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Windows.Extensions.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\WatchDog.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\ZstdSharp.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\net7.0\Microsoft.Win32.SystemEvents.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\linux\native\libmongocrypt.so -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx\native\libmongocrypt.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\native\mongocrypt.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libX11.6.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libXau.6.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libXdmcp.6.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libXext.6.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libXrender.1.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libcairo.2.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libfontconfig.1.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libfreetype.6.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.0.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libgif.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libglib-2.0.0.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libintl.8.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libjpeg.9.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libpcre.1.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libpixman-1.0.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libpng16.16.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libtiff.5.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-render.0.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-shm.0.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb.1.dylib -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-arm64\native\sni.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-x64\native\sni.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-x86\native\sni.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Drawing.Common.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssets.props -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.build.BMA.EHR.Recruit.Service.props -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.BMA.EHR.Recruit.Service.props -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets.pack.json -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets.build.json -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets.development.json -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\scopedcss\bundle\BMA.EHR.Recruit.Service.styles.css -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.genruntimeconfig.cache -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\ref\BMA.EHR.Recruit.Service.dll -<<<<<<< HEAD -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\nuget.config -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\appsettings.Development.json -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\appsettings.json -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Templates\ExamList.xlsx -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Templates\PassAExamList.xlsx -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Templates\PassExamList.xlsx -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.staticwebassets.runtime.json -======= ->>>>>>> working -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.exe -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.deps.json -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.runtimeconfig.json -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.pdb -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.xml -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\AWSSDK.Core.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\AWSSDK.S3.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\AWSSDK.SecurityToken.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Azure.Core.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Azure.Identity.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BouncyCastle.Crypto.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\DotNetEd.CoreAdmin.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Dapper.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\DnsClient.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Elasticsearch.Net.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\EPPlus.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\EPPlus.Interfaces.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\EPPlus.System.Drawing.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Google.Protobuf.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Humanizer.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\K4os.Compression.LZ4.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\K4os.Compression.LZ4.Streams.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\K4os.Hash.xxHash.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\LiteDB.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.JsonPatch.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.AspNetCore.Razor.Language.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Bcl.AsyncInterfaces.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.CodeAnalysis.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.CodeAnalysis.Razor.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Data.SqlClient.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Abstractions.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Design.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.Design.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.SqlServer.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Extensions.DependencyModel.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Identity.Client.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Identity.Client.Extensions.Msal.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Abstractions.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.IO.RecyclableMemoryStream.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.OpenApi.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.SqlServer.Server.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Bson.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Driver.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Driver.Core.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Driver.GridFS.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MongoDB.Libmongocrypt.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Mono.TextTemplating.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MySql.Data.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Ubiety.Dns.Core.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\ZstdNet.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\MySqlConnector.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Newtonsoft.Json.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Newtonsoft.Json.Bson.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Mvc.Grid.Core.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Npgsql.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.Design.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Sentry.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Sentry.AspNetCore.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Sentry.Extensions.Logging.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.AspNetCore.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Enrichers.Environment.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Exceptions.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Extensions.Hosting.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Extensions.Logging.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Formatting.Compact.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Formatting.Elasticsearch.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Settings.Configuration.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.Console.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.Debug.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.Elasticsearch.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.File.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Serilog.Sinks.PeriodicBatching.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\SharpCompress.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Snappier.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Swashbuckle.AspNetCore.Annotations.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.CodeDom.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Data.SqlClient.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Drawing.Common.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Memory.Data.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Net.WebSockets.WebSocketProtocol.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Runtime.Caching.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Security.Permissions.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\System.Windows.Extensions.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\WatchDog.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\ZstdSharp.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\net7.0\Microsoft.Win32.SystemEvents.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\linux\native\libmongocrypt.so -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx\native\libmongocrypt.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\native\mongocrypt.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libX11.6.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libXau.6.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libXdmcp.6.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libXext.6.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libXrender.1.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libcairo.2.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libfontconfig.1.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libfreetype.6.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.0.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libgif.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libglib-2.0.0.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libintl.8.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libjpeg.9.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libpcre.1.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libpixman-1.0.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libpng16.16.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libtiff.5.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-render.0.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-shm.0.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb.1.dylib -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-arm64\native\sni.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-x64\native\sni.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win-x86\native\sni.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Drawing.Common.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\Sentry.Attributes.cs -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfo.cs -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cache -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.sourcelink.json -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets.build.json -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets.development.json -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssets.props -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.build.BMA.EHR.Recruit.Service.props -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.BMA.EHR.Recruit.Service.props -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets.pack.json -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\scopedcss\bundle\BMA.EHR.Recruit.Service.styles.css -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR..8088DF8F.Up2Date -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\refint\BMA.EHR.Recruit.Service.dll -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.xml -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.pdb -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.genruntimeconfig.cache -D:\Develop\Source\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\ref\BMA.EHR.Recruit.Service.dll -D:\BMA-EHR-RECRUIT-SERVICE\bin\Debug\net7.0\BMA.EHR.Recruit.Service.staticwebassets.endpoints.json -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR.Recruit.Service.sourcelink.json -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets.build.endpoints.json -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\staticwebassets\msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssetEndpoints.props -D:\BMA-EHR-RECRUIT-SERVICE\obj\Debug\net7.0\BMA.EHR..8088DF8F.Up2Date -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\appsettings.Development.json -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\appsettings.json -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\nuget.config -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.staticwebassets.runtime.json -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.staticwebassets.endpoints.json -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Templates\ExamList.xlsx -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Templates\PassAExamList.xlsx -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Templates\PassExamList.xlsx -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.exe -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.deps.json -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.runtimeconfig.json -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.pdb -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.xml -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\AWSSDK.Core.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\AWSSDK.S3.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\AWSSDK.SecurityToken.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Azure.Core.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Azure.Identity.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BouncyCastle.Crypto.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\DotNetEd.CoreAdmin.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Dapper.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\DnsClient.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Elasticsearch.Net.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\EPPlus.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\EPPlus.Interfaces.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\EPPlus.System.Drawing.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Google.Protobuf.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Humanizer.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\K4os.Compression.LZ4.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\K4os.Compression.LZ4.Streams.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\K4os.Hash.xxHash.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\LiteDB.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.JsonPatch.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Razor.Language.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Bcl.AsyncInterfaces.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.CodeAnalysis.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.CodeAnalysis.Razor.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Data.SqlClient.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Abstractions.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Design.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.Design.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.SqlServer.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Extensions.DependencyModel.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Identity.Client.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Identity.Client.Extensions.Msal.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.Abstractions.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IO.RecyclableMemoryStream.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.OpenApi.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.SqlServer.Server.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MongoDB.Bson.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MongoDB.Driver.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MongoDB.Driver.Core.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MongoDB.Driver.GridFS.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MongoDB.Libmongocrypt.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Mono.TextTemplating.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MySql.Data.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Ubiety.Dns.Core.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\ZstdNet.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MySqlConnector.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Newtonsoft.Json.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Newtonsoft.Json.Bson.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Mvc.Grid.Core.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Npgsql.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.Design.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Sentry.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Sentry.AspNetCore.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Sentry.Extensions.Logging.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.AspNetCore.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Enrichers.Environment.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Exceptions.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Extensions.Hosting.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Extensions.Logging.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Formatting.Compact.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Formatting.Elasticsearch.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Settings.Configuration.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Sinks.Console.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Sinks.Debug.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Sinks.Elasticsearch.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Sinks.File.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Sinks.PeriodicBatching.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\SharpCompress.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Snappier.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Swashbuckle.AspNetCore.Annotations.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.CodeDom.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Data.SqlClient.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Drawing.Common.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Memory.Data.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Net.WebSockets.WebSocketProtocol.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Runtime.Caching.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Security.Permissions.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Windows.Extensions.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\WatchDog.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\ZstdSharp.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\net7.0\Microsoft.Win32.SystemEvents.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\linux\native\libmongocrypt.so -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx\native\libmongocrypt.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\native\mongocrypt.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libX11.6.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libXau.6.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libXdmcp.6.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libXext.6.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libXrender.1.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libcairo.2.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libfontconfig.1.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libfreetype.6.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.0.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libgif.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libglib-2.0.0.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libintl.8.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libjpeg.9.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libpcre.1.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libpixman-1.0.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libpng16.16.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libtiff.5.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-render.0.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-shm.0.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb.1.dylib -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-arm64\native\sni.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-x64\native\sni.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-x86\native\sni.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Drawing.Common.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll -D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\Sentry.Attributes.cs -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfo.cs -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cache -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.sourcelink.json -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\scopedcss\bundle\BMA.EHR.Recruit.Service.styles.css -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets.build.json -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets.development.json -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets.build.endpoints.json -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets\msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssets.props -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets\msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssetEndpoints.props -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets\msbuild.build.BMA.EHR.Recruit.Service.props -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.BMA.EHR.Recruit.Service.props -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets.pack.json -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR..8088DF8F.Up2Date -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.dll -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\refint\BMA.EHR.Recruit.Service.dll -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.xml -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.pdb -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.genruntimeconfig.cache -D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\ref\BMA.EHR.Recruit.Service.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\nuget.config +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\appsettings.Development.json +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\appsettings.json +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Templates\ExamList.xlsx +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Templates\PassAExamList.xlsx +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Templates\PassExamList.xlsx +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.staticwebassets.runtime.json +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.staticwebassets.endpoints.json +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.exe +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.deps.json +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.runtimeconfig.json +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.pdb +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BMA.EHR.Recruit.Service.xml +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\AWSSDK.Core.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\AWSSDK.S3.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\AWSSDK.SecurityToken.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Azure.Core.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Azure.Identity.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\BouncyCastle.Crypto.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\DotNetEd.CoreAdmin.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Dapper.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\DnsClient.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Elasticsearch.Net.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\EPPlus.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\EPPlus.Interfaces.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\EPPlus.System.Drawing.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Google.Protobuf.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Humanizer.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\K4os.Compression.LZ4.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\K4os.Compression.LZ4.Streams.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\K4os.Hash.xxHash.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\LiteDB.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.JsonPatch.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.AspNetCore.Razor.Language.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Bcl.AsyncInterfaces.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.CodeAnalysis.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.CodeAnalysis.CSharp.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.CodeAnalysis.Razor.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Data.SqlClient.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Abstractions.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Design.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.Design.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.SqlServer.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Extensions.DependencyModel.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Identity.Client.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Identity.Client.Extensions.Msal.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.Abstractions.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.IO.RecyclableMemoryStream.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.OpenApi.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.SqlServer.Server.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Microsoft.Win32.SystemEvents.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MongoDB.Bson.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MongoDB.Driver.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MongoDB.Driver.Core.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MongoDB.Driver.GridFS.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MongoDB.Libmongocrypt.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Mono.TextTemplating.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MySql.Data.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Ubiety.Dns.Core.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\ZstdNet.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\MySqlConnector.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Nest.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Newtonsoft.Json.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Newtonsoft.Json.Bson.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Mvc.Grid.Core.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Npgsql.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Pomelo.EntityFrameworkCore.MySql.Design.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Sentry.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Sentry.AspNetCore.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Sentry.Extensions.Logging.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.AspNetCore.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Enrichers.Environment.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Exceptions.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Extensions.Hosting.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Extensions.Logging.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Formatting.Compact.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Formatting.Elasticsearch.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Settings.Configuration.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Sinks.Console.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Sinks.Debug.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Sinks.Elasticsearch.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Sinks.File.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Serilog.Sinks.PeriodicBatching.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\SharpCompress.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Snappier.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Swashbuckle.AspNetCore.Annotations.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.CodeDom.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Configuration.ConfigurationManager.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Data.SqlClient.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Drawing.Common.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Memory.Data.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Net.WebSockets.WebSocketProtocol.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Runtime.Caching.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Security.Cryptography.ProtectedData.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Security.Permissions.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\System.Windows.Extensions.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\WatchDog.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\ZstdSharp.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.1\Microsoft.Data.SqlClient.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\net7.0\Microsoft.Win32.SystemEvents.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\linux\native\libmongocrypt.so +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx\native\libmongocrypt.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\native\mongocrypt.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libX11.6.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libXau.6.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libXdmcp.6.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libXext.6.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libXrender.1.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libcairo.2.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libfontconfig.1.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libfreetype.6.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.0.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libgdiplus.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libgif.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libglib-2.0.0.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libintl.8.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libjpeg.9.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libpcre.1.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libpixman-1.0.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libpng16.16.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libtiff.5.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-render.0.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb-shm.0.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\osx-x64\native\libxcb.1.dylib +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-arm64\native\sni.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-x64\native\sni.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win-x86\native\sni.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\unix\lib\netcoreapp2.1\System.Data.SqlClient.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\netcoreapp2.1\System.Data.SqlClient.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\net7.0\System.Drawing.Common.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Runtime.Caching.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\netstandard2.0\System.Security.Cryptography.ProtectedData.dll +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\runtimes\win\lib\netcoreapp3.0\System.Windows.Extensions.dll +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\Sentry.Attributes.cs +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfoInputs.cache +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.AssemblyInfo.cs +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cache +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.sourcelink.json +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\scopedcss\bundle\BMA.EHR.Recruit.Service.styles.css +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets.build.json +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets.development.json +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets.build.endpoints.json +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets\msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssets.props +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets\msbuild.BMA.EHR.Recruit.Service.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets\msbuild.build.BMA.EHR.Recruit.Service.props +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.BMA.EHR.Recruit.Service.props +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets.pack.json +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\staticwebassets.upToDateCheck.txt +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR..8088DF8F.Up2Date +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.dll +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\refint\BMA.EHR.Recruit.Service.dll +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.xml +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.pdb +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service.genruntimeconfig.cache +D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\ref\BMA.EHR.Recruit.Service.dll diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll index 6dad3f1..c6d9484 100644 Binary files a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll and b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll differ diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.genruntimeconfig.cache b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.genruntimeconfig.cache index 9b70ff0..379ffa7 100644 --- a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.genruntimeconfig.cache +++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.genruntimeconfig.cache @@ -1 +1 @@ -48b99599757630e72457bb87242ce14f53dc48b77c68e94f7d93523f2a74ffa8 +1ac8c898b4be5e4b0e3e5d4c2b884f5ff73ae58e10f6d08eb2faa4812afbfec0 diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb index af50a10..3cf2d84 100644 Binary files a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb and b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb differ diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml index 6bb1b05..90c03b1 100644 --- a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml +++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml @@ -1,556 +1,556 @@ - - - - BMA.EHR.Recruit.Service - - - - - ตัวอย่างในการเขียน api เพื่อทำการ upload file - - - เมื่อทำการ upload สำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - ตัวอย่างในการเขียน api เพื่อทำการ delete file - - รหัสไฟล์ในฐานข้อมูล - - เมื่อทำการ delete file สำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - ตัวอย่างในการเขียน api เพื่อทำการ download file - - รหัสไฟล์ในฐานข้อมูล - - เมื่อทำการ download file สำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - แสดงข้อมูลรอบการสอบแข่งขัน - - - เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - แสดงข้อมูลรอบการสอบแข่งขันเป็นรายการ - - รหัสรอบการสอบแข่งขัน - - เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - เพิ่มข้อมูลรอบการจัดสอบแข่งขัน - - Request parameters - - เมื่อทำการเพิ่มข้อมูลสำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - แก้ไขข้อมูลรอบการจัดสอบแข่งขัน - - รหัสรอบการสอบแข่งขัน - Request parameters - - เมื่อทำการเพิ่มข้อมูลสำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - ลบข้อมูลรอบการจัดสอบแข่งขัน - - รหัสรอบการสอบแข่งขัน - - เมื่อทำการลบข้อมูลสำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - แสดงข้อมูลสำหรับหน้าจอ รายการนำเข้าข้อมูลผู้สมัครสอบแข่งขัน - - - เมื่อแสดงรายการข้อมูลสำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - นำเข้ารายชื่อผู้สมัครสอบแข่งขัน - - - เมื่อทำนำเข้าข้อมูลสำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - ลบข้อมูลนำข้อมูลผู้สมัครสอบแข่งขัน - - รหัสรอบการสอบแข่งขัน - - เมื่อทำนำเข้าข้อมูลสำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - แสดงประวัติการนำเข้าข้อมูลการสอบแข่งขัน - - รหัสรอบการสอบแข่งขัน - - เมื่อทำนำเข้าข้อมูลสำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - นำเข้ารายชื่อผู้สมัครสอบแข่งขัน - - รหัสรอบการสอบแข่งขัน - - เมื่อทำนำเข้าข้อมูลสำเร็จ - ค่าตัวแปรที่ส่งมาไม่ถูกต้อง - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - แสดงข้อมูลสำหรับหน้าจอ : รายการข้อมูลผู้สมัครสอบ - - - - - Upload Image หรือ เอกสารในรอบการสอบ - - ประเภทเอกสาร - รหัสรอบสมัคร - - เมื่อทำการอ่านข้อมูลรอบการสมัครสอบ และ คนสมัครสอบในรอบสำเร็จ - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - ลบ Image หรือ เอกสารในรอบการสอบ - - ประเภทเอกสาร - รหัสไฟล์ - - เมื่อทำรายการสำเร็จ - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - โอนคนแข่งขันไปบรรจุ - - รหัสรอบสมัคร - - เมื่อโอนคนแข่งขันไปบรรจุสำเร็จ - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - รายงานจำนวนผู้เข้าสอบแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญ - - ปีงบประมาณ - - เมื่อทำการอ่านข้อมูลจำนวนผู้เข้าสอบแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญสำเร็จ - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - รายงานจำนวนผู้สอบผ่านแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญ - - ปีงบประมาณ - - เมื่อทำการอ่านข้อมูลจำนวนผู้สอบผ่านแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญสำเร็จ - ไม่ได้ Login เข้าระบบ - เมื่อเกิดข้อผิดพลาดในการทำงาน - - - - Determines whether this instance is email. - - The input. - - - - - Determines whether this instance is numeric. - - The input. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ตัวแปรสำหรับสร้างข้อมูลการสอบแข่งขัน - - - - - ปีงบประมาณที่จัดสอบ - - - - - รอบการสอบ - - - - - ครั้งที่ - - - - - รายละเอียด - - - - - ค่าธรรมเนียม - - - - - วันเริ่มประกาศ - - - - - วันสิ้นสุดประกาศ - - - - - วันเริ่มชำระเงิน - - - - - วันสิ้นสุดชำระเงิน - - - - - วันเริ่มสมัครสอบ - - - - - วันสิ้นสุดสมัครสอบ - - - - - วันที่สอบ - - - - - หมายเหตุ - - - - - วันที่ประกาศผลสอบ - - - - - ข้อมูลคุณสมบัติของผู้เข้าสอบ โดยส่งมาจากหน้าจอ 'มีคุณสมบัติ' 'ขาดคุณสมบัติ' - - - - - ข้อมูลผลการสอบ 'ผ่าน' 'ไม่ผ่าน' - - - - + + + + BMA.EHR.Recruit.Service + + + + + ตัวอย่างในการเขียน api เพื่อทำการ upload file + + + เมื่อทำการ upload สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ตัวอย่างในการเขียน api เพื่อทำการ delete file + + รหัสไฟล์ในฐานข้อมูล + + เมื่อทำการ delete file สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ตัวอย่างในการเขียน api เพื่อทำการ download file + + รหัสไฟล์ในฐานข้อมูล + + เมื่อทำการ download file สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงข้อมูลรอบการสอบแข่งขัน + + + เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงข้อมูลรอบการสอบแข่งขันเป็นรายการ + + รหัสรอบการสอบแข่งขัน + + เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + เพิ่มข้อมูลรอบการจัดสอบแข่งขัน + + Request parameters + + เมื่อทำการเพิ่มข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แก้ไขข้อมูลรอบการจัดสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + Request parameters + + เมื่อทำการเพิ่มข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ลบข้อมูลรอบการจัดสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + + เมื่อทำการลบข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงข้อมูลสำหรับหน้าจอ รายการนำเข้าข้อมูลผู้สมัครสอบแข่งขัน + + + เมื่อแสดงรายการข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + นำเข้ารายชื่อผู้สมัครสอบแข่งขัน + + + เมื่อทำนำเข้าข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ลบข้อมูลนำข้อมูลผู้สมัครสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + + เมื่อทำนำเข้าข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงประวัติการนำเข้าข้อมูลการสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + + เมื่อทำนำเข้าข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + นำเข้ารายชื่อผู้สมัครสอบแข่งขัน + + รหัสรอบการสอบแข่งขัน + + เมื่อทำนำเข้าข้อมูลสำเร็จ + ค่าตัวแปรที่ส่งมาไม่ถูกต้อง + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + แสดงข้อมูลสำหรับหน้าจอ : รายการข้อมูลผู้สมัครสอบ + + + + + Upload Image หรือ เอกสารในรอบการสอบ + + ประเภทเอกสาร + รหัสรอบสมัคร + + เมื่อทำการอ่านข้อมูลรอบการสมัครสอบ และ คนสมัครสอบในรอบสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + ลบ Image หรือ เอกสารในรอบการสอบ + + ประเภทเอกสาร + รหัสไฟล์ + + เมื่อทำรายการสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + โอนคนแข่งขันไปบรรจุ + + รหัสรอบสมัคร + + เมื่อโอนคนแข่งขันไปบรรจุสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + รายงานจำนวนผู้เข้าสอบแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญ + + ปีงบประมาณ + + เมื่อทำการอ่านข้อมูลจำนวนผู้เข้าสอบแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + รายงานจำนวนผู้สอบผ่านแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญ + + ปีงบประมาณ + + เมื่อทำการอ่านข้อมูลจำนวนผู้สอบผ่านแข่งขันเพื่อบรรจุเข้ารับราชการเป็นข้าราชการ กทม. สามัญสำเร็จ + ไม่ได้ Login เข้าระบบ + เมื่อเกิดข้อผิดพลาดในการทำงาน + + + + Determines whether this instance is email. + + The input. + + + + + Determines whether this instance is numeric. + + The input. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + ตัวแปรสำหรับสร้างข้อมูลการสอบแข่งขัน + + + + + ปีงบประมาณที่จัดสอบ + + + + + รอบการสอบ + + + + + ครั้งที่ + + + + + รายละเอียด + + + + + ค่าธรรมเนียม + + + + + วันเริ่มประกาศ + + + + + วันสิ้นสุดประกาศ + + + + + วันเริ่มชำระเงิน + + + + + วันสิ้นสุดชำระเงิน + + + + + วันเริ่มสมัครสอบ + + + + + วันสิ้นสุดสมัครสอบ + + + + + วันที่สอบ + + + + + หมายเหตุ + + + + + วันที่ประกาศผลสอบ + + + + + ข้อมูลคุณสมบัติของผู้เข้าสอบ โดยส่งมาจากหน้าจอ 'มีคุณสมบัติ' 'ขาดคุณสมบัติ' + + + + + ข้อมูลผลการสอบ 'ผ่าน' 'ไม่ผ่าน' + + + + diff --git a/obj/Debug/net7.0/Sentry.Attributes.cs b/obj/Debug/net7.0/Sentry.Attributes.cs index 4c0d7aa..cbdaf60 100644 --- a/obj/Debug/net7.0/Sentry.Attributes.cs +++ b/obj/Debug/net7.0/Sentry.Attributes.cs @@ -1,6 +1,7 @@ //------------------------------------------------------------------------------ // // 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. diff --git a/obj/Debug/net7.0/ref/BMA.EHR.Recruit.Service.dll b/obj/Debug/net7.0/ref/BMA.EHR.Recruit.Service.dll index 9d16e30..5374780 100644 Binary files a/obj/Debug/net7.0/ref/BMA.EHR.Recruit.Service.dll and b/obj/Debug/net7.0/ref/BMA.EHR.Recruit.Service.dll differ diff --git a/obj/Debug/net7.0/refint/BMA.EHR.Recruit.Service.dll b/obj/Debug/net7.0/refint/BMA.EHR.Recruit.Service.dll index 9d16e30..5374780 100644 Binary files a/obj/Debug/net7.0/refint/BMA.EHR.Recruit.Service.dll and b/obj/Debug/net7.0/refint/BMA.EHR.Recruit.Service.dll differ diff --git a/obj/Debug/net7.0/staticwebassets.build.json b/obj/Debug/net7.0/staticwebassets.build.json index d8c3956..21fc5d3 100644 --- a/obj/Debug/net7.0/staticwebassets.build.json +++ b/obj/Debug/net7.0/staticwebassets.build.json @@ -1,2160 +1,2160 @@ -{ - "Version": 1, - "Hash": "BWKVGLln0MoZHHU2EeEN5fKbYCDxDz72tfA7s0VfZ/A=", - "Source": "BMA.EHR.Recruit.Service", - "BasePath": "_content/BMA.EHR.Recruit.Service", - "Mode": "Default", - "ManifestType": "Build", - "ReferencedProjectsConfiguration": [], - "DiscoveryPatterns": [], - "Assets": [ - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-dark.css", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/bootstrap-dark.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "lsgpqctjuo", - "Integrity": "Rbt9CzhoOsoNulFGu/RQexnKvH+NExOYYK8tGPx4gJo=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-dark.css" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-dark.min.css", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/bootstrap-dark.min.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "r2o00ft8w7", - "Integrity": "HRp9GUANLkrZJeQdbFtnshlfOoXHhWG/DycvbhiLfxA=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-dark.min.css" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.css", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/bootstrap-grid.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "pyegkcbhqw", - "Integrity": "PxxCa95g772Ri2/Ze7wZKoR7mKUDmxQGdKlPajcZgsI=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.css" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.css.map", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/bootstrap-grid.css.map", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "056hmt7r52", - "Integrity": "VNMrnh2mEWVnOm/E9z53LF0RDtNMT/ahQ1TOdGNi8Xk=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.css.map" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.min.css", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/bootstrap-grid.min.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "fgvfz5bry7", - "Integrity": "AQwKONhVkDCtaasfdhBKwoLfIefvXgJ16Ql+ao6aWng=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.min.css" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.min.css.map", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/bootstrap-grid.min.css.map", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "84v1v2toiu", - "Integrity": "OBXqzhBpYhzMUba1QF/zh9+DYskLUOyJq5fhdavLlDc=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.min.css.map" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.css", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/bootstrap-reboot.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "g1ibmlckcx", - "Integrity": "FDrt4UO7vtV8BQ4PZY4y7NOpd0QyloY/9IepHneKcQQ=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.css" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.css.map", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/bootstrap-reboot.css.map", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "4tx678vzg9", - "Integrity": "WNg4MK0kxST7EWfsUTtNohRG14hyqjc+8saWn/zlCmQ=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.css.map" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.min.css", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/bootstrap-reboot.min.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "xeulmjfqjv", - "Integrity": "Of+g2MC9mS5JpF24/qhD+RP0c/tG9XDQAReuglLsrK0=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.min.css" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.min.css.map", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/bootstrap-reboot.min.css.map", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "5vunn8rik9", - "Integrity": "AcNyCLU0HE0tv43UJttqIrnpY6rpcpkheqqtDS+lYOk=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.min.css.map" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.css", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/bootstrap.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "o2ma61z60z", - "Integrity": "wFfTdiDy/HyWFNHWOiQouhJYtLhqKEyhVtWsfX9A7xc=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.css" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.css.map", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/bootstrap.css.map", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "mkjvklbc72", - "Integrity": "KtOJK8YVJt6opmOTJRZuBNlq4MAO3suVoFNSgnIWxWE=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.css.map" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.min.css", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/bootstrap.min.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "r61markcoc", - "Integrity": "fXqQQ/S+0wP+KXSsTjuhDWshTnD3rlSXhrotNH3gX4E=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.min.css" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.min.css.map", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/bootstrap.min.css.map", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "eexf3o8jdh", - "Integrity": "KiZgBYomlnG90l25zW4JPdDXw3SUdIUtk7HjTqolN0s=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.min.css.map" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde-dark.css", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/easymde/easymde-dark.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "zxtslbzk8c", - "Integrity": "aQg4i4d/3JrJL9fJocSb4or+3oSefUy37mdnDy7fMR0=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde-dark.css" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde-dark.min.css", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/easymde/easymde-dark.min.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "sex9hst9nb", - "Integrity": "ZMKcLZgnbfZMRpcm/Y4f531HY4c1MjMrRungeyCo6F4=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde-dark.min.css" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde.css", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/easymde/easymde.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "5mytmx9lqh", - "Integrity": "fR45ZEDtjBBqkENoxiaOqZE826+Iukp/FKbVlvf8IJY=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde.css" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde.min.css", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/easymde/easymde.min.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "hzbvlxl735", - "Integrity": "bbcGE3wFLst4Omr497gtqlo2Gv5iKVJZxG9DY6qIkXE=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde.min.css" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\jquery-ui.min.css", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/jquery-ui.min.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "3yq0hj8c3s", - "Integrity": "lRprc3UpMi2YqUWLO6v53UDTs1xRts//Qp60c8sYP+M=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\jquery-ui.min.css" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\fonts\\grid-glyphs.woff", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/mvc-grid/fonts/grid-glyphs.woff", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "rpgb5d6o9r", - "Integrity": "of2H+Or1d3n5V3cioIJ4n6X3bmyVMg7oIyN5eSrNHeA=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\fonts\\grid-glyphs.woff" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\mvc-grid-dark.css", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/mvc-grid/mvc-grid-dark.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "veobziqlx3", - "Integrity": "V7tItYnnWLFcU26hRCRP/FRWbFgr4LMCN+fMf6nGpYY=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\mvc-grid-dark.css" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\mvc-grid.css", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/mvc-grid/mvc-grid.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "e5dtw7jnae", - "Integrity": "LoxkDIiG2e7+jmgEapuWTnOP8dTvt7T3AVZ2jYimCbo=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\mvc-grid.css" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\site.css", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "css/site.css", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "2zpspf69qj", - "Integrity": "fmcFkKsAH9c4KhU9AOa/BVyq9Fkds4cdMKDmc5lGWsk=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\site.css" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\additional-methods.js", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "js/additional-methods.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "wus95c49fh", - "Integrity": "qLDpf9Urms7R6rnASrjHz38WdQfOvSOmTgLDfzQSzIQ=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\additional-methods.js" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\additional-methods.min.js", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "js/additional-methods.min.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "sjab29p8z5", - "Integrity": "2F/T6dcoSumcuA/fcU4W36VpSKPtq4nQf/0/vNFsC+w=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\additional-methods.min.js" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\bootstrap.bundle.min.js", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "js/bootstrap.bundle.min.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "7qkp3v2h36", - "Integrity": "L1RUviJRuhJa9qK4g2vPaC7IPZ3LgEO11x3E4eo5kJQ=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\bootstrap.bundle.min.js" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\bootstrap.min.js", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "js/bootstrap.min.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "sc9grb142d", - "Integrity": "pFVdje6fityXboSpff6H5r9XlLV59Ju1bxM/7YX31wk=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\bootstrap.min.js" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\easymde\\easymde.min.js", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "js/easymde/easymde.min.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "wsy07pgzew", - "Integrity": "0CRA+QWKxczLgIj5mqDe8H/dPZaiyA5xcEoNEwKwwz8=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\easymde\\easymde.min.js" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery-ui.min.js", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "js/jquery-ui.min.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "vy10jqsrv0", - "Integrity": "CdveF1sdbPTwxS7oW9wpYbvN519xustroY6DdE41cBc=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery-ui.min.js" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.js", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "js/jquery.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "a8eee2794i", - "Integrity": "igUc00PXGT1YBL1/Kf7QYy9fPlLqZKcEGrCqDz3EFDI=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.js" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.min.js", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "js/jquery.min.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "fc9074g7ds", - "Integrity": "T+aPohYXbm0fRYDpJLr+zJ9RmYTswGsahAoIsNiMld4=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.min.js" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.min.map", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "js/jquery.min.map", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "b804xvqo1w", - "Integrity": "1eiGMA0y1kD5P/bXnTaiTKk8vtvQ8IC2nXAoI1HJXyE=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.min.map" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.js", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "js/jquery.validate.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "nvegzioxdv", - "Integrity": "rQWr8J1UnYfd1BTv32oZcjOfKwIVbOk+NQBOXmYqXKY=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.js" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.unobtrusive.js", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "js/jquery.validate.unobtrusive.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "dvc2bfcndg", - "Integrity": "qbS02vMHZxdLNYKUtLPSYaSHXj1/ZwH1fv9f3XAY0LU=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.unobtrusive.js" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.unobtrusive.min.js", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "js/jquery.validate.unobtrusive.min.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "gb7ocvbhts", - "Integrity": "9GycpJnliUjJDVDqP0UEu/bsm9U+3dnQUH8+3W10vkY=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.unobtrusive.min.js" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\mvc-grid\\mvc-grid.js", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "js/mvc-grid/mvc-grid.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "3od57ba4vs", - "Integrity": "c+c6aRfDkZVNt4JaMs6tJEDSI0cMKL7uVPe0GrRYtpM=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\mvc-grid\\mvc-grid.js" - }, - { - "Identity": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\site.js", - "SourceId": "CoreAdmin", - "SourceType": "Package", - "ContentRoot": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", - "BasePath": "_content/CoreAdmin", - "RelativePath": "js/site.js", - "AssetKind": "All", - "AssetMode": "All", - "AssetRole": "Primary", - "AssetMergeBehavior": "", - "AssetMergeSource": "", - "RelatedAsset": "", - "AssetTraitName": "", - "AssetTraitValue": "", - "Fingerprint": "ieb3e15pvj", - "Integrity": "el5uaLXOMEs1ea19vubcy7ESZUOnfCSjsDOiY2z7k/E=", - "CopyToOutputDirectory": "Never", - "CopyToPublishDirectory": "PreserveNewest", - "OriginalItemSpec": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\site.js" - } - ], - "Endpoints": [ - { - "Route": "_content/CoreAdmin/css/bootstrap-dark.css", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-dark.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "211463" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"Rbt9CzhoOsoNulFGu/RQexnKvH+NExOYYK8tGPx4gJo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-Rbt9CzhoOsoNulFGu/RQexnKvH+NExOYYK8tGPx4gJo=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/bootstrap-dark.min.css", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-dark.min.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "164209" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"HRp9GUANLkrZJeQdbFtnshlfOoXHhWG/DycvbhiLfxA=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-HRp9GUANLkrZJeQdbFtnshlfOoXHhWG/DycvbhiLfxA=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/bootstrap-grid.css", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "71343" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"PxxCa95g772Ri2/Ze7wZKoR7mKUDmxQGdKlPajcZgsI=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-PxxCa95g772Ri2/Ze7wZKoR7mKUDmxQGdKlPajcZgsI=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/bootstrap-grid.css.map", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.css.map", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "157879" - }, - { - "Name": "Content-Type", - "Value": "text/plain" - }, - { - "Name": "ETag", - "Value": "\"VNMrnh2mEWVnOm/E9z53LF0RDtNMT/ahQ1TOdGNi8Xk=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-VNMrnh2mEWVnOm/E9z53LF0RDtNMT/ahQ1TOdGNi8Xk=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/bootstrap-grid.min.css", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.min.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "50642" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"AQwKONhVkDCtaasfdhBKwoLfIefvXgJ16Ql+ao6aWng=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-AQwKONhVkDCtaasfdhBKwoLfIefvXgJ16Ql+ao6aWng=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/bootstrap-grid.min.css.map", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.min.css.map", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "115037" - }, - { - "Name": "Content-Type", - "Value": "text/plain" - }, - { - "Name": "ETag", - "Value": "\"OBXqzhBpYhzMUba1QF/zh9+DYskLUOyJq5fhdavLlDc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-OBXqzhBpYhzMUba1QF/zh9+DYskLUOyJq5fhdavLlDc=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/bootstrap-reboot.css", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "5108" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"FDrt4UO7vtV8BQ4PZY4y7NOpd0QyloY/9IepHneKcQQ=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-FDrt4UO7vtV8BQ4PZY4y7NOpd0QyloY/9IepHneKcQQ=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/bootstrap-reboot.css.map", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.css.map", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "77416" - }, - { - "Name": "Content-Type", - "Value": "text/plain" - }, - { - "Name": "ETag", - "Value": "\"WNg4MK0kxST7EWfsUTtNohRG14hyqjc+8saWn/zlCmQ=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-WNg4MK0kxST7EWfsUTtNohRG14hyqjc+8saWn/zlCmQ=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/bootstrap-reboot.min.css", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.min.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "3929" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"Of+g2MC9mS5JpF24/qhD+RP0c/tG9XDQAReuglLsrK0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-Of+g2MC9mS5JpF24/qhD+RP0c/tG9XDQAReuglLsrK0=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/bootstrap-reboot.min.css.map", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.min.css.map", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "32534" - }, - { - "Name": "Content-Type", - "Value": "text/plain" - }, - { - "Name": "ETag", - "Value": "\"AcNyCLU0HE0tv43UJttqIrnpY6rpcpkheqqtDS+lYOk=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-AcNyCLU0HE0tv43UJttqIrnpY6rpcpkheqqtDS+lYOk=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/bootstrap.css", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "209709" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"wFfTdiDy/HyWFNHWOiQouhJYtLhqKEyhVtWsfX9A7xc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-wFfTdiDy/HyWFNHWOiQouhJYtLhqKEyhVtWsfX9A7xc=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/bootstrap.css.map", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.css.map", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "511248" - }, - { - "Name": "Content-Type", - "Value": "text/plain" - }, - { - "Name": "ETag", - "Value": "\"KtOJK8YVJt6opmOTJRZuBNlq4MAO3suVoFNSgnIWxWE=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-KtOJK8YVJt6opmOTJRZuBNlq4MAO3suVoFNSgnIWxWE=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/bootstrap.min.css", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.min.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "161415" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"fXqQQ/S+0wP+KXSsTjuhDWshTnD3rlSXhrotNH3gX4E=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-fXqQQ/S+0wP+KXSsTjuhDWshTnD3rlSXhrotNH3gX4E=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/bootstrap.min.css.map", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.min.css.map", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "650715" - }, - { - "Name": "Content-Type", - "Value": "text/plain" - }, - { - "Name": "ETag", - "Value": "\"KiZgBYomlnG90l25zW4JPdDXw3SUdIUtk7HjTqolN0s=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-KiZgBYomlnG90l25zW4JPdDXw3SUdIUtk7HjTqolN0s=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/easymde/easymde-dark.css", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde-dark.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "732" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"aQg4i4d/3JrJL9fJocSb4or+3oSefUy37mdnDy7fMR0=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-aQg4i4d/3JrJL9fJocSb4or+3oSefUy37mdnDy7fMR0=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/easymde/easymde-dark.min.css", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde-dark.min.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "567" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"ZMKcLZgnbfZMRpcm/Y4f531HY4c1MjMrRungeyCo6F4=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-ZMKcLZgnbfZMRpcm/Y4f531HY4c1MjMrRungeyCo6F4=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/easymde/easymde.css", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "16847" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"fR45ZEDtjBBqkENoxiaOqZE826+Iukp/FKbVlvf8IJY=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-fR45ZEDtjBBqkENoxiaOqZE826+Iukp/FKbVlvf8IJY=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/easymde/easymde.min.css", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde.min.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "12429" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"bbcGE3wFLst4Omr497gtqlo2Gv5iKVJZxG9DY6qIkXE=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-bbcGE3wFLst4Omr497gtqlo2Gv5iKVJZxG9DY6qIkXE=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/jquery-ui.min.css", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\jquery-ui.min.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "1913" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"lRprc3UpMi2YqUWLO6v53UDTs1xRts//Qp60c8sYP+M=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-lRprc3UpMi2YqUWLO6v53UDTs1xRts//Qp60c8sYP+M=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/mvc-grid/fonts/grid-glyphs.woff", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\fonts\\grid-glyphs.woff", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "1168" - }, - { - "Name": "Content-Type", - "Value": "application/font-woff" - }, - { - "Name": "ETag", - "Value": "\"of2H+Or1d3n5V3cioIJ4n6X3bmyVMg7oIyN5eSrNHeA=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-of2H+Or1d3n5V3cioIJ4n6X3bmyVMg7oIyN5eSrNHeA=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/mvc-grid/mvc-grid-dark.css", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\mvc-grid-dark.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "9229" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"V7tItYnnWLFcU26hRCRP/FRWbFgr4LMCN+fMf6nGpYY=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-V7tItYnnWLFcU26hRCRP/FRWbFgr4LMCN+fMf6nGpYY=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/mvc-grid/mvc-grid.css", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\mvc-grid.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "9192" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"LoxkDIiG2e7+jmgEapuWTnOP8dTvt7T3AVZ2jYimCbo=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-LoxkDIiG2e7+jmgEapuWTnOP8dTvt7T3AVZ2jYimCbo=" - } - ] - }, - { - "Route": "_content/CoreAdmin/css/site.css", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\site.css", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "2686" - }, - { - "Name": "Content-Type", - "Value": "text/css" - }, - { - "Name": "ETag", - "Value": "\"fmcFkKsAH9c4KhU9AOa/BVyq9Fkds4cdMKDmc5lGWsk=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-fmcFkKsAH9c4KhU9AOa/BVyq9Fkds4cdMKDmc5lGWsk=" - } - ] - }, - { - "Route": "_content/CoreAdmin/js/additional-methods.js", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\additional-methods.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "43184" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"qLDpf9Urms7R6rnASrjHz38WdQfOvSOmTgLDfzQSzIQ=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-qLDpf9Urms7R6rnASrjHz38WdQfOvSOmTgLDfzQSzIQ=" - } - ] - }, - { - "Route": "_content/CoreAdmin/js/additional-methods.min.js", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\additional-methods.min.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "18467" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"2F/T6dcoSumcuA/fcU4W36VpSKPtq4nQf/0/vNFsC+w=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-2F/T6dcoSumcuA/fcU4W36VpSKPtq4nQf/0/vNFsC+w=" - } - ] - }, - { - "Route": "_content/CoreAdmin/js/bootstrap.bundle.min.js", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\bootstrap.bundle.min.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "84384" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"L1RUviJRuhJa9qK4g2vPaC7IPZ3LgEO11x3E4eo5kJQ=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-L1RUviJRuhJa9qK4g2vPaC7IPZ3LgEO11x3E4eo5kJQ=" - } - ] - }, - { - "Route": "_content/CoreAdmin/js/bootstrap.min.js", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\bootstrap.min.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "63473" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"pFVdje6fityXboSpff6H5r9XlLV59Ju1bxM/7YX31wk=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-pFVdje6fityXboSpff6H5r9XlLV59Ju1bxM/7YX31wk=" - } - ] - }, - { - "Route": "_content/CoreAdmin/js/easymde/easymde.min.js", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\easymde\\easymde.min.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "378042" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"0CRA+QWKxczLgIj5mqDe8H/dPZaiyA5xcEoNEwKwwz8=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-0CRA+QWKxczLgIj5mqDe8H/dPZaiyA5xcEoNEwKwwz8=" - } - ] - }, - { - "Route": "_content/CoreAdmin/js/jquery-ui.min.js", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery-ui.min.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "30682" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"CdveF1sdbPTwxS7oW9wpYbvN519xustroY6DdE41cBc=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-CdveF1sdbPTwxS7oW9wpYbvN519xustroY6DdE41cBc=" - } - ] - }, - { - "Route": "_content/CoreAdmin/js/jquery.js", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "282115" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"igUc00PXGT1YBL1/Kf7QYy9fPlLqZKcEGrCqDz3EFDI=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-igUc00PXGT1YBL1/Kf7QYy9fPlLqZKcEGrCqDz3EFDI=" - } - ] - }, - { - "Route": "_content/CoreAdmin/js/jquery.min.js", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.min.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "86929" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"T+aPohYXbm0fRYDpJLr+zJ9RmYTswGsahAoIsNiMld4=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-T+aPohYXbm0fRYDpJLr+zJ9RmYTswGsahAoIsNiMld4=" - } - ] - }, - { - "Route": "_content/CoreAdmin/js/jquery.min.map", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.min.map", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "132370" - }, - { - "Name": "Content-Type", - "Value": "text/plain" - }, - { - "Name": "ETag", - "Value": "\"1eiGMA0y1kD5P/bXnTaiTKk8vtvQ8IC2nXAoI1HJXyE=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-1eiGMA0y1kD5P/bXnTaiTKk8vtvQ8IC2nXAoI1HJXyE=" - } - ] - }, - { - "Route": "_content/CoreAdmin/js/jquery.validate.js", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "50406" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"rQWr8J1UnYfd1BTv32oZcjOfKwIVbOk+NQBOXmYqXKY=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-rQWr8J1UnYfd1BTv32oZcjOfKwIVbOk+NQBOXmYqXKY=" - } - ] - }, - { - "Route": "_content/CoreAdmin/js/jquery.validate.unobtrusive.js", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.unobtrusive.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "19798" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"qbS02vMHZxdLNYKUtLPSYaSHXj1/ZwH1fv9f3XAY0LU=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-qbS02vMHZxdLNYKUtLPSYaSHXj1/ZwH1fv9f3XAY0LU=" - } - ] - }, - { - "Route": "_content/CoreAdmin/js/jquery.validate.unobtrusive.min.js", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.unobtrusive.min.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "5871" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"9GycpJnliUjJDVDqP0UEu/bsm9U+3dnQUH8+3W10vkY=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-9GycpJnliUjJDVDqP0UEu/bsm9U+3dnQUH8+3W10vkY=" - } - ] - }, - { - "Route": "_content/CoreAdmin/js/mvc-grid/mvc-grid.js", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\mvc-grid\\mvc-grid.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "35520" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"c+c6aRfDkZVNt4JaMs6tJEDSI0cMKL7uVPe0GrRYtpM=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-c+c6aRfDkZVNt4JaMs6tJEDSI0cMKL7uVPe0GrRYtpM=" - } - ] - }, - { - "Route": "_content/CoreAdmin/js/site.js", - "AssetFile": "C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\site.js", - "Selectors": [], - "ResponseHeaders": [ - { - "Name": "Accept-Ranges", - "Value": "bytes" - }, - { - "Name": "Content-Length", - "Value": "3220" - }, - { - "Name": "Content-Type", - "Value": "text/javascript" - }, - { - "Name": "ETag", - "Value": "\"el5uaLXOMEs1ea19vubcy7ESZUOnfCSjsDOiY2z7k/E=\"" - }, - { - "Name": "Last-Modified", - "Value": "Fri, 18 Nov 2022 08:48:42 GMT" - }, - { - "Name": "Cache-Control", - "Value": "no-cache" - } - ], - "EndpointProperties": [ - { - "Name": "integrity", - "Value": "sha256-el5uaLXOMEs1ea19vubcy7ESZUOnfCSjsDOiY2z7k/E=" - } - ] - } - ] +{ + "Version": 1, + "Hash": "FjymhWTjFRfhrtJ0+WFFmS1Dhl7pnYOLe+xqVaL+ti4=", + "Source": "BMA.EHR.Recruit.Service", + "BasePath": "_content/BMA.EHR.Recruit.Service", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [ + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.css", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/bootstrap.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "o2ma61z60z", + "Integrity": "wFfTdiDy/HyWFNHWOiQouhJYtLhqKEyhVtWsfX9A7xc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.css" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.css.map", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/bootstrap.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "mkjvklbc72", + "Integrity": "KtOJK8YVJt6opmOTJRZuBNlq4MAO3suVoFNSgnIWxWE=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.css.map" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.min.css", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/bootstrap.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "r61markcoc", + "Integrity": "fXqQQ/S+0wP+KXSsTjuhDWshTnD3rlSXhrotNH3gX4E=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.min.css" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.min.css.map", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/bootstrap.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "eexf3o8jdh", + "Integrity": "KiZgBYomlnG90l25zW4JPdDXw3SUdIUtk7HjTqolN0s=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.min.css.map" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-dark.css", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/bootstrap-dark.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "lsgpqctjuo", + "Integrity": "Rbt9CzhoOsoNulFGu/RQexnKvH+NExOYYK8tGPx4gJo=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-dark.css" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-dark.min.css", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/bootstrap-dark.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "r2o00ft8w7", + "Integrity": "HRp9GUANLkrZJeQdbFtnshlfOoXHhWG/DycvbhiLfxA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-dark.min.css" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.css", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/bootstrap-grid.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "pyegkcbhqw", + "Integrity": "PxxCa95g772Ri2/Ze7wZKoR7mKUDmxQGdKlPajcZgsI=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.css" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.css.map", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/bootstrap-grid.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "056hmt7r52", + "Integrity": "VNMrnh2mEWVnOm/E9z53LF0RDtNMT/ahQ1TOdGNi8Xk=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.css.map" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.min.css", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/bootstrap-grid.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "fgvfz5bry7", + "Integrity": "AQwKONhVkDCtaasfdhBKwoLfIefvXgJ16Ql+ao6aWng=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.min.css" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.min.css.map", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/bootstrap-grid.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "84v1v2toiu", + "Integrity": "OBXqzhBpYhzMUba1QF/zh9+DYskLUOyJq5fhdavLlDc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.min.css.map" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.css", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/bootstrap-reboot.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "g1ibmlckcx", + "Integrity": "FDrt4UO7vtV8BQ4PZY4y7NOpd0QyloY/9IepHneKcQQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.css" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.css.map", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/bootstrap-reboot.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "4tx678vzg9", + "Integrity": "WNg4MK0kxST7EWfsUTtNohRG14hyqjc+8saWn/zlCmQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.css.map" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.min.css", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/bootstrap-reboot.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "xeulmjfqjv", + "Integrity": "Of+g2MC9mS5JpF24/qhD+RP0c/tG9XDQAReuglLsrK0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.min.css" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.min.css.map", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/bootstrap-reboot.min.css.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "5vunn8rik9", + "Integrity": "AcNyCLU0HE0tv43UJttqIrnpY6rpcpkheqqtDS+lYOk=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.min.css.map" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde.css", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/easymde/easymde.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "5mytmx9lqh", + "Integrity": "fR45ZEDtjBBqkENoxiaOqZE826+Iukp/FKbVlvf8IJY=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde.css" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde.min.css", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/easymde/easymde.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "hzbvlxl735", + "Integrity": "bbcGE3wFLst4Omr497gtqlo2Gv5iKVJZxG9DY6qIkXE=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde.min.css" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde-dark.css", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/easymde/easymde-dark.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "zxtslbzk8c", + "Integrity": "aQg4i4d/3JrJL9fJocSb4or+3oSefUy37mdnDy7fMR0=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde-dark.css" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde-dark.min.css", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/easymde/easymde-dark.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "sex9hst9nb", + "Integrity": "ZMKcLZgnbfZMRpcm/Y4f531HY4c1MjMrRungeyCo6F4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde-dark.min.css" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\jquery-ui.min.css", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/jquery-ui.min.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "3yq0hj8c3s", + "Integrity": "lRprc3UpMi2YqUWLO6v53UDTs1xRts//Qp60c8sYP+M=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\jquery-ui.min.css" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\fonts\\grid-glyphs.woff", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/mvc-grid/fonts/grid-glyphs.woff", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "rpgb5d6o9r", + "Integrity": "of2H+Or1d3n5V3cioIJ4n6X3bmyVMg7oIyN5eSrNHeA=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\fonts\\grid-glyphs.woff" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\mvc-grid.css", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/mvc-grid/mvc-grid.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "e5dtw7jnae", + "Integrity": "LoxkDIiG2e7+jmgEapuWTnOP8dTvt7T3AVZ2jYimCbo=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\mvc-grid.css" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\mvc-grid-dark.css", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/mvc-grid/mvc-grid-dark.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "veobziqlx3", + "Integrity": "V7tItYnnWLFcU26hRCRP/FRWbFgr4LMCN+fMf6nGpYY=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\mvc-grid-dark.css" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\site.css", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "css/site.css", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "2zpspf69qj", + "Integrity": "fmcFkKsAH9c4KhU9AOa/BVyq9Fkds4cdMKDmc5lGWsk=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\site.css" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\additional-methods.js", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "js/additional-methods.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "wus95c49fh", + "Integrity": "qLDpf9Urms7R6rnASrjHz38WdQfOvSOmTgLDfzQSzIQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\additional-methods.js" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\additional-methods.min.js", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "js/additional-methods.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "sjab29p8z5", + "Integrity": "2F/T6dcoSumcuA/fcU4W36VpSKPtq4nQf/0/vNFsC+w=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\additional-methods.min.js" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\bootstrap.bundle.min.js", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "js/bootstrap.bundle.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "7qkp3v2h36", + "Integrity": "L1RUviJRuhJa9qK4g2vPaC7IPZ3LgEO11x3E4eo5kJQ=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\bootstrap.bundle.min.js" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\bootstrap.min.js", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "js/bootstrap.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "sc9grb142d", + "Integrity": "pFVdje6fityXboSpff6H5r9XlLV59Ju1bxM/7YX31wk=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\bootstrap.min.js" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\easymde\\easymde.min.js", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "js/easymde/easymde.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "wsy07pgzew", + "Integrity": "0CRA+QWKxczLgIj5mqDe8H/dPZaiyA5xcEoNEwKwwz8=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\easymde\\easymde.min.js" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.js", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "js/jquery.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "a8eee2794i", + "Integrity": "igUc00PXGT1YBL1/Kf7QYy9fPlLqZKcEGrCqDz3EFDI=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.js" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.min.js", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "js/jquery.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "fc9074g7ds", + "Integrity": "T+aPohYXbm0fRYDpJLr+zJ9RmYTswGsahAoIsNiMld4=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.min.js" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.min.map", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "js/jquery.min.map", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "b804xvqo1w", + "Integrity": "1eiGMA0y1kD5P/bXnTaiTKk8vtvQ8IC2nXAoI1HJXyE=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.min.map" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.js", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "js/jquery.validate.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "nvegzioxdv", + "Integrity": "rQWr8J1UnYfd1BTv32oZcjOfKwIVbOk+NQBOXmYqXKY=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.js" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.unobtrusive.js", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "js/jquery.validate.unobtrusive.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "dvc2bfcndg", + "Integrity": "qbS02vMHZxdLNYKUtLPSYaSHXj1/ZwH1fv9f3XAY0LU=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.unobtrusive.js" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.unobtrusive.min.js", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "js/jquery.validate.unobtrusive.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "gb7ocvbhts", + "Integrity": "9GycpJnliUjJDVDqP0UEu/bsm9U+3dnQUH8+3W10vkY=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.unobtrusive.min.js" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery-ui.min.js", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "js/jquery-ui.min.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "vy10jqsrv0", + "Integrity": "CdveF1sdbPTwxS7oW9wpYbvN519xustroY6DdE41cBc=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery-ui.min.js" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\mvc-grid\\mvc-grid.js", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "js/mvc-grid/mvc-grid.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "3od57ba4vs", + "Integrity": "c+c6aRfDkZVNt4JaMs6tJEDSI0cMKL7uVPe0GrRYtpM=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\mvc-grid\\mvc-grid.js" + }, + { + "Identity": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\site.js", + "SourceId": "CoreAdmin", + "SourceType": "Package", + "ContentRoot": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\", + "BasePath": "_content/CoreAdmin", + "RelativePath": "js/site.js", + "AssetKind": "All", + "AssetMode": "All", + "AssetRole": "Primary", + "AssetMergeBehavior": "", + "AssetMergeSource": "", + "RelatedAsset": "", + "AssetTraitName": "", + "AssetTraitValue": "", + "Fingerprint": "ieb3e15pvj", + "Integrity": "el5uaLXOMEs1ea19vubcy7ESZUOnfCSjsDOiY2z7k/E=", + "CopyToOutputDirectory": "Never", + "CopyToPublishDirectory": "PreserveNewest", + "OriginalItemSpec": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\site.js" + } + ], + "Endpoints": [ + { + "Route": "_content/CoreAdmin/css/bootstrap.css", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "209709" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"wFfTdiDy/HyWFNHWOiQouhJYtLhqKEyhVtWsfX9A7xc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-wFfTdiDy/HyWFNHWOiQouhJYtLhqKEyhVtWsfX9A7xc=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/bootstrap.css.map", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "511248" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"KtOJK8YVJt6opmOTJRZuBNlq4MAO3suVoFNSgnIWxWE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KtOJK8YVJt6opmOTJRZuBNlq4MAO3suVoFNSgnIWxWE=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/bootstrap.min.css", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "161415" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fXqQQ/S+0wP+KXSsTjuhDWshTnD3rlSXhrotNH3gX4E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fXqQQ/S+0wP+KXSsTjuhDWshTnD3rlSXhrotNH3gX4E=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/bootstrap.min.css.map", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "650715" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"KiZgBYomlnG90l25zW4JPdDXw3SUdIUtk7HjTqolN0s=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-KiZgBYomlnG90l25zW4JPdDXw3SUdIUtk7HjTqolN0s=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/bootstrap-dark.css", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "211463" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Rbt9CzhoOsoNulFGu/RQexnKvH+NExOYYK8tGPx4gJo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Rbt9CzhoOsoNulFGu/RQexnKvH+NExOYYK8tGPx4gJo=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/bootstrap-dark.min.css", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-dark.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "164209" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"HRp9GUANLkrZJeQdbFtnshlfOoXHhWG/DycvbhiLfxA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-HRp9GUANLkrZJeQdbFtnshlfOoXHhWG/DycvbhiLfxA=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/bootstrap-grid.css", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "71343" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"PxxCa95g772Ri2/Ze7wZKoR7mKUDmxQGdKlPajcZgsI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-PxxCa95g772Ri2/Ze7wZKoR7mKUDmxQGdKlPajcZgsI=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/bootstrap-grid.css.map", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "157879" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"VNMrnh2mEWVnOm/E9z53LF0RDtNMT/ahQ1TOdGNi8Xk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-VNMrnh2mEWVnOm/E9z53LF0RDtNMT/ahQ1TOdGNi8Xk=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/bootstrap-grid.min.css", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "50642" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"AQwKONhVkDCtaasfdhBKwoLfIefvXgJ16Ql+ao6aWng=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AQwKONhVkDCtaasfdhBKwoLfIefvXgJ16Ql+ao6aWng=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/bootstrap-grid.min.css.map", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "115037" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"OBXqzhBpYhzMUba1QF/zh9+DYskLUOyJq5fhdavLlDc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-OBXqzhBpYhzMUba1QF/zh9+DYskLUOyJq5fhdavLlDc=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/bootstrap-reboot.css", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5108" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"FDrt4UO7vtV8BQ4PZY4y7NOpd0QyloY/9IepHneKcQQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-FDrt4UO7vtV8BQ4PZY4y7NOpd0QyloY/9IepHneKcQQ=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/bootstrap-reboot.css.map", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "77416" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"WNg4MK0kxST7EWfsUTtNohRG14hyqjc+8saWn/zlCmQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-WNg4MK0kxST7EWfsUTtNohRG14hyqjc+8saWn/zlCmQ=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/bootstrap-reboot.min.css", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3929" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"Of+g2MC9mS5JpF24/qhD+RP0c/tG9XDQAReuglLsrK0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-Of+g2MC9mS5JpF24/qhD+RP0c/tG9XDQAReuglLsrK0=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/bootstrap-reboot.min.css.map", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.min.css.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "32534" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"AcNyCLU0HE0tv43UJttqIrnpY6rpcpkheqqtDS+lYOk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-AcNyCLU0HE0tv43UJttqIrnpY6rpcpkheqqtDS+lYOk=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/easymde/easymde.css", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "16847" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fR45ZEDtjBBqkENoxiaOqZE826+Iukp/FKbVlvf8IJY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fR45ZEDtjBBqkENoxiaOqZE826+Iukp/FKbVlvf8IJY=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/easymde/easymde.min.css", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "12429" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"bbcGE3wFLst4Omr497gtqlo2Gv5iKVJZxG9DY6qIkXE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-bbcGE3wFLst4Omr497gtqlo2Gv5iKVJZxG9DY6qIkXE=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/easymde/easymde-dark.css", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "732" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"aQg4i4d/3JrJL9fJocSb4or+3oSefUy37mdnDy7fMR0=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-aQg4i4d/3JrJL9fJocSb4or+3oSefUy37mdnDy7fMR0=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/easymde/easymde-dark.min.css", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde-dark.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "567" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"ZMKcLZgnbfZMRpcm/Y4f531HY4c1MjMrRungeyCo6F4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-ZMKcLZgnbfZMRpcm/Y4f531HY4c1MjMrRungeyCo6F4=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/jquery-ui.min.css", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\jquery-ui.min.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1913" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"lRprc3UpMi2YqUWLO6v53UDTs1xRts//Qp60c8sYP+M=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-lRprc3UpMi2YqUWLO6v53UDTs1xRts//Qp60c8sYP+M=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/mvc-grid/fonts/grid-glyphs.woff", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\fonts\\grid-glyphs.woff", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "1168" + }, + { + "Name": "Content-Type", + "Value": "application/font-woff" + }, + { + "Name": "ETag", + "Value": "\"of2H+Or1d3n5V3cioIJ4n6X3bmyVMg7oIyN5eSrNHeA=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-of2H+Or1d3n5V3cioIJ4n6X3bmyVMg7oIyN5eSrNHeA=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/mvc-grid/mvc-grid.css", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\mvc-grid.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "9192" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"LoxkDIiG2e7+jmgEapuWTnOP8dTvt7T3AVZ2jYimCbo=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-LoxkDIiG2e7+jmgEapuWTnOP8dTvt7T3AVZ2jYimCbo=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/mvc-grid/mvc-grid-dark.css", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\mvc-grid-dark.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "9229" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"V7tItYnnWLFcU26hRCRP/FRWbFgr4LMCN+fMf6nGpYY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-V7tItYnnWLFcU26hRCRP/FRWbFgr4LMCN+fMf6nGpYY=" + } + ] + }, + { + "Route": "_content/CoreAdmin/css/site.css", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\site.css", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "2686" + }, + { + "Name": "Content-Type", + "Value": "text/css" + }, + { + "Name": "ETag", + "Value": "\"fmcFkKsAH9c4KhU9AOa/BVyq9Fkds4cdMKDmc5lGWsk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-fmcFkKsAH9c4KhU9AOa/BVyq9Fkds4cdMKDmc5lGWsk=" + } + ] + }, + { + "Route": "_content/CoreAdmin/js/additional-methods.js", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\additional-methods.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "43184" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qLDpf9Urms7R6rnASrjHz38WdQfOvSOmTgLDfzQSzIQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qLDpf9Urms7R6rnASrjHz38WdQfOvSOmTgLDfzQSzIQ=" + } + ] + }, + { + "Route": "_content/CoreAdmin/js/additional-methods.min.js", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\additional-methods.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "18467" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"2F/T6dcoSumcuA/fcU4W36VpSKPtq4nQf/0/vNFsC+w=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-2F/T6dcoSumcuA/fcU4W36VpSKPtq4nQf/0/vNFsC+w=" + } + ] + }, + { + "Route": "_content/CoreAdmin/js/bootstrap.bundle.min.js", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\bootstrap.bundle.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "84384" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"L1RUviJRuhJa9qK4g2vPaC7IPZ3LgEO11x3E4eo5kJQ=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-L1RUviJRuhJa9qK4g2vPaC7IPZ3LgEO11x3E4eo5kJQ=" + } + ] + }, + { + "Route": "_content/CoreAdmin/js/bootstrap.min.js", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\bootstrap.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "63473" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"pFVdje6fityXboSpff6H5r9XlLV59Ju1bxM/7YX31wk=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-pFVdje6fityXboSpff6H5r9XlLV59Ju1bxM/7YX31wk=" + } + ] + }, + { + "Route": "_content/CoreAdmin/js/easymde/easymde.min.js", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\easymde\\easymde.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "378042" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"0CRA+QWKxczLgIj5mqDe8H/dPZaiyA5xcEoNEwKwwz8=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-0CRA+QWKxczLgIj5mqDe8H/dPZaiyA5xcEoNEwKwwz8=" + } + ] + }, + { + "Route": "_content/CoreAdmin/js/jquery.js", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "282115" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"igUc00PXGT1YBL1/Kf7QYy9fPlLqZKcEGrCqDz3EFDI=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-igUc00PXGT1YBL1/Kf7QYy9fPlLqZKcEGrCqDz3EFDI=" + } + ] + }, + { + "Route": "_content/CoreAdmin/js/jquery.min.js", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "86929" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"T+aPohYXbm0fRYDpJLr+zJ9RmYTswGsahAoIsNiMld4=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-T+aPohYXbm0fRYDpJLr+zJ9RmYTswGsahAoIsNiMld4=" + } + ] + }, + { + "Route": "_content/CoreAdmin/js/jquery.min.map", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.min.map", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "132370" + }, + { + "Name": "Content-Type", + "Value": "text/plain" + }, + { + "Name": "ETag", + "Value": "\"1eiGMA0y1kD5P/bXnTaiTKk8vtvQ8IC2nXAoI1HJXyE=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-1eiGMA0y1kD5P/bXnTaiTKk8vtvQ8IC2nXAoI1HJXyE=" + } + ] + }, + { + "Route": "_content/CoreAdmin/js/jquery.validate.js", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "50406" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"rQWr8J1UnYfd1BTv32oZcjOfKwIVbOk+NQBOXmYqXKY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-rQWr8J1UnYfd1BTv32oZcjOfKwIVbOk+NQBOXmYqXKY=" + } + ] + }, + { + "Route": "_content/CoreAdmin/js/jquery.validate.unobtrusive.js", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.unobtrusive.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "19798" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"qbS02vMHZxdLNYKUtLPSYaSHXj1/ZwH1fv9f3XAY0LU=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-qbS02vMHZxdLNYKUtLPSYaSHXj1/ZwH1fv9f3XAY0LU=" + } + ] + }, + { + "Route": "_content/CoreAdmin/js/jquery.validate.unobtrusive.min.js", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.unobtrusive.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "5871" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"9GycpJnliUjJDVDqP0UEu/bsm9U+3dnQUH8+3W10vkY=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-9GycpJnliUjJDVDqP0UEu/bsm9U+3dnQUH8+3W10vkY=" + } + ] + }, + { + "Route": "_content/CoreAdmin/js/jquery-ui.min.js", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery-ui.min.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "30682" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"CdveF1sdbPTwxS7oW9wpYbvN519xustroY6DdE41cBc=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-CdveF1sdbPTwxS7oW9wpYbvN519xustroY6DdE41cBc=" + } + ] + }, + { + "Route": "_content/CoreAdmin/js/mvc-grid/mvc-grid.js", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\mvc-grid\\mvc-grid.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "35520" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"c+c6aRfDkZVNt4JaMs6tJEDSI0cMKL7uVPe0GrRYtpM=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-c+c6aRfDkZVNt4JaMs6tJEDSI0cMKL7uVPe0GrRYtpM=" + } + ] + }, + { + "Route": "_content/CoreAdmin/js/site.js", + "AssetFile": "C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\site.js", + "Selectors": [], + "ResponseHeaders": [ + { + "Name": "Accept-Ranges", + "Value": "bytes" + }, + { + "Name": "Content-Length", + "Value": "3220" + }, + { + "Name": "Content-Type", + "Value": "text/javascript" + }, + { + "Name": "ETag", + "Value": "\"el5uaLXOMEs1ea19vubcy7ESZUOnfCSjsDOiY2z7k/E=\"" + }, + { + "Name": "Last-Modified", + "Value": "Fri, 18 Nov 2022 08:48:42 GMT" + }, + { + "Name": "Cache-Control", + "Value": "no-cache" + } + ], + "EndpointProperties": [ + { + "Name": "integrity", + "Value": "sha256-el5uaLXOMEs1ea19vubcy7ESZUOnfCSjsDOiY2z7k/E=" + } + ] + } + ] } \ No newline at end of file diff --git a/obj/Debug/net7.0/staticwebassets.development.json b/obj/Debug/net7.0/staticwebassets.development.json index c5f6b8e..1515183 100644 --- a/obj/Debug/net7.0/staticwebassets.development.json +++ b/obj/Debug/net7.0/staticwebassets.development.json @@ -1 +1 @@ -{"ContentRoots":["C:\\Users\\Windows 10\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\"],"Root":{"Children":{"_content":{"Children":{"CoreAdmin":{"Children":{"css":{"Children":{"bootstrap-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-dark.css"},"Patterns":null},"bootstrap-dark.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-dark.min.css"},"Patterns":null},"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css.map"},"Patterns":null},"easymde":{"Children":{"easymde-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde-dark.css"},"Patterns":null},"easymde-dark.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde-dark.min.css"},"Patterns":null},"easymde.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde.css"},"Patterns":null},"easymde.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/jquery-ui.min.css"},"Patterns":null},"mvc-grid":{"Children":{"fonts":{"Children":{"grid-glyphs.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/fonts/grid-glyphs.woff"},"Patterns":null}},"Asset":null,"Patterns":null},"mvc-grid-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/mvc-grid-dark.css"},"Patterns":null},"mvc-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/mvc-grid.css"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/additional-methods.min.js"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/bootstrap.min.js"},"Patterns":null},"easymde":{"Children":{"easymde.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/easymde/easymde.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery-ui.min.js"},"Patterns":null},"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.min.map"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.js"},"Patterns":null},"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.unobtrusive.min.js"},"Patterns":null},"mvc-grid":{"Children":{"mvc-grid.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/mvc-grid/mvc-grid.js"},"Patterns":null}},"Asset":null,"Patterns":null},"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}} \ No newline at end of file +{"ContentRoots":["C:\\Users\\jack\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\"],"Root":{"Children":{"_content":{"Children":{"CoreAdmin":{"Children":{"css":{"Children":{"bootstrap-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-dark.css"},"Patterns":null},"bootstrap-dark.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-dark.min.css"},"Patterns":null},"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css.map"},"Patterns":null},"easymde":{"Children":{"easymde-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde-dark.css"},"Patterns":null},"easymde-dark.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde-dark.min.css"},"Patterns":null},"easymde.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde.css"},"Patterns":null},"easymde.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/jquery-ui.min.css"},"Patterns":null},"mvc-grid":{"Children":{"fonts":{"Children":{"grid-glyphs.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/fonts/grid-glyphs.woff"},"Patterns":null}},"Asset":null,"Patterns":null},"mvc-grid-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/mvc-grid-dark.css"},"Patterns":null},"mvc-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/mvc-grid.css"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/additional-methods.min.js"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/bootstrap.min.js"},"Patterns":null},"easymde":{"Children":{"easymde.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/easymde/easymde.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery-ui.min.js"},"Patterns":null},"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.min.map"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.js"},"Patterns":null},"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.unobtrusive.min.js"},"Patterns":null},"mvc-grid":{"Children":{"mvc-grid.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/mvc-grid/mvc-grid.js"},"Patterns":null}},"Asset":null,"Patterns":null},"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}} \ No newline at end of file diff --git a/obj/Debug/net7.0/staticwebassets/msbuild.build.BMA.EHR.Recruit.Service.props b/obj/Debug/net7.0/staticwebassets/msbuild.build.BMA.EHR.Recruit.Service.props index ddaed44..d0b8569 100644 --- a/obj/Debug/net7.0/staticwebassets/msbuild.build.BMA.EHR.Recruit.Service.props +++ b/obj/Debug/net7.0/staticwebassets/msbuild.build.BMA.EHR.Recruit.Service.props @@ -1,4 +1,4 @@ - - - + + + \ No newline at end of file diff --git a/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props b/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props index 906c159..1107cc0 100644 --- a/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props +++ b/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props @@ -1,3 +1,3 @@ - - + + \ No newline at end of file diff --git a/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BMA.EHR.Recruit.Service.props b/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BMA.EHR.Recruit.Service.props index d458e80..d5c4a6f 100644 --- a/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BMA.EHR.Recruit.Service.props +++ b/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BMA.EHR.Recruit.Service.props @@ -1,3 +1,3 @@ - - + + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json index f1930f2..4221fa9 100644 --- a/obj/project.assets.json +++ b/obj/project.assets.json @@ -2564,6 +2564,22 @@ } } }, + "NEST/7.17.5": { + "type": "package", + "dependencies": { + "Elasticsearch.Net": "7.17.5" + }, + "compile": { + "lib/netstandard2.0/Nest.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Nest.dll": { + "related": ".pdb;.xml" + } + } + }, "NETStandard.Library/1.6.1": { "type": "package", "dependencies": { @@ -8254,6 +8270,25 @@ "mysqlconnector.nuspec" ] }, + "NEST/7.17.5": { + "sha512": "bo9UyuIoVRx4IUQiuC8ZrlZuvAXKIccernC7UUKukQCEmRq2eVIk+gubHlnMQljrP51q0mN4cjgy9vv5uZPkoA==", + "type": "package", + "path": "nest/7.17.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Nest.dll", + "lib/net461/Nest.pdb", + "lib/net461/Nest.xml", + "lib/netstandard2.0/Nest.dll", + "lib/netstandard2.0/Nest.pdb", + "lib/netstandard2.0/Nest.xml", + "license.txt", + "nest.7.17.5.nupkg.sha512", + "nest.nuspec", + "nuget-icon.png" + ] + }, "NETStandard.Library/1.6.1": { "sha512": "WcSp3+vP+yHNgS8EV5J7pZ9IRpeDuARBPN28by8zqff1wJQXm26PVU8L3/fYLBJVU7BtDyqNVWq2KlCVvSSR4A==", "type": "package", @@ -13675,6 +13710,7 @@ "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.17.0", "MongoDB.Driver >= 2.19.0", "MongoDB.Driver.GridFS >= 2.19.0", + "NEST >= 7.17.5", "Newtonsoft.Json >= 13.0.3", "Pomelo.EntityFrameworkCore.MySql >= 7.0.0", "Pomelo.EntityFrameworkCore.MySql.Design >= 1.1.2", @@ -13801,6 +13837,10 @@ "target": "Package", "version": "[2.19.0, )" }, + "NEST": { + "target": "Package", + "version": "[7.17.5, )" + }, "Newtonsoft.Json": { "target": "Package", "version": "[13.0.3, )" diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache index a90809c..871e0b1 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "so4FDnKvBAM=", + "dgSpecHash": "2b/aE3ltIAI=", "success": true, "projectFilePath": "D:\\Develop\\SourceCode\\hrms-api-recruit\\BMA.EHR.Recruit.Service.csproj", "expectedPackageFiles": [ @@ -149,6 +149,7 @@ "C:\\Users\\jack\\.nuget\\packages\\mono.texttemplating\\2.2.1\\mono.texttemplating.2.2.1.nupkg.sha512", "C:\\Users\\jack\\.nuget\\packages\\mysql.data\\8.0.29\\mysql.data.8.0.29.nupkg.sha512", "C:\\Users\\jack\\.nuget\\packages\\mysqlconnector\\2.2.5\\mysqlconnector.2.2.5.nupkg.sha512", + "C:\\Users\\jack\\.nuget\\packages\\nest\\7.17.5\\nest.7.17.5.nupkg.sha512", "C:\\Users\\jack\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512", "C:\\Users\\jack\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", "C:\\Users\\jack\\.nuget\\packages\\newtonsoft.json.bson\\1.0.2\\newtonsoft.json.bson.1.0.2.nupkg.sha512",