diff --git a/.vs/BMA.EHR.Recruit.Service/v17/.suo b/.vs/BMA.EHR.Recruit.Service/v17/.suo index 2099b8b..4e2d5f4 100644 Binary files a/.vs/BMA.EHR.Recruit.Service/v17/.suo and b/.vs/BMA.EHR.Recruit.Service/v17/.suo 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..25fe956 100644 --- a/BMA.EHR.Recruit.Service.csproj.user +++ b/BMA.EHR.Recruit.Service.csproj.user @@ -1,9 +1,9 @@ - - - - https - - - ProjectDebugger - + + + + dotnet + + + 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..69a8d3b --- /dev/null +++ b/Core/RequestLoggingMiddleware.cs @@ -0,0 +1,264 @@ +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.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 d34ffd3..d446fbf 100644 --- a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json +++ b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json @@ -22,6 +22,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", @@ -1347,6 +1348,17 @@ } } }, + "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", @@ -3846,6 +3858,13 @@ "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, diff --git a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll index a8b5c8f..4aa732e 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 e302bba..7bde43f 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 fd1bc55..2434b50 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.xml b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml index 01a8e20..90c03b1 100644 --- a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml +++ b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml @@ -1,4 +1,3 @@ -<<<<<<< HEAD @@ -456,6 +455,18 @@ + + + + + + + + + + + + ตัวแปรสำหรับสร้างข้อมูลการสอบแข่งขัน @@ -543,561 +554,3 @@ -======= - - - - 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. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ตัวแปรสำหรับสร้างข้อมูลการสอบแข่งขัน - - - - - ปีงบประมาณที่จัดสอบ - - - - - รอบการสอบ - - - - - ครั้งที่ - - - - - รายละเอียด - - - - - ค่าธรรมเนียม - - - - - วันเริ่มประกาศ - - - - - วันสิ้นสุดประกาศ - - - - - วันเริ่มชำระเงิน - - - - - วันสิ้นสุดชำระเงิน - - - - - วันเริ่มสมัครสอบ - - - - - วันสิ้นสุดสมัครสอบ - - - - - วันที่สอบ - - - - - หมายเหตุ - - - - - วันที่ประกาศผลสอบ - - - - - ข้อมูลคุณสมบัติของผู้เข้าสอบ โดยส่งมาจากหน้าจอ 'มีคุณสมบัติ' 'ขาดคุณสมบัติ' - - - - - ข้อมูลผลการสอบ 'ผ่าน' 'ไม่ผ่าน' - - - - ->>>>>>> develop 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.nuget.dgspec.json b/obj/BMA.EHR.Recruit.Service.csproj.nuget.dgspec.json index 61a0608..e06c52a 100644 --- a/obj/BMA.EHR.Recruit.Service.csproj.nuget.dgspec.json +++ b/obj/BMA.EHR.Recruit.Service.csproj.nuget.dgspec.json @@ -44,8 +44,9 @@ "restoreAuditProperties": { "enableAudit": "true", "auditLevel": "low", - "auditMode": "all" - } + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.200" }, "frameworks": { "net7.0": { @@ -109,6 +110,10 @@ "target": "Package", "version": "[2.19.0, )" }, + "NEST": { + "target": "Package", + "version": "[7.17.5, )" + }, "Newtonsoft.Json": { "target": "Package", "version": "[13.0.3, )" @@ -180,19 +185,19 @@ "downloadDependencies": [ { "name": "Microsoft.AspNetCore.App.Ref", - "version": "[7.0.19, 7.0.19]" + "version": "[7.0.20, 7.0.20]" }, { "name": "Microsoft.NETCore.App.Host.win-x64", - "version": "[7.0.19, 7.0.19]" + "version": "[7.0.20, 7.0.20]" }, { "name": "Microsoft.NETCore.App.Ref", - "version": "[7.0.19, 7.0.19]" + "version": "[7.0.20, 7.0.20]" }, { "name": "Microsoft.WindowsDesktop.App.Ref", - "version": "[7.0.19, 7.0.19]" + "version": "[7.0.20, 7.0.20]" } ], "frameworkReferences": { @@ -203,7 +208,7 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.100-preview.6.24328.19\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.200\\RuntimeIdentifierGraph.json" } } } diff --git a/obj/BMA.EHR.Recruit.Service.csproj.nuget.g.props b/obj/BMA.EHR.Recruit.Service.csproj.nuget.g.props index 7bd6364..e7c89d9 100644 --- a/obj/BMA.EHR.Recruit.Service.csproj.nuget.g.props +++ b/obj/BMA.EHR.Recruit.Service.csproj.nuget.g.props @@ -7,7 +7,7 @@ $(UserProfile)\.nuget\packages\ C:\Users\jack\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages PackageReference - 6.11.0 + 6.14.0 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 5f0ae28..aa5701a 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+9cf6a38b3eec88ec83f6dd50a0177fbc46402c49")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+c91666726ac97c9629e0d0801bd2b2319914f549")] [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 2b713e5..8ce00ab 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 @@ -d7b6fe7d0e4b6b4929eed5632bd0821a80505aa63394f077f16e59d2316ff469 +1802642af904ba7933f06442fbcd77b00f34bd3c50c36fa87c58de029fcc92ba 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 5687900..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,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/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache index b6c28a0..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,5 +1 @@ -<<<<<<< HEAD -2afae04b6f3a7d44fcb90638ba50ba827580abc648c813a2624743f2ef385810 -======= -118adb39fa17e550a6ea3f0884bcc470c472eff8c41b45c6866e270cec7ab054 ->>>>>>> develop +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 f5906cd..f5f2b75 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,4 +1,4 @@ -<<<<<<< HEAD +<<<<<<< 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 @@ -1075,7 +1075,6 @@ 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 @@ -1448,1454 +1447,5 @@ D:\Develop\SourceCode\hrms-api-recruit\obj\Debug\net7.0\BMA.EHR.Recruit.Service. 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/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 ->>>>>>> develop +>>>>>>> develop +D:\Develop\SourceCode\hrms-api-recruit\bin\Debug\net7.0\Nest.dll diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll index e2824a7..4aa732e 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.pdb b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb index fd1bc55..2434b50 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 01a8e20..90c03b1 100644 --- a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml +++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml @@ -1,4 +1,3 @@ -<<<<<<< HEAD @@ -456,6 +455,18 @@ + + + + + + + + + + + + ตัวแปรสำหรับสร้างข้อมูลการสอบแข่งขัน @@ -543,561 +554,3 @@ -======= - - - - 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. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - ตัวแปรสำหรับสร้างข้อมูลการสอบแข่งขัน - - - - - ปีงบประมาณที่จัดสอบ - - - - - รอบการสอบ - - - - - ครั้งที่ - - - - - รายละเอียด - - - - - ค่าธรรมเนียม - - - - - วันเริ่มประกาศ - - - - - วันสิ้นสุดประกาศ - - - - - วันเริ่มชำระเงิน - - - - - วันสิ้นสุดชำระเงิน - - - - - วันเริ่มสมัครสอบ - - - - - วันสิ้นสุดสมัครสอบ - - - - - วันที่สอบ - - - - - หมายเหตุ - - - - - วันที่ประกาศผลสอบ - - - - - ข้อมูลคุณสมบัติของผู้เข้าสอบ โดยส่งมาจากหน้าจอ 'มีคุณสมบัติ' 'ขาดคุณสมบัติ' - - - - - ข้อมูลผลการสอบ 'ผ่าน' 'ไม่ผ่าน' - - - - ->>>>>>> develop 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 17d9721..7bd5f5d 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 17d9721..7bd5f5d 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/project.assets.json b/obj/project.assets.json index bbdb6ee..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", @@ -13735,8 +13771,9 @@ "restoreAuditProperties": { "enableAudit": "true", "auditLevel": "low", - "auditMode": "all" - } + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.200" }, "frameworks": { "net7.0": { @@ -13800,6 +13837,10 @@ "target": "Package", "version": "[2.19.0, )" }, + "NEST": { + "target": "Package", + "version": "[7.17.5, )" + }, "Newtonsoft.Json": { "target": "Package", "version": "[13.0.3, )" @@ -13871,19 +13912,19 @@ "downloadDependencies": [ { "name": "Microsoft.AspNetCore.App.Ref", - "version": "[7.0.19, 7.0.19]" + "version": "[7.0.20, 7.0.20]" }, { "name": "Microsoft.NETCore.App.Host.win-x64", - "version": "[7.0.19, 7.0.19]" + "version": "[7.0.20, 7.0.20]" }, { "name": "Microsoft.NETCore.App.Ref", - "version": "[7.0.19, 7.0.19]" + "version": "[7.0.20, 7.0.20]" }, { "name": "Microsoft.WindowsDesktop.App.Ref", - "version": "[7.0.19, 7.0.19]" + "version": "[7.0.20, 7.0.20]" } ], "frameworkReferences": { @@ -13894,180 +13935,8 @@ "privateAssets": "all" } }, - "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.100-preview.6.24328.19\\RuntimeIdentifierGraph.json" + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\9.0.200\\RuntimeIdentifierGraph.json" } } - }, - "logs": [ - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'Azure.Identity' 1.6.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-5mfx-4wcx-rv27", - "libraryId": "Azure.Identity", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1902", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'Azure.Identity' 1.6.0 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-m5vv-6r4h-3vj9", - "libraryId": "Azure.Identity", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1902", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'Azure.Identity' 1.6.0 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-wvxc-855f-jvrv", - "libraryId": "Azure.Identity", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1904", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'LiteDB' 5.0.11 has a known critical severity vulnerability, https://github.com/advisories/GHSA-3x49-g6rc-c284", - "libraryId": "LiteDB", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'Microsoft.AspNetCore.WebSockets' 2.2.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-6px8-22w5-w334", - "libraryId": "Microsoft.AspNetCore.WebSockets", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'Microsoft.Data.SqlClient' 5.0.1 has a known high severity vulnerability, https://github.com/advisories/GHSA-98g6-xh36-x2p7", - "libraryId": "Microsoft.Data.SqlClient", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1902", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'Microsoft.IdentityModel.JsonWebTokens' 6.21.0 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-59j7-ghrg-fj52", - "libraryId": "Microsoft.IdentityModel.JsonWebTokens", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'Npgsql' 6.0.4 has a known high severity vulnerability, https://github.com/advisories/GHSA-x9vc-6hfv-hg8c", - "libraryId": "Npgsql", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.Data.SqlClient' 4.8.5 has a known high severity vulnerability, https://github.com/advisories/GHSA-98g6-xh36-x2p7", - "libraryId": "System.Data.SqlClient", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.Formats.Asn1' 7.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-447r-wph3-92pm", - "libraryId": "System.Formats.Asn1", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1902", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.IdentityModel.Tokens.Jwt' 6.21.0 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-59j7-ghrg-fj52", - "libraryId": "System.IdentityModel.Tokens.Jwt", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.Net.Http' 4.3.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-7jgj-8wvc-jh57", - "libraryId": "System.Net.Http", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.Net.WebSockets.WebSocketProtocol' 4.5.1 has a known high severity vulnerability, https://github.com/advisories/GHSA-6px8-22w5-w334", - "libraryId": "System.Net.WebSockets.WebSocketProtocol", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.Security.Cryptography.Pkcs' 7.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-555c-2p6r-68mm", - "libraryId": "System.Security.Cryptography.Pkcs", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1902", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.Security.Cryptography.Xml' 4.5.0 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-vh55-786g-wjwj", - "libraryId": "System.Security.Cryptography.Xml", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.Text.Json' 7.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-hh2w-p6rv-4g7w", - "libraryId": "System.Text.Json", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.Text.RegularExpressions' 4.3.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-cmhx-cq75-c4mj", - "libraryId": "System.Text.RegularExpressions", - "targetGraphs": [ - "net7.0" - ] - } - ] + } } \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache index c242fdb..871e0b1 100644 --- a/obj/project.nuget.cache +++ b/obj/project.nuget.cache @@ -1,6 +1,6 @@ { "version": 2, - "dgSpecHash": "ZDtlsnrYOrU=", + "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", @@ -292,181 +293,10 @@ "C:\\Users\\jack\\.nuget\\packages\\system.xml.xpath.xdocument\\4.3.0\\system.xml.xpath.xdocument.4.3.0.nupkg.sha512", "C:\\Users\\jack\\.nuget\\packages\\watchdog.net\\1.4.6\\watchdog.net.1.4.6.nupkg.sha512", "C:\\Users\\jack\\.nuget\\packages\\zstdsharp.port\\0.6.2\\zstdsharp.port.0.6.2.nupkg.sha512", - "C:\\Users\\jack\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\7.0.19\\microsoft.windowsdesktop.app.ref.7.0.19.nupkg.sha512", - "C:\\Users\\jack\\.nuget\\packages\\microsoft.netcore.app.ref\\7.0.19\\microsoft.netcore.app.ref.7.0.19.nupkg.sha512", - "C:\\Users\\jack\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\7.0.19\\microsoft.aspnetcore.app.ref.7.0.19.nupkg.sha512", - "C:\\Users\\jack\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\7.0.19\\microsoft.netcore.app.host.win-x64.7.0.19.nupkg.sha512" + "C:\\Users\\jack\\.nuget\\packages\\microsoft.windowsdesktop.app.ref\\7.0.20\\microsoft.windowsdesktop.app.ref.7.0.20.nupkg.sha512", + "C:\\Users\\jack\\.nuget\\packages\\microsoft.netcore.app.ref\\7.0.20\\microsoft.netcore.app.ref.7.0.20.nupkg.sha512", + "C:\\Users\\jack\\.nuget\\packages\\microsoft.aspnetcore.app.ref\\7.0.20\\microsoft.aspnetcore.app.ref.7.0.20.nupkg.sha512", + "C:\\Users\\jack\\.nuget\\packages\\microsoft.netcore.app.host.win-x64\\7.0.20\\microsoft.netcore.app.host.win-x64.7.0.20.nupkg.sha512" ], - "logs": [ - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'Azure.Identity' 1.6.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-5mfx-4wcx-rv27", - "libraryId": "Azure.Identity", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1902", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'Azure.Identity' 1.6.0 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-m5vv-6r4h-3vj9", - "libraryId": "Azure.Identity", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1902", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'Azure.Identity' 1.6.0 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-wvxc-855f-jvrv", - "libraryId": "Azure.Identity", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1904", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'LiteDB' 5.0.11 has a known critical severity vulnerability, https://github.com/advisories/GHSA-3x49-g6rc-c284", - "libraryId": "LiteDB", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'Microsoft.AspNetCore.WebSockets' 2.2.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-6px8-22w5-w334", - "libraryId": "Microsoft.AspNetCore.WebSockets", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'Microsoft.Data.SqlClient' 5.0.1 has a known high severity vulnerability, https://github.com/advisories/GHSA-98g6-xh36-x2p7", - "libraryId": "Microsoft.Data.SqlClient", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1902", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'Microsoft.IdentityModel.JsonWebTokens' 6.21.0 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-59j7-ghrg-fj52", - "libraryId": "Microsoft.IdentityModel.JsonWebTokens", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'Npgsql' 6.0.4 has a known high severity vulnerability, https://github.com/advisories/GHSA-x9vc-6hfv-hg8c", - "libraryId": "Npgsql", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.Data.SqlClient' 4.8.5 has a known high severity vulnerability, https://github.com/advisories/GHSA-98g6-xh36-x2p7", - "libraryId": "System.Data.SqlClient", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.Formats.Asn1' 7.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-447r-wph3-92pm", - "libraryId": "System.Formats.Asn1", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1902", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.IdentityModel.Tokens.Jwt' 6.21.0 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-59j7-ghrg-fj52", - "libraryId": "System.IdentityModel.Tokens.Jwt", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.Net.Http' 4.3.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-7jgj-8wvc-jh57", - "libraryId": "System.Net.Http", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.Net.WebSockets.WebSocketProtocol' 4.5.1 has a known high severity vulnerability, https://github.com/advisories/GHSA-6px8-22w5-w334", - "libraryId": "System.Net.WebSockets.WebSocketProtocol", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.Security.Cryptography.Pkcs' 7.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-555c-2p6r-68mm", - "libraryId": "System.Security.Cryptography.Pkcs", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1902", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.Security.Cryptography.Xml' 4.5.0 has a known moderate severity vulnerability, https://github.com/advisories/GHSA-vh55-786g-wjwj", - "libraryId": "System.Security.Cryptography.Xml", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.Text.Json' 7.0.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-hh2w-p6rv-4g7w", - "libraryId": "System.Text.Json", - "targetGraphs": [ - "net7.0" - ] - }, - { - "code": "NU1903", - "level": "Warning", - "warningLevel": 1, - "message": "Package 'System.Text.RegularExpressions' 4.3.0 has a known high severity vulnerability, https://github.com/advisories/GHSA-cmhx-cq75-c4mj", - "libraryId": "System.Text.RegularExpressions", - "targetGraphs": [ - "net7.0" - ] - } - ] + "logs": [] } \ No newline at end of file