MinIO Service

This commit is contained in:
Suphonchai Phoonsawat 2023-03-25 20:03:27 +07:00
parent e33c19ae8a
commit bdd327cce2
43 changed files with 2092 additions and 1447 deletions

35
.vscode/launch.json vendored Normal file
View file

@ -0,0 +1,35 @@
{
"version": "0.2.0",
"configurations": [
{
// Use IntelliSense to find out which attributes exist for C# debugging
// Use hover for the description of the existing attributes
// For further information visit https://github.com/OmniSharp/omnisharp-vscode/blob/master/debugger-launchjson.md
"name": ".NET Core Launch (web)",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
// If you have changed target frameworks, make sure to update the program path.
"program": "${workspaceFolder}/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
// Enable launching a web browser when ASP.NET Core starts. For more information: https://aka.ms/VSCode-CS-LaunchJson-WebBrowser
"serverReadyAction": {
"action": "openExternally",
"pattern": "\\bNow listening on:\\s+(https?://\\S+)"
},
"env": {
"ASPNETCORE_ENVIRONMENT": "Development"
},
"sourceFileMap": {
"/Views": "${workspaceFolder}/Views"
}
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach"
}
]
}

41
.vscode/tasks.json vendored Normal file
View file

@ -0,0 +1,41 @@
{
"version": "2.0.0",
"tasks": [
{
"label": "build",
"command": "dotnet",
"type": "process",
"args": [
"build",
"${workspaceFolder}/BMA.EHR.Recruit.Service.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "publish",
"command": "dotnet",
"type": "process",
"args": [
"publish",
"${workspaceFolder}/BMA.EHR.Recruit.Service.csproj",
"/property:GenerateFullPaths=true",
"/consoleloggerparameters:NoSummary"
],
"problemMatcher": "$msCompile"
},
{
"label": "watch",
"command": "dotnet",
"type": "process",
"args": [
"watch",
"run",
"--project",
"${workspaceFolder}/BMA.EHR.Recruit.Service.csproj"
],
"problemMatcher": "$msCompile"
}
]
}

View file

@ -13,197 +13,267 @@ using System.Text;
namespace BMA.EHR.Recruit.Service.Controllers
{
[Route("api/v{version:apiVersion}/recruit")]
[ApiVersion("1.0")]
[ApiController]
[Produces("application/json")]
[Authorize]
[SwaggerTag("จัดการข้อมูลการสอบแข่งขัน")]
public class RecruitController : BaseController
{
#region " Fields "
[Route("api/v{version:apiVersion}/recruit")]
[ApiVersion("1.0")]
[ApiController]
[Produces("application/json")]
[Authorize]
[SwaggerTag("จัดการข้อมูลการสอบแข่งขัน")]
public class RecruitController : BaseController
{
#region " Fields "
private readonly ApplicationDbContext _context;
private readonly DocumentService _documentService;
private readonly IWebHostEnvironment _webHostEnvironment;
private readonly RecruitService _recruitService;
private readonly ApplicationDbContext _context;
private readonly MinIOService _minioService;
private readonly IWebHostEnvironment _webHostEnvironment;
private readonly RecruitService _recruitService;
#endregion
#endregion
#region " Constructor and Destructor "
#region " Constructor and Destructor "
public RecruitController(ApplicationDbContext context,
DocumentService documentService,
IWebHostEnvironment webHostEnvironment,
RecruitService recruitService)
{
_context = context;
_documentService = documentService;
_webHostEnvironment = webHostEnvironment;
_recruitService = recruitService;
}
public RecruitController(ApplicationDbContext context,
MinIOService minioService,
IWebHostEnvironment webHostEnvironment,
RecruitService recruitService)
{
_context = context;
_minioService = minioService;
_webHostEnvironment = webHostEnvironment;
_recruitService = recruitService;
}
#endregion
#endregion
#region " Methods "
#region " Methods "
#region " Private "
#region " Private "
private int GetColumnIndex(string[] columns, string name, bool partial = false)
{
try
{
if (partial)
return Array.FindIndex(columns, x => x.Contains(name)) + 1;
else
return Array.FindIndex(columns, x => x == name) + 1;
}
catch
{
return 0;
}
private int GetColumnIndex(string[] columns, string name, bool partial = false)
{
try
{
if (partial)
return Array.FindIndex(columns, x => x.Contains(name)) + 1;
else
return Array.FindIndex(columns, x => x == name) + 1;
}
catch
{
return 0;
}
}
}
private string CalculateDiff(DateTime d1, DateTime d2)
{
if (d1 > d2) return "ข้อมูลไม่ถูกต้อง";
private string CalculateDiff(DateTime d1, DateTime d2)
{
if (d1 > d2) return "ข้อมูลไม่ถูกต้อง";
TimeSpan sp = d2.Subtract(d1);
int yy = sp.Days / 365;
int mm = (sp.Days - (yy * 365)) / 30;
int dd = (sp.Days - (yy * 365) - (mm * 30));
TimeSpan sp = d2.Subtract(d1);
int yy = sp.Days / 365;
int mm = (sp.Days - (yy * 365)) / 30;
int dd = (sp.Days - (yy * 365) - (mm * 30));
var sb = new StringBuilder();
sb.Clear();
sb.Append(yy == 0 ? "" : $"{yy} ปี ");
sb.Append(mm == 0 ? "" : $"{mm} เดือน ");
//sb.Append(dd == 0 ? "" : $"{dd} วัน ");
var sb = new StringBuilder();
sb.Clear();
sb.Append(yy == 0 ? "" : $"{yy} ปี ");
sb.Append(mm == 0 ? "" : $"{mm} เดือน ");
//sb.Append(dd == 0 ? "" : $"{dd} วัน ");
return sb.ToString();
}
return sb.ToString();
}
private async Task<int> GetExamCount(Guid exam)
{
try
{
return await _context.RecruitPayments.AsQueryable()
.Include(x => x.Recruit)
.ThenInclude(x => x.RecruitImport)
.Where(x => x.Recruit.RecruitImport.Id == exam)
.CountAsync();
}
catch
{
throw;
}
}
private async Task<int> GetExamCount(Guid exam)
{
try
{
return await _context.RecruitPayments.AsQueryable()
.Include(x => x.Recruit)
.ThenInclude(x => x.RecruitImport)
.Where(x => x.Recruit.RecruitImport.Id == exam)
.CountAsync();
}
catch
{
throw;
}
}
private async Task<int> GetPassExamCount(Guid exam)
{
try
{
return await _context.RecruitScores.AsQueryable()
.Include(x => x.ScoreImport)
.Where(x => x.ScoreImport.Id == exam)
.Where(x => x.ExamStatus == "ผ่าน")
.CountAsync();
}
catch
{
throw;
}
}
private async Task<int> GetPassExamCount(Guid exam)
{
try
{
return await _context.RecruitScores.AsQueryable()
.Include(x => x.ScoreImport)
.Where(x => x.ScoreImport.Id == exam)
.Where(x => x.ExamStatus == "ผ่าน")
.CountAsync();
}
catch
{
throw;
}
}
private async Task<int> GetScoreCount(Guid exam)
{
try
{
return await _context.RecruitScores.AsQueryable()
.Include(x => x.ScoreImport)
.Where(x => x.ScoreImport.Id == exam)
.CountAsync();
}
catch
{
throw;
}
}
private async Task<int> GetScoreCount(Guid exam)
{
try
{
return await _context.RecruitScores.AsQueryable()
.Include(x => x.ScoreImport)
.Where(x => x.ScoreImport.Id == exam)
.CountAsync();
}
catch
{
throw;
}
}
#endregion
#endregion
#region " จัดการรอบการสมัครสอบแข่งขัน "
#region " Ex. Upload and Download "
/// <summary>
/// แสดงข้อมูลรอบการสอบแข่งขัน
/// </summary>
/// <returns></returns>
/// <response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
/// <response code="400">ค่าตัวแปรที่ส่งมาไม่ถูกต้อง</response>
/// <response code="401">ไม่ได้ Login เข้าระบบ</response>
/// <response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
[HttpGet]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status400BadRequest)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status500InternalServerError)]
public async Task<ActionResult<ResponseObject>> GetsAsync()
{
try
{
var data = await _context.RecruitImports.AsQueryable()
.OrderByDescending(x => x.Year)
.ThenByDescending(x => x.Order)
.ToListAsync();
[HttpPost("upload"), DisableRequestSizeLimit]
[AllowAnonymous]
public async Task<ActionResult<ResponseObject>> UploadFile()
{
try
{
if (Request.Form.Files == null || Request.Form.Files.Count == 0)
{
return Error(GlobalMessages.NoFileToUpload);
}
return Success(data);
}
catch (Exception ex)
{
return Error(ex);
}
}
var file = Request.Form.Files[0];
var doc = await _minioService.UploadFile(file);
/// <summary>
/// เพิ่มข้อมูลรอบการจัดสอบแข่งขัน
/// </summary>
/// <param name="req"></param>
/// <returns></returns>
/// <response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
/// <response code="400">ค่าตัวแปรที่ส่งมาไม่ถูกต้อง</response>
/// <response code="401">ไม่ได้ Login เข้าระบบ</response>
/// <response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
[HttpPost("period")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status400BadRequest)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status500InternalServerError)]
public async Task<ActionResult<ResponseObject>> PostPeriodAsync([FromBody] PostRecruitImportRequest req)
{
try
{
if (req == null)
return Error(GlobalMessages.InvalidRequestParam, (int)HttpStatusCode.BadRequest);
return Success(doc);
}
catch (Exception ex)
{
return Error(ex);
}
}
await _context.RecruitImports.AddAsync(new RecruitImport
{
Year = req.Year,
Name = req.Name,
Order = req.Order,
});
#endregion
await _context.SaveChangesAsync();
#region " จัดการรอบการสมัครสอบแข่งขัน "
return Success();
}
catch (Exception ex)
{
return Error(ex);
}
}
/// <summary>
/// แสดงข้อมูลรอบการสอบแข่งขัน
/// </summary>
/// <returns></returns>
/// <response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
/// <response code="400">ค่าตัวแปรที่ส่งมาไม่ถูกต้อง</response>
/// <response code="401">ไม่ได้ Login เข้าระบบ</response>
/// <response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
[HttpGet]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status400BadRequest)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status500InternalServerError)]
public async Task<ActionResult<ResponseObject>> GetsAsync()
{
try
{
var data = await _context.RecruitImports.AsQueryable()
.OrderByDescending(x => x.Year)
.ThenByDescending(x => x.Order)
.ToListAsync();
#endregion
return Success(data);
}
catch (Exception ex)
{
return Error(ex);
}
}
#endregion
}
/// <summary>
/// แสดงข้อมูลรอบการสอบแข่งขัน
/// </summary>
/// <param name="id">รหัสรอบการสอบแข่งขัน</param>
/// <returns></returns>
/// <response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
/// <response code="400">ค่าตัวแปรที่ส่งมาไม่ถูกต้อง</response>
/// <response code="401">ไม่ได้ Login เข้าระบบ</response>
/// <response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
[HttpGet("{id:length(24)}")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status400BadRequest)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status500InternalServerError)]
public async Task<ActionResult<ResponseObject>> GetByIdAsync(Guid id)
{
try
{
var data = await _context.RecruitImports.AsQueryable()
.Include(x => x.ImportFile)
.Include(x => x.Recruits)
.ThenInclude(x => x.Addresses)
.Include(x => x.Recruits)
.ThenInclude(x => x.Occupations)
.Include(x => x.Recruits)
.ThenInclude(x => x.Certificates)
.Include(x => x.Recruits)
.ThenInclude(x => x.Educations)
.Include(x => x.Recruits)
.ThenInclude(x => x.Payments)
.Include(x => x.Recruits)
.ThenInclude(x => x.Documents)
.ThenInclude(x => x.DocumentFile)
.FirstOrDefaultAsync(x => x.Id == id);
return Success(data);
}
catch (Exception ex)
{
return Error(ex);
}
}
/// <summary>
/// เพิ่มข้อมูลรอบการจัดสอบแข่งขัน
/// </summary>
/// <param name="req">Request parameters</param>
/// <returns></returns>
/// <response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
/// <response code="400">ค่าตัวแปรที่ส่งมาไม่ถูกต้อง</response>
/// <response code="401">ไม่ได้ Login เข้าระบบ</response>
/// <response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
[HttpPost("period")]
[ProducesResponseType(StatusCodes.Status200OK)]
[ProducesResponseType(StatusCodes.Status400BadRequest)]
[ProducesResponseType(StatusCodes.Status401Unauthorized)]
[ProducesResponseType(StatusCodes.Status500InternalServerError)]
public async Task<ActionResult<ResponseObject>> PostPeriodAsync([FromBody] PostRecruitImportRequest req)
{
try
{
if (req == null)
return Error(GlobalMessages.InvalidRequestParam, (int)HttpStatusCode.BadRequest);
await _context.RecruitImports.AddAsync(new RecruitImport
{
Year = req.Year,
Name = req.Name,
Order = req.Order,
});
await _context.SaveChangesAsync();
return Success();
}
catch (Exception ex)
{
return Error(ex);
}
}
#endregion
#endregion
}
}

View file

@ -1,9 +1,10 @@
namespace BMA.EHR.Recruit.Service.Core
{
public class GlobalMessages
{
public const string FileNotFoundOnServer = "ไม่พบไฟล์ในระบบ!!";
public const string CannotInsertToDatabase = "ไม่สามารถบันทึกลงฐานข้อมูลได้!!";
public const string InvalidRequestParam = "Request parameter ไม่ถูกต้อง!!";
}
public class GlobalMessages
{
public const string FileNotFoundOnServer = "ไม่พบไฟล์ในระบบ!!";
public const string CannotInsertToDatabase = "ไม่สามารถบันทึกลงฐานข้อมูลได้!!";
public const string InvalidRequestParam = "Request parameter ไม่ถูกต้อง!!";
public const string NoFileToUpload = "ไม่พบไฟล์เพื่อทำการอัพโหลด";
}
}

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,41 @@
using System;
using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace BMA.EHR.Recruit.Service.Migrations
{
/// <inheritdoc />
public partial class ChangeDocumentTableDef : Migration
{
/// <inheritdoc />
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<Guid>(
name: "ObjectRefId",
table: "Documents",
type: "char(36)",
nullable: false,
collation: "ascii_general_ci",
oldClrType: typeof(string),
oldType: "varchar(64)",
oldMaxLength: 64)
.OldAnnotation("MySql:CharSet", "utf8mb4");
}
/// <inheritdoc />
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.AlterColumn<string>(
name: "ObjectRefId",
table: "Documents",
type: "varchar(64)",
maxLength: 64,
nullable: false,
oldClrType: typeof(Guid),
oldType: "char(36)")
.Annotation("MySql:CharSet", "utf8mb4")
.OldAnnotation("Relational:Collation", "ascii_general_ci");
}
}
}

View file

@ -45,10 +45,8 @@ namespace BMA.EHR.Recruit.Service.Migrations
.HasMaxLength(128)
.HasColumnType("varchar(128)");
b.Property<string>("ObjectRefId")
.IsRequired()
.HasMaxLength(64)
.HasColumnType("varchar(64)");
b.Property<Guid>("ObjectRefId")
.HasColumnType("char(36)");
b.HasKey("Id");

View file

@ -3,7 +3,7 @@ using System.ComponentModel.DataAnnotations.Schema;
namespace BMA.EHR.Recruit.Service.Models.Documents
{
public class Document
public class Document
{
[Key]
public Guid Id { get; set; }
@ -11,17 +11,19 @@ namespace BMA.EHR.Recruit.Service.Models.Documents
[Required, MaxLength(255)]
public string FileName { get; set; } = string.Empty;
[Required]
public int FileSize { get; set; } = 0;
[MaxLength(128)]
[Required, MaxLength(128)]
public string FileType { get; set; } = string.Empty;
[Column(TypeName = "text")]
[Column(TypeName = "text")]
public string Detail { get; set; } = string.Empty;
[MaxLength(64)]
public string ObjectRefId { get; set; } = string.Empty;
[Required]
public Guid ObjectRefId { get; set; }
public DateTime CreatedDate { get; set; } = DateTime.Now;
[Required]
public DateTime CreatedDate { get; set; } = DateTime.Now;
}
}

View file

@ -61,9 +61,8 @@ builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme).AddJw
builder.Services.AddAuthorization();
// Register Services
builder.Services.AddTransient<DocumentService>();
builder.Services.AddTransient<RecruitService>();
builder.Services.AddTransient<MinIOService>();
// use serilog
ConfigureLogs();
@ -100,7 +99,6 @@ builder.Services.ConfigureOptions<ConfigureSwaggerOptions>();
builder.Services.AddHealthChecks();
// Register Service
builder.Services.AddTransient<DocumentService>();
builder.Services.AddTransient<RecruitService>();
builder.Services.AddTransient<MinIOService>();

View file

@ -1,165 +0,0 @@
using BMA.EHR.Recruit.Service.Core;
using BMA.EHR.Recruit.Service.Data;
using Microsoft.EntityFrameworkCore;
using MongoDB.Driver.GridFS;
using MongoDB.Driver;
using BMA.EHR.Recruit.Service.Models.Documents;
using System.Net.Http.Headers;
using BMA.EHR.Recruit.Service.Responses.Document;
using MongoDB.Bson;
namespace BMA.EHR.Recruit.Service.Services
{
public class DocumentService
{
private readonly ApplicationDbContext _context;
private readonly IConfiguration _configuration;
private readonly IWebHostEnvironment _webHostEnvironment;
private const string MONGO_DATABASE = "bma-recruit";
public DocumentService(ApplicationDbContext context,
IConfiguration configuration,
IWebHostEnvironment webHostEnvironment)
{
_context = context;
_configuration = configuration;
_webHostEnvironment = webHostEnvironment;
}
public string MongoConnectionString
{
get => _configuration.GetConnectionString("MongoConnection");
}
public async Task<Document> UploadFile(IFormFile file, string newFileName = "")
{
var fileName = "";
var fileExt = Path.GetExtension(file.FileName);
if (newFileName != "")
fileName = $"{newFileName}";
else
fileName = ContentDispositionHeaderValue.Parse(file.ContentDisposition).FileName.Trim('"');
var tmpDir = Path.Combine(_webHostEnvironment.ContentRootPath, "tmp");
if (!Directory.Exists(tmpDir))
Directory.CreateDirectory(tmpDir);
var tmpFile = Path.Combine(tmpDir, $"tmp_{DateTime.Now.ToString("ddMMyyyyHHmmss")}{fileExt}");
try
{
// upload to tmp
using (var stream = new FileStream(tmpFile, FileMode.Create))
{
file.CopyTo(stream);
}
var mongo = new MongoClient(MongoConnectionString);
var bucket = new GridFSBucket(mongo.GetDatabase(MONGO_DATABASE));
using (var fs = new FileStream(tmpFile, FileMode.Open, FileAccess.Read))
{
var fileId = bucket.UploadFromStream(fileName, fs);
var info = new FileInfo(tmpFile);
try
{
var doc = new Document()
{
FileName = fileName,
FileType = file.ContentType,
FileSize = Convert.ToInt32(file.Length),
ObjectRefId = fileId.ToString(),
CreatedDate = DateTime.Now
};
await _context.Documents.AddAsync(doc);
await _context.SaveChangesAsync();
return doc;
}
catch
{
bucket.Delete(fileId);
throw new Exception(GlobalMessages.CannotInsertToDatabase);
}
}
}
catch
{
throw;
}
finally
{
System.IO.File.Delete(tmpFile);
}
}
public async Task DeleteFile(Guid fileId)
{
try
{
var doc = await _context.Documents.AsQueryable()
.FirstOrDefaultAsync(x => x.Id == fileId);
if (doc == null)
throw new Exception(GlobalMessages.FileNotFoundOnServer);
var mongo = new MongoClient(MongoConnectionString);
var bucket = new GridFSBucket(mongo.GetDatabase(MONGO_DATABASE));
bucket.Delete(ObjectId.Parse(doc.ObjectRefId));
_context.Documents.Remove(doc);
await _context.SaveChangesAsync();
}
catch
{
throw;
}
}
public async Task<FileDownloadResponse> DownloadFile(Guid fileId)
{
var tmpDir = Path.Combine(_webHostEnvironment.ContentRootPath, "tmp");
if (!Directory.Exists(tmpDir))
Directory.CreateDirectory(tmpDir);
var tmpFile = Path.Combine(tmpDir, $"tmp_{DateTime.Now.ToString("ddMMyyyyHHmmss")}");
try
{
var doc = await _context.Documents.AsQueryable()
.FirstOrDefaultAsync(x => x.Id == fileId);
if (doc == null)
throw new Exception(GlobalMessages.FileNotFoundOnServer);
var fileExt = Path.GetExtension(doc.FileName);
tmpFile = tmpFile + fileExt;
var mongo = new MongoClient(MongoConnectionString);
var bucket = new GridFSBucket(mongo.GetDatabase(MONGO_DATABASE));
var f = bucket.DownloadAsBytes(ObjectId.Parse(doc.ObjectRefId));
return new FileDownloadResponse
{
FileName = doc.FileName,
FileType = doc.FileType,
FileContent = f
};
}
catch
{
throw;
}
finally
{
File.Delete(tmpFile);
}
}
}
}

View file

@ -1,9 +1,13 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net.Http.Headers;
using System.Threading.Tasks;
using Amazon.S3;
using Amazon.S3.Model;
using BMA.EHR.Recruit.Service.Core;
using BMA.EHR.Recruit.Service.Data;
using BMA.EHR.Recruit.Service.Models.Documents;
using Microsoft.EntityFrameworkCore;
namespace BMA.EHR.Recruit.Service.Services
@ -15,6 +19,96 @@ namespace BMA.EHR.Recruit.Service.Services
private readonly ApplicationDbContext _context;
private readonly IConfiguration _configuration;
private readonly IWebHostEnvironment _webHostEnvironment;
private readonly AmazonS3Client _s3Client;
private string _bucketName = string.Empty;
#endregion
#region " Constructors "
public MinIOService(ApplicationDbContext context,
IConfiguration configuration,
IWebHostEnvironment webHostEnvironment)
{
_context = context;
_configuration = configuration;
_webHostEnvironment = webHostEnvironment;
var config = new AmazonS3Config
{
ServiceURL = _configuration["MinIO:Endpoint"],
ForcePathStyle = true
};
_s3Client = new AmazonS3Client(_configuration["MinIO:AccessKey"], _configuration["MinIO:SecretKey"], config);
this._bucketName = _configuration["MinIO:BucketName"] ?? "bma-recruit";
}
#endregion
#region " Methods "
public async Task<Document> UploadFile(IFormFile file, string newFileName = "")
{
var fileName = "";
var fileExt = Path.GetExtension(file.FileName);
if (newFileName != "")
fileName = $"{newFileName}";
else
fileName = ContentDispositionHeaderValue.Parse(file.ContentDisposition).FileName.Trim('"');
var tmpDir = Path.Combine(_webHostEnvironment.ContentRootPath, "tmp");
if (!Directory.Exists(tmpDir))
Directory.CreateDirectory(tmpDir);
var tmpFile = Path.Combine(tmpDir, $"tmp_{DateTime.Now.ToString("ddMMyyyyHHmmss")}{fileExt}");
try
{
using (var ms = new MemoryStream())
{
var id = Guid.NewGuid();
file.CopyTo(ms);
var fileBytes = ms.ToArray();
System.IO.MemoryStream filestream = new System.IO.MemoryStream(fileBytes);
var request = new PutObjectRequest
{
BucketName = _bucketName,
Key = id.ToString("D"),
InputStream = filestream,
ContentType = file.ContentType,
CannedACL = S3CannedACL.PublicRead
};
await _s3Client.PutObjectAsync(request);
// create document object
var doc = new Document()
{
FileName = fileName,
FileType = file.ContentType,
FileSize = Convert.ToInt32(file.Length),
ObjectRefId = id,
CreatedDate = DateTime.Now
};
await _context.Documents.AddAsync(doc);
await _context.SaveChangesAsync();
return doc;
}
}
catch
{
throw;
}
finally
{
File.Delete(tmpFile);
}
}
#endregion
}

View file

@ -27,8 +27,8 @@
},
"MinIO": {
"Endpoint": "http://127.0.0.1:9001",
"AccessKey": "ZQOGEjHxDesiVIHR",
"SecretKey": "vKTpcxY0Wjjp775aDwNn1q6VWJu8EFb6",
"AccessKey": "3ECedIJ1DdaH7Jmk",
"SecretKey": "BJR9lZV7QdRI8DBekadszvN6Tpp3wHyf",
"BucketName": "bma-recruit"
}
}

View file

@ -821,22 +821,22 @@
"runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": {
"rid": "win-arm",
"assetType": "native",
"fileVersion": "5.0.1.0"
"fileVersion": "0.0.0.0"
},
"runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": {
"rid": "win-arm64",
"assetType": "native",
"fileVersion": "5.0.1.0"
"fileVersion": "0.0.0.0"
},
"runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "5.0.1.0"
"fileVersion": "0.0.0.0"
},
"runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "5.0.1.0"
"fileVersion": "0.0.0.0"
}
}
},
@ -1654,7 +1654,7 @@
"runtimes/win-arm64/native/sni.dll": {
"rid": "win-arm64",
"assetType": "native",
"fileVersion": "4.6.25512.1"
"fileVersion": "0.0.0.0"
}
}
},
@ -1663,7 +1663,7 @@
"runtimes/win-x64/native/sni.dll": {
"rid": "win-x64",
"assetType": "native",
"fileVersion": "4.6.25512.1"
"fileVersion": "0.0.0.0"
}
}
},
@ -1672,7 +1672,7 @@
"runtimes/win-x86/native/sni.dll": {
"rid": "win-x86",
"assetType": "native",
"fileVersion": "4.6.25512.1"
"fileVersion": "0.0.0.0"
}
}
},

File diff suppressed because one or more lines are too long

View file

@ -4,6 +4,38 @@
<name>BMA.EHR.Recruit.Service</name>
</assembly>
<members>
<member name="M:BMA.EHR.Recruit.Service.Controllers.RecruitController.GetsAsync">
<summary>
แสดงข้อมูลรอบการสอบแข่งขัน
</summary>
<returns></returns>
<response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
<response code="400">ค่าตัวแปรที่ส่งมาไม่ถูกต้อง</response>
<response code="401">ไม่ได้ Login เข้าระบบ</response>
<response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
</member>
<member name="M:BMA.EHR.Recruit.Service.Controllers.RecruitController.GetByIdAsync(System.Guid)">
<summary>
แสดงข้อมูลรอบการสอบแข่งขัน
</summary>
<param name="id">รหัสรอบการสอบแข่งขัน</param>
<returns></returns>
<response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
<response code="400">ค่าตัวแปรที่ส่งมาไม่ถูกต้อง</response>
<response code="401">ไม่ได้ Login เข้าระบบ</response>
<response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
</member>
<member name="M:BMA.EHR.Recruit.Service.Controllers.RecruitController.PostPeriodAsync(BMA.EHR.Recruit.Service.Requests.Recruits.PostRecruitImportRequest)">
<summary>
เพิ่มข้อมูลรอบการจัดสอบแข่งขัน
</summary>
<param name="req">Request parameters</param>
<returns></returns>
<response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
<response code="400">ค่าตัวแปรที่ส่งมาไม่ถูกต้อง</response>
<response code="401">ไม่ได้ Login เข้าระบบ</response>
<response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
</member>
<member name="T:BMA.EHR.Recruit.Service.Migrations.InitialProject">
<inheritdoc />
</member>
@ -28,6 +60,18 @@
<member name="M:BMA.EHR.Recruit.Service.Migrations.Updaterecruitimporttable.BuildTargetModel(Microsoft.EntityFrameworkCore.ModelBuilder)">
<inheritdoc />
</member>
<member name="T:BMA.EHR.Recruit.Service.Migrations.ChangeDocumentTableDef">
<inheritdoc />
</member>
<member name="M:BMA.EHR.Recruit.Service.Migrations.ChangeDocumentTableDef.Up(Microsoft.EntityFrameworkCore.Migrations.MigrationBuilder)">
<inheritdoc />
</member>
<member name="M:BMA.EHR.Recruit.Service.Migrations.ChangeDocumentTableDef.Down(Microsoft.EntityFrameworkCore.Migrations.MigrationBuilder)">
<inheritdoc />
</member>
<member name="M:BMA.EHR.Recruit.Service.Migrations.ChangeDocumentTableDef.BuildTargetModel(Microsoft.EntityFrameworkCore.ModelBuilder)">
<inheritdoc />
</member>
<member name="T:BMA.EHR.Recruit.Service.Requests.Recruits.PostRecruitImportRequest">
<summary>
ตัวแปรสำหรับสร้างข้อมูลการสอบแข่งขัน

View file

@ -27,8 +27,8 @@
},
"MinIO": {
"Endpoint": "http://127.0.0.1:9001",
"AccessKey": "ZQOGEjHxDesiVIHR",
"SecretKey": "vKTpcxY0Wjjp775aDwNn1q6VWJu8EFb6",
"AccessKey": "3ECedIJ1DdaH7Jmk",
"SecretKey": "BJR9lZV7QdRI8DBekadszvN6Tpp3wHyf",
"BucketName": "bma-recruit"
}
}

View file

@ -1,19 +1,6 @@
{
"format": 1,
"restore": {
<<<<<<< HEAD
"D:\\Develop\\Source\\BMA-EHR-Recruit-Service\\BMA.EHR.Recruit.Service.csproj": {}
},
"projects": {
"D:\\Develop\\Source\\BMA-EHR-Recruit-Service\\BMA.EHR.Recruit.Service.csproj": {
"version": "1.0.0",
"restore": {
"projectUniqueName": "D:\\Develop\\Source\\BMA-EHR-Recruit-Service\\BMA.EHR.Recruit.Service.csproj",
"projectName": "BMA.EHR.Recruit.Service",
"projectPath": "D:\\Develop\\Source\\BMA-EHR-Recruit-Service\\BMA.EHR.Recruit.Service.csproj",
"packagesPath": "C:\\Users\\suphonchai\\.nuget\\packages\\",
"outputPath": "D:\\Develop\\Source\\BMA-EHR-Recruit-Service\\obj\\",
=======
"/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/BMA.EHR.Recruit.Service.csproj": {}
},
"projects": {
@ -25,27 +12,16 @@
"projectPath": "/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/BMA.EHR.Recruit.Service.csproj",
"packagesPath": "/Users/suphonchai/.nuget/packages/",
"outputPath": "/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/",
>>>>>>> develop
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
<<<<<<< HEAD
"D:\\Develop\\Source\\BMA-EHR-Recruit-Service\\NuGet.Config",
"C:\\Users\\suphonchai\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
=======
"/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/NuGet.Config",
"/Users/suphonchai/.nuget/NuGet/NuGet.Config"
>>>>>>> develop
],
"originalTargetFrameworks": [
"net7.0"
],
"sources": {
"C:\\Program Files\\dotnet\\library-packs": {},
"/usr/local/share/dotnet/library-packs": {},
"https://api.nuget.org/v3/index.json": {},
"https://nuget.frappet.synology.me/v3/index.json": {}
},
@ -207,11 +183,7 @@
"privateAssets": "all"
}
},
<<<<<<< HEAD
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
=======
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.202/RuntimeIdentifierGraph.json"
>>>>>>> develop
}
}
}

View file

@ -4,34 +4,23 @@
<RestoreSuccess Condition=" '$(RestoreSuccess)' == '' ">True</RestoreSuccess>
<RestoreTool Condition=" '$(RestoreTool)' == '' ">NuGet</RestoreTool>
<ProjectAssetsFile Condition=" '$(ProjectAssetsFile)' == '' ">$(MSBuildThisFileDirectory)project.assets.json</ProjectAssetsFile>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">$(UserProfile)\.nuget\packages\</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">C:\Users\suphonchai\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages</NuGetPackageFolders>
<NuGetPackageRoot Condition=" '$(NuGetPackageRoot)' == '' ">/Users/suphonchai/.nuget/packages/</NuGetPackageRoot>
<NuGetPackageFolders Condition=" '$(NuGetPackageFolders)' == '' ">/Users/suphonchai/.nuget/packages/</NuGetPackageFolders>
<NuGetProjectStyle Condition=" '$(NuGetProjectStyle)' == '' ">PackageReference</NuGetProjectStyle>
<NuGetToolVersion Condition=" '$(NuGetToolVersion)' == '' ">6.5.0</NuGetToolVersion>
</PropertyGroup>
<ItemGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<SourceRoot Include="C:\Users\suphonchai\.nuget\packages\" />
<SourceRoot Include="C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages\" />
<SourceRoot Include="/Users/suphonchai/.nuget/packages/" />
</ItemGroup>
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.props')" />
<Import Project="$(NuGetPackageRoot)swashbuckle.aspnetcore\6.5.0\build\Swashbuckle.AspNetCore.props" Condition="Exists('$(NuGetPackageRoot)swashbuckle.aspnetcore\6.5.0\build\Swashbuckle.AspNetCore.props')" />
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore\7.0.3\buildTransitive\net6.0\Microsoft.EntityFrameworkCore.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore\7.0.3\buildTransitive\net6.0\Microsoft.EntityFrameworkCore.props')" />
<Import Project="$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.17.0\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props" Condition="Exists('$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.17.0\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props')" />
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore.design\7.0.3\build\net6.0\Microsoft.EntityFrameworkCore.Design.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore.design\7.0.3\build\net6.0\Microsoft.EntityFrameworkCore.Design.props')" />
<Import Project="$(NuGetPackageRoot)coreadmin\2.7.0\buildTransitive\CoreAdmin.props" Condition="Exists('$(NuGetPackageRoot)coreadmin\2.7.0\buildTransitive\CoreAdmin.props')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server/6.0.5/build/Microsoft.Extensions.ApiDescription.Server.props" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server/6.0.5/build/Microsoft.Extensions.ApiDescription.Server.props')" />
<Import Project="$(NuGetPackageRoot)swashbuckle.aspnetcore/6.5.0/build/Swashbuckle.AspNetCore.props" Condition="Exists('$(NuGetPackageRoot)swashbuckle.aspnetcore/6.5.0/build/Swashbuckle.AspNetCore.props')" />
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore/7.0.3/buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore/7.0.3/buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props')" />
<Import Project="$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets/1.17.0/build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props" Condition="Exists('$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets/1.17.0/build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.props')" />
<Import Project="$(NuGetPackageRoot)microsoft.entityframeworkcore.design/7.0.3/build/net6.0/Microsoft.EntityFrameworkCore.Design.props" Condition="Exists('$(NuGetPackageRoot)microsoft.entityframeworkcore.design/7.0.3/build/net6.0/Microsoft.EntityFrameworkCore.Design.props')" />
<Import Project="$(NuGetPackageRoot)coreadmin/2.7.0/buildTransitive/CoreAdmin.props" Condition="Exists('$(NuGetPackageRoot)coreadmin/2.7.0/buildTransitive/CoreAdmin.props')" />
</ImportGroup>
<PropertyGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<<<<<<< HEAD
<PkgAWSSDK_Core Condition=" '$(PkgAWSSDK_Core)' == '' ">C:\Users\suphonchai\.nuget\packages\awssdk.core\3.7.100.14</PkgAWSSDK_Core>
<PkgAWSSDK_SecurityToken Condition=" '$(PkgAWSSDK_SecurityToken)' == '' ">C:\Users\suphonchai\.nuget\packages\awssdk.securitytoken\3.7.100.14</PkgAWSSDK_SecurityToken>
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">C:\Users\suphonchai\.nuget\packages\microsoft.codeanalysis.analyzers\1.1.0</PkgMicrosoft_CodeAnalysis_Analyzers>
<PkgMicrosoft_AspNetCore_Razor_Design Condition=" '$(PkgMicrosoft_AspNetCore_Razor_Design)' == '' ">C:\Users\suphonchai\.nuget\packages\microsoft.aspnetcore.razor.design\2.2.0</PkgMicrosoft_AspNetCore_Razor_Design>
<PkgMicrosoft_Extensions_ApiDescription_Server Condition=" '$(PkgMicrosoft_Extensions_ApiDescription_Server)' == '' ">C:\Users\suphonchai\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5</PkgMicrosoft_Extensions_ApiDescription_Server>
<PkgSentry Condition=" '$(PkgSentry)' == '' ">C:\Users\suphonchai\.nuget\packages\sentry\3.29.1</PkgSentry>
<PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets Condition=" '$(PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets)' == '' ">C:\Users\suphonchai\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.17.0</PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets>
<PkgMicrosoft_EntityFrameworkCore_Tools Condition=" '$(PkgMicrosoft_EntityFrameworkCore_Tools)' == '' ">C:\Users\suphonchai\.nuget\packages\microsoft.entityframeworkcore.tools\7.0.3</PkgMicrosoft_EntityFrameworkCore_Tools>
=======
<PkgAWSSDK_Core Condition=" '$(PkgAWSSDK_Core)' == '' ">/Users/suphonchai/.nuget/packages/awssdk.core/3.7.106.5</PkgAWSSDK_Core>
<PkgAWSSDK_SecurityToken Condition=" '$(PkgAWSSDK_SecurityToken)' == '' ">/Users/suphonchai/.nuget/packages/awssdk.securitytoken/3.7.100.14</PkgAWSSDK_SecurityToken>
<PkgMicrosoft_CodeAnalysis_Analyzers Condition=" '$(PkgMicrosoft_CodeAnalysis_Analyzers)' == '' ">/Users/suphonchai/.nuget/packages/microsoft.codeanalysis.analyzers/1.1.0</PkgMicrosoft_CodeAnalysis_Analyzers>
@ -41,6 +30,5 @@
<PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets Condition=" '$(PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets)' == '' ">/Users/suphonchai/.nuget/packages/microsoft.visualstudio.azure.containers.tools.targets/1.17.0</PkgMicrosoft_VisualStudio_Azure_Containers_Tools_Targets>
<PkgMicrosoft_EntityFrameworkCore_Tools Condition=" '$(PkgMicrosoft_EntityFrameworkCore_Tools)' == '' ">/Users/suphonchai/.nuget/packages/microsoft.entityframeworkcore.tools/7.0.3</PkgMicrosoft_EntityFrameworkCore_Tools>
<PkgAWSSDK_S3 Condition=" '$(PkgAWSSDK_S3)' == '' ">/Users/suphonchai/.nuget/packages/awssdk.s3/3.7.103.35</PkgAWSSDK_S3>
>>>>>>> develop
</PropertyGroup>
</Project>

View file

@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<Project ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<ImportGroup Condition=" '$(ExcludeRestorePackageImports)' != 'true' ">
<Import Project="$(NuGetPackageRoot)system.text.json\7.0.0\buildTransitive\net6.0\System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json\7.0.0\buildTransitive\net6.0\System.Text.Json.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\7.0.0\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions\7.0.0\buildTransitive\net6.0\Microsoft.Extensions.Logging.Abstractions.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server\6.0.5\build\Microsoft.Extensions.ApiDescription.Server.targets')" />
<Import Project="$(NuGetPackageRoot)sentry\3.29.1\buildTransitive\Sentry.targets" Condition="Exists('$(NuGetPackageRoot)sentry\3.29.1\buildTransitive\Sentry.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.17.0\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets\1.17.0\build\Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets')" />
<Import Project="$(NuGetPackageRoot)system.text.json/7.0.0/buildTransitive/net6.0/System.Text.Json.targets" Condition="Exists('$(NuGetPackageRoot)system.text.json/7.0.0/buildTransitive/net6.0/System.Text.Json.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/7.0.0/buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.logging.abstractions/7.0.0/buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.extensions.apidescription.server/6.0.5/build/Microsoft.Extensions.ApiDescription.Server.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.extensions.apidescription.server/6.0.5/build/Microsoft.Extensions.ApiDescription.Server.targets')" />
<Import Project="$(NuGetPackageRoot)sentry/3.29.1/buildTransitive/Sentry.targets" Condition="Exists('$(NuGetPackageRoot)sentry/3.29.1/buildTransitive/Sentry.targets')" />
<Import Project="$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets/1.17.0/build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets" Condition="Exists('$(NuGetPackageRoot)microsoft.visualstudio.azure.containers.tools.targets/1.17.0/build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets')" />
</ImportGroup>
</Project>

View file

@ -9,17 +9,9 @@ build_property.EnforceExtendedAnalyzerRules =
build_property._SupportedPlatformList = Linux,macOS,Windows
build_property.RootNamespace = BMA.EHR.Recruit.Service
build_property.RootNamespace = BMA.EHR.Recruit.Service
<<<<<<< HEAD
build_property.ProjectDir = D:\Develop\Source\BMA-EHR-Recruit-Service\
build_property.RazorLangVersion = 7.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = D:\Develop\Source\BMA-EHR-Recruit-Service
=======
build_property.ProjectDir = /Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/
build_property.RazorLangVersion = 7.0
build_property.SupportLocalizedComponentNames =
build_property.GenerateRazorMetadataSourceChecksumAttributes =
build_property.MSBuildProjectDirectory = /Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service
>>>>>>> develop
build_property._RazorSourceGeneratorDebug =

View file

@ -1,5 +1 @@
<<<<<<< HEAD
122b6472bf22a328ba8031fef1ad69109bfa88a7
=======
3964ea2c2ea39b9c39eed4b75cf1762d7372e6d3
>>>>>>> develop
7a6f435baa4e7fff09a886582609939baa3b8ccf

View file

@ -1,541 +1,180 @@
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.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/Microsoft.AspNetCore.OpenApi.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/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/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/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.csproj.CopyComplete
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.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:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/nuget.config
D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/global.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/AWSSDK.Core.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/BMA.EHR.Core.dll
D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Extensions.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.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.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/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/Sentry.Attributes.cs
D:/Develop/Source/BMA-EHR-Recruit-Service/bin/Debug/net7.0/BMA.EHR.Recruit.Service.xml
D:/Develop/Source/BMA-EHR-Recruit-Service/obj/Debug/net7.0/BMA.EHR.Recruit.Service.xml
/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/nuget.config
/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.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/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/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.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/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
<<<<<<< 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\global.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.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\BMA.EHR.Core.dll
D:\Develop\Source\BMA-EHR-Recruit-Service\bin\Debug\net7.0\BMA.EHR.Extensions.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.csproj.CopyComplete
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
=======
/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
>>>>>>> develop
/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/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/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.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/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

View file

@ -1,5 +1 @@
<<<<<<< HEAD
8db275d960cef9eef9fdfa8ab97510a96f0326ff
=======
592c44784036e353abd93e053c077d3a77090612
>>>>>>> develop

View file

@ -4,6 +4,38 @@
<name>BMA.EHR.Recruit.Service</name>
</assembly>
<members>
<member name="M:BMA.EHR.Recruit.Service.Controllers.RecruitController.GetsAsync">
<summary>
แสดงข้อมูลรอบการสอบแข่งขัน
</summary>
<returns></returns>
<response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
<response code="400">ค่าตัวแปรที่ส่งมาไม่ถูกต้อง</response>
<response code="401">ไม่ได้ Login เข้าระบบ</response>
<response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
</member>
<member name="M:BMA.EHR.Recruit.Service.Controllers.RecruitController.GetByIdAsync(System.Guid)">
<summary>
แสดงข้อมูลรอบการสอบแข่งขัน
</summary>
<param name="id">รหัสรอบการสอบแข่งขัน</param>
<returns></returns>
<response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
<response code="400">ค่าตัวแปรที่ส่งมาไม่ถูกต้อง</response>
<response code="401">ไม่ได้ Login เข้าระบบ</response>
<response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
</member>
<member name="M:BMA.EHR.Recruit.Service.Controllers.RecruitController.PostPeriodAsync(BMA.EHR.Recruit.Service.Requests.Recruits.PostRecruitImportRequest)">
<summary>
เพิ่มข้อมูลรอบการจัดสอบแข่งขัน
</summary>
<param name="req">Request parameters</param>
<returns></returns>
<response code="200">เมื่อทำการอ่านข้อมูลจาก Relational Database สำเร็จ</response>
<response code="400">ค่าตัวแปรที่ส่งมาไม่ถูกต้อง</response>
<response code="401">ไม่ได้ Login เข้าระบบ</response>
<response code="500">เมื่อเกิดข้อผิดพลาดในการทำงาน</response>
</member>
<member name="T:BMA.EHR.Recruit.Service.Migrations.InitialProject">
<inheritdoc />
</member>
@ -28,6 +60,18 @@
<member name="M:BMA.EHR.Recruit.Service.Migrations.Updaterecruitimporttable.BuildTargetModel(Microsoft.EntityFrameworkCore.ModelBuilder)">
<inheritdoc />
</member>
<member name="T:BMA.EHR.Recruit.Service.Migrations.ChangeDocumentTableDef">
<inheritdoc />
</member>
<member name="M:BMA.EHR.Recruit.Service.Migrations.ChangeDocumentTableDef.Up(Microsoft.EntityFrameworkCore.Migrations.MigrationBuilder)">
<inheritdoc />
</member>
<member name="M:BMA.EHR.Recruit.Service.Migrations.ChangeDocumentTableDef.Down(Microsoft.EntityFrameworkCore.Migrations.MigrationBuilder)">
<inheritdoc />
</member>
<member name="M:BMA.EHR.Recruit.Service.Migrations.ChangeDocumentTableDef.BuildTargetModel(Microsoft.EntityFrameworkCore.ModelBuilder)">
<inheritdoc />
</member>
<member name="T:BMA.EHR.Recruit.Service.Requests.Recruits.PostRecruitImportRequest">
<summary>
ตัวแปรสำหรับสร้างข้อมูลการสอบแข่งขัน

View file

@ -1,7 +1,6 @@
//------------------------------------------------------------------------------
// <auto-generated>
// 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.
@ -11,11 +10,7 @@
using System;
using System.Reflection;
<<<<<<< HEAD
[assembly: System.Reflection.AssemblyMetadata("Sentry.ProjectDirectory", "D:\\Develop\\Source\\BMA-EHR-Recruit-Service\\")]
=======
[assembly: System.Reflection.AssemblyMetadata("Sentry.ProjectDirectory", "/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/")]
>>>>>>> develop
// Generated by the MSBuild WriteCodeFragment class.

Binary file not shown.

View file

@ -1,6 +1,6 @@
{
"Version": 1,
"Hash": "76iOJYeekxJxm0hV7aRFaAuc1CIGFJZ2ZEHpsYqOoNc=",
"Hash": "qy+8WX+bY2AtVsNlOsM3zzM+wn4guc7awzZCVhl/GbU=",
"Source": "BMA.EHR.Recruit.Service",
"BasePath": "_content/BMA.EHR.Recruit.Service",
"Mode": "Default",
@ -9,10 +9,10 @@
"DiscoveryPatterns": [],
"Assets": [
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-dark.css",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-dark.css",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/bootstrap-dark.css",
"AssetKind": "All",
@ -23,13 +23,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-dark.css"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-dark.css"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-dark.min.css",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-dark.min.css",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/bootstrap-dark.min.css",
"AssetKind": "All",
@ -40,13 +40,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-dark.min.css"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-dark.min.css"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.css",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-grid.css",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/bootstrap-grid.css",
"AssetKind": "All",
@ -57,13 +57,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.css"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-grid.css"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.css.map",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-grid.css.map",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/bootstrap-grid.css.map",
"AssetKind": "All",
@ -74,13 +74,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.css.map"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-grid.css.map"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.min.css",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-grid.min.css",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/bootstrap-grid.min.css",
"AssetKind": "All",
@ -91,13 +91,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.min.css"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-grid.min.css"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.min.css.map",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-grid.min.css.map",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/bootstrap-grid.min.css.map",
"AssetKind": "All",
@ -108,13 +108,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-grid.min.css.map"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-grid.min.css.map"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.css",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-reboot.css",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/bootstrap-reboot.css",
"AssetKind": "All",
@ -125,13 +125,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.css"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-reboot.css"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.css.map",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-reboot.css.map",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/bootstrap-reboot.css.map",
"AssetKind": "All",
@ -142,13 +142,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.css.map"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-reboot.css.map"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.min.css",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-reboot.min.css",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/bootstrap-reboot.min.css",
"AssetKind": "All",
@ -159,13 +159,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.min.css"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-reboot.min.css"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.min.css.map",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-reboot.min.css.map",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/bootstrap-reboot.min.css.map",
"AssetKind": "All",
@ -176,13 +176,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap-reboot.min.css.map"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap-reboot.min.css.map"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.css",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap.css",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/bootstrap.css",
"AssetKind": "All",
@ -193,13 +193,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.css"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap.css"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.css.map",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap.css.map",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/bootstrap.css.map",
"AssetKind": "All",
@ -210,13 +210,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.css.map"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap.css.map"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.min.css",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap.min.css",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/bootstrap.min.css",
"AssetKind": "All",
@ -227,13 +227,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.min.css"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap.min.css"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.min.css.map",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap.min.css.map",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/bootstrap.min.css.map",
"AssetKind": "All",
@ -244,13 +244,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\bootstrap.min.css.map"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/bootstrap.min.css.map"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde-dark.css",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/easymde/easymde-dark.css",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/easymde/easymde-dark.css",
"AssetKind": "All",
@ -261,13 +261,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde-dark.css"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/easymde/easymde-dark.css"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde-dark.min.css",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/easymde/easymde-dark.min.css",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/easymde/easymde-dark.min.css",
"AssetKind": "All",
@ -278,13 +278,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde-dark.min.css"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/easymde/easymde-dark.min.css"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde.css",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/easymde/easymde.css",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/easymde/easymde.css",
"AssetKind": "All",
@ -295,13 +295,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde.css"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/easymde/easymde.css"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde.min.css",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/easymde/easymde.min.css",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/easymde/easymde.min.css",
"AssetKind": "All",
@ -312,13 +312,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\easymde\\easymde.min.css"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/easymde/easymde.min.css"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\jquery-ui.min.css",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/jquery-ui.min.css",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/jquery-ui.min.css",
"AssetKind": "All",
@ -329,13 +329,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\jquery-ui.min.css"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/jquery-ui.min.css"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\fonts\\grid-glyphs.woff",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/mvc-grid/fonts/grid-glyphs.woff",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/mvc-grid/fonts/grid-glyphs.woff",
"AssetKind": "All",
@ -346,13 +346,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\fonts\\grid-glyphs.woff"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/mvc-grid/fonts/grid-glyphs.woff"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\mvc-grid-dark.css",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/mvc-grid/mvc-grid-dark.css",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/mvc-grid/mvc-grid-dark.css",
"AssetKind": "All",
@ -363,13 +363,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\mvc-grid-dark.css"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/mvc-grid/mvc-grid-dark.css"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\mvc-grid.css",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/mvc-grid/mvc-grid.css",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/mvc-grid/mvc-grid.css",
"AssetKind": "All",
@ -380,13 +380,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\mvc-grid\\mvc-grid.css"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/mvc-grid/mvc-grid.css"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\site.css",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/site.css",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/site.css",
"AssetKind": "All",
@ -397,13 +397,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\css\\site.css"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/css/site.css"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\additional-methods.js",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/additional-methods.js",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "js/additional-methods.js",
"AssetKind": "All",
@ -414,13 +414,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\additional-methods.js"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/additional-methods.js"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\additional-methods.min.js",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/additional-methods.min.js",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "js/additional-methods.min.js",
"AssetKind": "All",
@ -431,13 +431,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\additional-methods.min.js"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/additional-methods.min.js"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\bootstrap.bundle.min.js",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/bootstrap.bundle.min.js",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "js/bootstrap.bundle.min.js",
"AssetKind": "All",
@ -448,13 +448,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\bootstrap.bundle.min.js"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/bootstrap.bundle.min.js"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\bootstrap.min.js",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/bootstrap.min.js",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "js/bootstrap.min.js",
"AssetKind": "All",
@ -465,13 +465,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\bootstrap.min.js"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/bootstrap.min.js"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\easymde\\easymde.min.js",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/easymde/easymde.min.js",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "js/easymde/easymde.min.js",
"AssetKind": "All",
@ -482,13 +482,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\easymde\\easymde.min.js"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/easymde/easymde.min.js"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery-ui.min.js",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/jquery-ui.min.js",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "js/jquery-ui.min.js",
"AssetKind": "All",
@ -499,13 +499,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery-ui.min.js"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/jquery-ui.min.js"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.js",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/jquery.js",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "js/jquery.js",
"AssetKind": "All",
@ -516,13 +516,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.js"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/jquery.js"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.min.js",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/jquery.min.js",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "js/jquery.min.js",
"AssetKind": "All",
@ -533,13 +533,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.min.js"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/jquery.min.js"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.min.map",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/jquery.min.map",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "js/jquery.min.map",
"AssetKind": "All",
@ -550,13 +550,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.min.map"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/jquery.min.map"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.js",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/jquery.validate.js",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "js/jquery.validate.js",
"AssetKind": "All",
@ -567,13 +567,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.js"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/jquery.validate.js"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.unobtrusive.js",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/jquery.validate.unobtrusive.js",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "js/jquery.validate.unobtrusive.js",
"AssetKind": "All",
@ -584,13 +584,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.unobtrusive.js"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/jquery.validate.unobtrusive.js"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.unobtrusive.min.js",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/jquery.validate.unobtrusive.min.js",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "js/jquery.validate.unobtrusive.min.js",
"AssetKind": "All",
@ -601,13 +601,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\jquery.validate.unobtrusive.min.js"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/jquery.validate.unobtrusive.min.js"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\mvc-grid\\mvc-grid.js",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/mvc-grid/mvc-grid.js",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "js/mvc-grid/mvc-grid.js",
"AssetKind": "All",
@ -618,13 +618,13 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\mvc-grid\\mvc-grid.js"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/mvc-grid/mvc-grid.js"
},
{
"Identity": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\site.js",
"Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/site.js",
"SourceId": "CoreAdmin",
"SourceType": "Package",
"ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
"ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "js/site.js",
"AssetKind": "All",
@ -635,7 +635,7 @@
"AssetTraitValue": "",
"CopyToOutputDirectory": "Never",
"CopyToPublishDirectory": "PreserveNewest",
"OriginalItemSpec": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\js\\site.js"
"OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/site.js"
}
]
}

File diff suppressed because one or more lines are too long

View file

@ -1,3 +1,3 @@
<Project>
<Import Project="..\build\BMA.EHR.Recruit.Service.props" />
<Import Project="../build/BMA.EHR.Recruit.Service.props" />
</Project>

View file

@ -1,3 +1,3 @@
<Project>
<Import Project="..\buildMultiTargeting\BMA.EHR.Recruit.Service.props" />
<Import Project="../buildMultiTargeting/BMA.EHR.Recruit.Service.props" />
</Project>

View file

@ -13734,45 +13734,26 @@
]
},
"packageFolders": {
"C:\\Users\\suphonchai\\.nuget\\packages\\": {},
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {}
"/Users/suphonchai/.nuget/packages/": {}
},
"project": {
"version": "1.0.0",
"restore": {
<<<<<<< HEAD
"projectUniqueName": "D:\\Develop\\Source\\BMA-EHR-Recruit-Service\\BMA.EHR.Recruit.Service.csproj",
"projectName": "BMA.EHR.Recruit.Service",
"projectPath": "D:\\Develop\\Source\\BMA-EHR-Recruit-Service\\BMA.EHR.Recruit.Service.csproj",
"packagesPath": "C:\\Users\\suphonchai\\.nuget\\packages\\",
"outputPath": "D:\\Develop\\Source\\BMA-EHR-Recruit-Service\\obj\\",
=======
"projectUniqueName": "/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/BMA.EHR.Recruit.Service.csproj",
"projectName": "BMA.EHR.Recruit.Service",
"projectPath": "/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/BMA.EHR.Recruit.Service.csproj",
"packagesPath": "/Users/suphonchai/.nuget/packages/",
"outputPath": "/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/obj/",
>>>>>>> develop
"projectStyle": "PackageReference",
"fallbackFolders": [
"C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
],
"configFilePaths": [
<<<<<<< HEAD
"D:\\Develop\\Source\\BMA-EHR-Recruit-Service\\NuGet.Config",
"C:\\Users\\suphonchai\\AppData\\Roaming\\NuGet\\NuGet.Config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config",
"C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config"
=======
"/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/NuGet.Config",
"/Users/suphonchai/.nuget/NuGet/NuGet.Config"
>>>>>>> develop
],
"originalTargetFrameworks": [
"net7.0"
],
"sources": {
"C:\\Program Files\\dotnet\\library-packs": {},
"/usr/local/share/dotnet/library-packs": {},
"https://api.nuget.org/v3/index.json": {},
"https://nuget.frappet.synology.me/v3/index.json": {}
},
@ -13934,11 +13915,7 @@
"privateAssets": "all"
}
},
<<<<<<< HEAD
"runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.202\\RuntimeIdentifierGraph.json"
=======
"runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.202/RuntimeIdentifierGraph.json"
>>>>>>> develop
}
}
}

View file

@ -1,300 +1,5 @@
{
"version": 2,
<<<<<<< HEAD
"dgSpecHash": "FBthSi4+DJKeMyzQ12BW7wOCeou1PKtPm3fg9K5SRig71iqA0ypcMa4YIhXalNsa+ArK/Uytjp8oWYJPe4ME/g==",
"success": true,
"projectFilePath": "D:\\Develop\\Source\\BMA-EHR-Recruit-Service\\BMA.EHR.Recruit.Service.csproj",
"expectedPackageFiles": [
"C:\\Users\\suphonchai\\.nuget\\packages\\awssdk.core\\3.7.100.14\\awssdk.core.3.7.100.14.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\awssdk.securitytoken\\3.7.100.14\\awssdk.securitytoken.3.7.100.14.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\azure.core\\1.24.0\\azure.core.1.24.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\azure.identity\\1.6.0\\azure.identity.1.6.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\bma.ehr.core\\1.0.0\\bma.ehr.core.1.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\bma.ehr.extensions\\1.0.1\\bma.ehr.extensions.1.0.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\bouncycastle.netcore\\1.8.5\\bouncycastle.netcore.1.8.5.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\coreadmin.2.7.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\dapper\\2.0.123\\dapper.2.0.123.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\dnsclient\\1.6.1\\dnsclient.1.6.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\elasticsearch.net\\7.17.5\\elasticsearch.net.7.17.5.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\epplus\\6.1.3\\epplus.6.1.3.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\epplus.interfaces\\6.1.1\\epplus.interfaces.6.1.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\epplus.system.drawing\\6.1.1\\epplus.system.drawing.6.1.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\google.protobuf\\3.19.4\\google.protobuf.3.19.4.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\k4os.compression.lz4\\1.2.6\\k4os.compression.lz4.1.2.6.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\k4os.compression.lz4.streams\\1.2.6\\k4os.compression.lz4.streams.1.2.6.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\k4os.hash.xxhash\\1.0.6\\k4os.hash.xxhash.1.0.6.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\litedb\\5.0.11\\litedb.5.0.11.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.antiforgery\\2.2.0\\microsoft.aspnetcore.antiforgery.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.authentication.abstractions\\2.2.0\\microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.authentication.core\\2.2.0\\microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\7.0.3\\microsoft.aspnetcore.authentication.jwtbearer.7.0.3.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.authorization\\2.2.0\\microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.authorization.policy\\2.2.0\\microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.connections.abstractions\\2.2.0\\microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.cors\\2.2.0\\microsoft.aspnetcore.cors.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.cryptography.internal\\2.2.0\\microsoft.aspnetcore.cryptography.internal.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.dataprotection\\2.2.0\\microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.dataprotection.abstractions\\2.2.0\\microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.diagnostics.abstractions\\2.2.0\\microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.hosting.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.hosting.server.abstractions\\2.2.0\\microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.html.abstractions\\2.2.0\\microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.http\\2.2.2\\microsoft.aspnetcore.http.2.2.2.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.http.abstractions\\2.2.0\\microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.http.connections\\1.1.0\\microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.http.connections.common\\1.1.0\\microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.http.extensions\\2.2.0\\microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.http.features\\2.2.0\\microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.jsonpatch\\7.0.3\\microsoft.aspnetcore.jsonpatch.7.0.3.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.localization\\2.2.0\\microsoft.aspnetcore.localization.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.mvc\\2.2.0\\microsoft.aspnetcore.mvc.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.mvc.abstractions\\2.2.0\\microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.mvc.analyzers\\2.2.0\\microsoft.aspnetcore.mvc.analyzers.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.mvc.apiexplorer\\2.2.0\\microsoft.aspnetcore.mvc.apiexplorer.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.mvc.core\\2.2.0\\microsoft.aspnetcore.mvc.core.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.mvc.cors\\2.2.0\\microsoft.aspnetcore.mvc.cors.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.mvc.dataannotations\\2.2.0\\microsoft.aspnetcore.mvc.dataannotations.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.mvc.formatters.json\\2.2.0\\microsoft.aspnetcore.mvc.formatters.json.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.mvc.localization\\2.2.0\\microsoft.aspnetcore.mvc.localization.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.mvc.newtonsoftjson\\7.0.3\\microsoft.aspnetcore.mvc.newtonsoftjson.7.0.3.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor\\2.2.0\\microsoft.aspnetcore.mvc.razor.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.mvc.razor.extensions\\2.2.0\\microsoft.aspnetcore.mvc.razor.extensions.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.mvc.razorpages\\2.2.0\\microsoft.aspnetcore.mvc.razorpages.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.mvc.taghelpers\\2.2.0\\microsoft.aspnetcore.mvc.taghelpers.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.mvc.versioning\\5.0.0\\microsoft.aspnetcore.mvc.versioning.5.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.mvc.versioning.apiexplorer\\5.0.0\\microsoft.aspnetcore.mvc.versioning.apiexplorer.5.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.mvc.viewfeatures\\2.2.0\\microsoft.aspnetcore.mvc.viewfeatures.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.openapi\\7.0.3\\microsoft.aspnetcore.openapi.7.0.3.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.razor\\2.2.0\\microsoft.aspnetcore.razor.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.razor.design\\2.2.0\\microsoft.aspnetcore.razor.design.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\2.2.0\\microsoft.aspnetcore.razor.language.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.razor.runtime\\2.2.0\\microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.responsecaching.abstractions\\2.2.0\\microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.routing\\2.2.0\\microsoft.aspnetcore.routing.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.routing.abstractions\\2.2.0\\microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.signalr\\1.1.0\\microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.signalr.common\\1.1.0\\microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.signalr.core\\1.1.0\\microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.signalr.protocols.json\\1.1.0\\microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.staticfiles\\2.2.0\\microsoft.aspnetcore.staticfiles.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.websockets\\2.2.0\\microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.aspnetcore.webutilities\\2.2.0\\microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\1.1.1\\microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\1.1.0\\microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.codeanalysis.common\\2.8.0\\microsoft.codeanalysis.common.2.8.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.codeanalysis.csharp\\2.8.0\\microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.codeanalysis.razor\\2.2.0\\microsoft.codeanalysis.razor.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.csharp\\4.7.0\\microsoft.csharp.4.7.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.data.sqlclient\\5.0.1\\microsoft.data.sqlclient.5.0.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.0.1\\microsoft.data.sqlclient.sni.runtime.5.0.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.entityframeworkcore\\7.0.3\\microsoft.entityframeworkcore.7.0.3.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\7.0.3\\microsoft.entityframeworkcore.abstractions.7.0.3.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\7.0.3\\microsoft.entityframeworkcore.analyzers.7.0.3.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.entityframeworkcore.design\\7.0.3\\microsoft.entityframeworkcore.design.7.0.3.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\7.0.3\\microsoft.entityframeworkcore.relational.7.0.3.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.entityframeworkcore.relational.design\\1.1.1\\microsoft.entityframeworkcore.relational.design.1.1.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\7.0.3\\microsoft.entityframeworkcore.sqlserver.7.0.3.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\7.0.3\\microsoft.entityframeworkcore.tools.7.0.3.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\7.0.0\\microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.caching.memory\\7.0.0\\microsoft.extensions.caching.memory.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.configuration\\7.0.0\\microsoft.extensions.configuration.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\7.0.0\\microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.configuration.binder\\6.0.0\\microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.configuration.fileextensions\\7.0.0\\microsoft.extensions.configuration.fileextensions.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.configuration.json\\7.0.0\\microsoft.extensions.configuration.json.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\7.0.0\\microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\7.0.0\\microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.dependencymodel\\7.0.0\\microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.fileproviders.abstractions\\7.0.0\\microsoft.extensions.fileproviders.abstractions.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.fileproviders.composite\\2.2.0\\microsoft.extensions.fileproviders.composite.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.fileproviders.embedded\\3.1.22\\microsoft.extensions.fileproviders.embedded.3.1.22.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.fileproviders.physical\\7.0.0\\microsoft.extensions.fileproviders.physical.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.filesystemglobbing\\7.0.0\\microsoft.extensions.filesystemglobbing.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.hosting.abstractions\\3.1.8\\microsoft.extensions.hosting.abstractions.3.1.8.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.http\\6.0.0\\microsoft.extensions.http.6.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.localization\\2.2.0\\microsoft.extensions.localization.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.localization.abstractions\\2.2.0\\microsoft.extensions.localization.abstractions.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.logging\\7.0.0\\microsoft.extensions.logging.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\7.0.0\\microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.logging.configuration\\6.0.0\\microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.logging.console\\1.1.1\\microsoft.extensions.logging.console.1.1.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.objectpool\\2.2.0\\microsoft.extensions.objectpool.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.options\\7.0.0\\microsoft.extensions.options.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.options.configurationextensions\\6.0.0\\microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.primitives\\7.0.0\\microsoft.extensions.primitives.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.extensions.webencoders\\2.2.0\\microsoft.extensions.webencoders.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.identity.client\\4.45.0\\microsoft.identity.client.4.45.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\2.19.3\\microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.identitymodel.abstractions\\6.21.0\\microsoft.identitymodel.abstractions.6.21.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.21.0\\microsoft.identitymodel.jsonwebtokens.6.21.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.identitymodel.logging\\6.21.0\\microsoft.identitymodel.logging.6.21.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.21.0\\microsoft.identitymodel.protocols.6.21.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.21.0\\microsoft.identitymodel.protocols.openidconnect.6.21.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.21.0\\microsoft.identitymodel.tokens.6.21.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.io.recyclablememorystream\\2.2.1\\microsoft.io.recyclablememorystream.2.2.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.net.http.headers\\2.2.0\\microsoft.net.http.headers.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.netcore.targets\\1.1.0\\microsoft.netcore.targets.1.1.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.openapi\\1.4.3\\microsoft.openapi.1.4.3.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.17.0\\microsoft.visualstudio.azure.containers.tools.targets.1.17.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.win32.primitives\\4.3.0\\microsoft.win32.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.win32.registry\\5.0.0\\microsoft.win32.registry.5.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\microsoft.win32.systemevents\\7.0.0\\microsoft.win32.systemevents.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\mongodb.bson\\2.19.0\\mongodb.bson.2.19.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\mongodb.driver\\2.19.0\\mongodb.driver.2.19.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\mongodb.driver.core\\2.19.0\\mongodb.driver.core.2.19.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\mongodb.driver.gridfs\\2.19.0\\mongodb.driver.gridfs.2.19.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\mongodb.libmongocrypt\\1.7.0\\mongodb.libmongocrypt.1.7.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\mono.texttemplating\\2.2.1\\mono.texttemplating.2.2.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\mysql.data\\8.0.29\\mysql.data.8.0.29.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\mysqlconnector\\2.2.5\\mysqlconnector.2.2.5.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\netstandard.library\\1.6.1\\netstandard.library.1.6.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\newtonsoft.json.bson\\1.0.2\\newtonsoft.json.bson.1.0.2.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\nonfactors.grid.core.mvc6\\7.1.0\\nonfactors.grid.core.mvc6.7.1.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\npgsql\\6.0.4\\npgsql.6.0.4.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\pomelo.entityframeworkcore.mysql\\7.0.0\\pomelo.entityframeworkcore.mysql.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\pomelo.entityframeworkcore.mysql.design\\1.1.2\\pomelo.entityframeworkcore.mysql.design.1.1.2.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.debian.8-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.23-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.fedora.24-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.native.system\\4.3.0\\runtime.native.system.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.native.system.data.sqlclient.sni\\4.7.0\\runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.native.system.io.compression\\4.3.0\\runtime.native.system.io.compression.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.native.system.net.http\\4.3.0\\runtime.native.system.net.http.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.13.2-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.opensuse.42.1-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.osx.10.10-x64.corecompat.system.drawing\\6.0.5.128\\runtime.osx.10.10-x64.corecompat.system.drawing.6.0.5.128.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.osx.10.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.rhel.7-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.14.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.04-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl\\4.3.0\\runtime.ubuntu.16.10-x64.runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-arm64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.win-x64.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x64.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\runtime.win-x86.runtime.native.system.data.sqlclient.sni\\4.4.0\\runtime.win-x86.runtime.native.system.data.sqlclient.sni.4.4.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\sentry\\3.29.1\\sentry.3.29.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\sentry.aspnetcore\\3.29.1\\sentry.aspnetcore.3.29.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\sentry.extensions.logging\\3.29.1\\sentry.extensions.logging.3.29.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\serilog\\2.12.0\\serilog.2.12.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\serilog.aspnetcore\\6.1.0\\serilog.aspnetcore.6.1.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\serilog.enrichers.environment\\2.2.0\\serilog.enrichers.environment.2.2.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\serilog.exceptions\\8.4.0\\serilog.exceptions.8.4.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\serilog.extensions.hosting\\5.0.1\\serilog.extensions.hosting.5.0.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\serilog.extensions.logging\\3.1.0\\serilog.extensions.logging.3.1.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\serilog.formatting.compact\\1.1.0\\serilog.formatting.compact.1.1.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\serilog.formatting.elasticsearch\\9.0.0\\serilog.formatting.elasticsearch.9.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\serilog.settings.configuration\\3.3.0\\serilog.settings.configuration.3.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\serilog.sinks.console\\4.1.0\\serilog.sinks.console.4.1.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\serilog.sinks.debug\\2.0.0\\serilog.sinks.debug.2.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\serilog.sinks.elasticsearch\\9.0.0\\serilog.sinks.elasticsearch.9.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\serilog.sinks.file\\5.0.0\\serilog.sinks.file.5.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\serilog.sinks.periodicbatching\\3.1.0\\serilog.sinks.periodicbatching.3.1.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\sharpcompress\\0.30.1\\sharpcompress.0.30.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\snappier\\1.0.0\\snappier.1.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\swashbuckle.aspnetcore\\6.5.0\\swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\swashbuckle.aspnetcore.annotations\\6.5.0\\swashbuckle.aspnetcore.annotations.6.5.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.5.0\\swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.5.0\\swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.5.0\\swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.appcontext\\4.3.0\\system.appcontext.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.buffers\\4.5.1\\system.buffers.4.5.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.codedom\\4.4.0\\system.codedom.4.4.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.collections\\4.3.0\\system.collections.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.collections.concurrent\\4.3.0\\system.collections.concurrent.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.collections.immutable\\1.3.1\\system.collections.immutable.1.3.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.componentmodel.annotations\\4.5.0\\system.componentmodel.annotations.4.5.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.configuration.configurationmanager\\5.0.0\\system.configuration.configurationmanager.5.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.console\\4.3.0\\system.console.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.data.sqlclient\\4.8.5\\system.data.sqlclient.4.8.5.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.diagnostics.debug\\4.3.0\\system.diagnostics.debug.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.0\\system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.diagnostics.fileversioninfo\\4.3.0\\system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.diagnostics.stacktrace\\4.3.0\\system.diagnostics.stacktrace.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.diagnostics.tools\\4.3.0\\system.diagnostics.tools.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.diagnostics.tracing\\4.3.0\\system.diagnostics.tracing.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.drawing.common\\7.0.0\\system.drawing.common.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.dynamic.runtime\\4.3.0\\system.dynamic.runtime.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.formats.asn1\\7.0.0\\system.formats.asn1.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.globalization\\4.3.0\\system.globalization.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.globalization.calendars\\4.3.0\\system.globalization.calendars.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.globalization.extensions\\4.3.0\\system.globalization.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.21.0\\system.identitymodel.tokens.jwt.6.21.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.io\\4.3.0\\system.io.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.io.compression\\4.3.0\\system.io.compression.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.io.compression.zipfile\\4.3.0\\system.io.compression.zipfile.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.io.filesystem\\4.3.0\\system.io.filesystem.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.io.filesystem.primitives\\4.3.0\\system.io.filesystem.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.io.pipelines\\4.5.2\\system.io.pipelines.4.5.2.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.linq\\4.3.0\\system.linq.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.linq.expressions\\4.3.0\\system.linq.expressions.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.net.http\\4.3.0\\system.net.http.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.net.primitives\\4.3.0\\system.net.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.net.sockets\\4.3.0\\system.net.sockets.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.net.websockets.websocketprotocol\\4.5.1\\system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.objectmodel\\4.3.0\\system.objectmodel.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.reflection\\4.3.0\\system.reflection.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.reflection.emit\\4.3.0\\system.reflection.emit.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.reflection.emit.ilgeneration\\4.3.0\\system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.reflection.emit.lightweight\\4.3.0\\system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.reflection.extensions\\4.3.0\\system.reflection.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.reflection.metadata\\1.4.2\\system.reflection.metadata.1.4.2.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.reflection.primitives\\4.3.0\\system.reflection.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.reflection.typeextensions\\4.7.0\\system.reflection.typeextensions.4.7.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.resources.resourcemanager\\4.3.0\\system.resources.resourcemanager.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.runtime\\4.3.0\\system.runtime.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.runtime.caching\\5.0.0\\system.runtime.caching.5.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.runtime.extensions\\4.3.0\\system.runtime.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.runtime.handles\\4.3.0\\system.runtime.handles.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.runtime.interopservices\\4.3.0\\system.runtime.interopservices.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.runtime.interopservices.runtimeinformation\\4.3.0\\system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.runtime.numerics\\4.3.0\\system.runtime.numerics.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.security.cryptography.algorithms\\4.3.0\\system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.security.cryptography.csp\\4.3.0\\system.security.cryptography.csp.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.security.cryptography.encoding\\4.3.0\\system.security.cryptography.encoding.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.security.cryptography.openssl\\4.3.0\\system.security.cryptography.openssl.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.security.cryptography.pkcs\\7.0.0\\system.security.cryptography.pkcs.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.security.cryptography.primitives\\4.3.0\\system.security.cryptography.primitives.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.security.cryptography.protecteddata\\5.0.0\\system.security.cryptography.protecteddata.5.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.security.cryptography.x509certificates\\4.3.0\\system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.security.cryptography.xml\\4.5.0\\system.security.cryptography.xml.4.5.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.security.permissions\\5.0.0\\system.security.permissions.5.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.text.encoding\\4.3.0\\system.text.encoding.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.text.encoding.codepages\\7.0.0\\system.text.encoding.codepages.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.text.encoding.extensions\\4.3.0\\system.text.encoding.extensions.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.text.encodings.web\\7.0.0\\system.text.encodings.web.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.text.json\\7.0.0\\system.text.json.7.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.text.regularexpressions\\4.3.0\\system.text.regularexpressions.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.threading\\4.3.0\\system.threading.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.threading.channels\\4.5.0\\system.threading.channels.4.5.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.threading.tasks\\4.3.0\\system.threading.tasks.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.threading.tasks.parallel\\4.3.0\\system.threading.tasks.parallel.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.threading.thread\\4.3.0\\system.threading.thread.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.threading.timer\\4.3.0\\system.threading.timer.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.valuetuple\\4.3.0\\system.valuetuple.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.windows.extensions\\5.0.0\\system.windows.extensions.5.0.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.xml.readerwriter\\4.3.0\\system.xml.readerwriter.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.xml.xdocument\\4.3.0\\system.xml.xdocument.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.xml.xmldocument\\4.3.0\\system.xml.xmldocument.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.xml.xpath\\4.3.0\\system.xml.xpath.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\system.xml.xpath.xdocument\\4.3.0\\system.xml.xpath.xdocument.4.3.0.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\watchdog.net\\1.4.6\\watchdog.net.1.4.6.nupkg.sha512",
"C:\\Users\\suphonchai\\.nuget\\packages\\zstdsharp.port\\0.6.2\\zstdsharp.port.0.6.2.nupkg.sha512"
=======
"dgSpecHash": "HmVlCZn6DaaMNXKw8/ln+awAM40Q3hQuqqrKPLLBFwfj788Aa4PSlh67nF5A3m7Kzs8reh8WEFCHfgZT2lg5LQ==",
"success": true,
"projectFilePath": "/Users/suphonchai/Develop/Source/BMA-EHR/BMA-EHR-Recruit-Service/BMA.EHR.Recruit.Service.csproj",
@ -589,7 +294,6 @@
"/Users/suphonchai/.nuget/packages/system.xml.xpath.xdocument/4.3.0/system.xml.xpath.xdocument.4.3.0.nupkg.sha512",
"/Users/suphonchai/.nuget/packages/watchdog.net/1.4.6/watchdog.net.1.4.6.nupkg.sha512",
"/Users/suphonchai/.nuget/packages/zstdsharp.port/0.6.2/zstdsharp.port.0.6.2.nupkg.sha512"
>>>>>>> develop
],
"logs": []
}