diff --git a/BMA.EHR.Recruit.Service.csproj b/BMA.EHR.Recruit.Service.csproj
index 932cd52..848c283 100644
--- a/BMA.EHR.Recruit.Service.csproj
+++ b/BMA.EHR.Recruit.Service.csproj
@@ -7,6 +7,7 @@
d45c95ce-6b9d-4aa7-aaaf-62fe8b792934
Linux
True
+ BMA.EHR.Recruit.Service
diff --git a/Controllers/BaseController.cs b/Controllers/BaseController.cs
new file mode 100644
index 0000000..18eb70f
--- /dev/null
+++ b/Controllers/BaseController.cs
@@ -0,0 +1,73 @@
+using BMA.EHR.Core;
+using BMA.EHR.Recruit.Service.Responses;
+using BMA.EHR.Recruit.Service.Services;
+using Microsoft.AspNetCore.Http;
+using Microsoft.AspNetCore.Mvc;
+using System.Net;
+
+namespace BMA.EHR.Recruit.Service.Controllers
+{
+ public class BaseController : ControllerBase
+ {
+ #region " Methods "
+
+ #region " Protected "
+
+ #region " IActionResult "
+
+ protected virtual ActionResult Success(string message, object? result = null)
+ {
+ if (result != null)
+ {
+ return Ok(new ResponseObject
+ {
+ Status = StatusCodes.Status200OK,
+ Message = message,
+ Result = result
+ });
+ }
+ else
+ {
+ return Ok(new ResponseObject
+ {
+ Status = StatusCodes.Status200OK,
+ Message = message
+ });
+ }
+
+ }
+
+ protected virtual ActionResult Success(object? result = null)
+ {
+ return Success(GlobalMessages.Success, result);
+ }
+
+ protected virtual ActionResult Error(string message, int statusCode = StatusCodes.Status500InternalServerError)
+ {
+ return StatusCode((int)statusCode, new ResponseObject
+ {
+ Status = statusCode,
+ Message = message
+ });
+ }
+
+ protected virtual ActionResult Error(Exception exception, int statusCode = StatusCodes.Status500InternalServerError)
+ {
+ var msg = exception.Message;
+ var inner = exception.InnerException;
+ while (inner != null)
+ {
+ msg += $" {inner.Message}\r\n";
+ inner = inner.InnerException;
+ }
+
+ return Error(msg, statusCode);
+ }
+
+ #endregion
+
+ #endregion
+
+ #endregion
+ }
+}
diff --git a/Controllers/RecruitController.cs b/Controllers/RecruitController.cs
new file mode 100644
index 0000000..263c301
--- /dev/null
+++ b/Controllers/RecruitController.cs
@@ -0,0 +1,57 @@
+using BMA.EHR.Recruit.Service.Responses;
+using BMA.EHR.Recruit.Service.Services;
+using Microsoft.AspNetCore.Authorization;
+using Microsoft.AspNetCore.Mvc;
+using Swashbuckle.AspNetCore.Annotations;
+using BMA.EHR.Recruit.Service.Data;
+
+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 "
+
+ private readonly ApplicationDbContext _context;
+ private readonly DocumentService _documentService;
+ private readonly IWebHostEnvironment _webHostEnvironment;
+ private readonly RecruitService _recruitService;
+
+ #endregion
+
+ #region " Constructor and Destructor "
+
+ public RecruitController(ApplicationDbContext context,
+ DocumentService documentService,
+ IWebHostEnvironment webHostEnvironment,
+ RecruitService recruitService)
+ {
+ _context = context;
+ _documentService = documentService;
+ _webHostEnvironment = webHostEnvironment;
+ _recruitService = recruitService;
+ }
+
+ #endregion
+
+ #region " Methods "
+
+ #region " จัดการรอบการสมัครสอบแข่งขัน "
+
+
+ #endregion
+
+ [HttpGet]
+ public async Task> GetsAsync()
+ {
+ return Success("OK");
+ }
+
+ #endregion
+ }
+}
\ No newline at end of file
diff --git a/Program.cs b/Program.cs
index 4e61f7d..de4c0db 100644
--- a/Program.cs
+++ b/Program.cs
@@ -27,18 +27,18 @@ builder.Services.AddHttpContextAccessor();
builder.Services.AddApiVersioning(opt =>
{
- opt.DefaultApiVersion = new ApiVersion(1, 0);
- opt.AssumeDefaultVersionWhenUnspecified = true;
- opt.ReportApiVersions = true;
- opt.ApiVersionReader = ApiVersionReader.Combine(new UrlSegmentApiVersionReader(),
- new HeaderApiVersionReader("x-api-version"),
- new MediaTypeApiVersionReader("x-api-version"));
+ opt.DefaultApiVersion = new ApiVersion(1, 0);
+ opt.AssumeDefaultVersionWhenUnspecified = true;
+ opt.ReportApiVersions = true;
+ opt.ApiVersionReader = ApiVersionReader.Combine(new UrlSegmentApiVersionReader(),
+ new HeaderApiVersionReader("x-api-version"),
+ new MediaTypeApiVersionReader("x-api-version"));
});
builder.Services.AddVersionedApiExplorer(setup =>
{
- setup.GroupNameFormat = "'v'VVV";
- setup.SubstituteApiVersionInUrl = true;
+ setup.GroupNameFormat = "'v'VVV";
+ setup.SubstituteApiVersionInUrl = true;
});
builder.Services.AddEndpointsApiExplorer();
@@ -46,20 +46,25 @@ builder.Services.AddEndpointsApiExplorer();
// Authorization
builder.Services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme).AddJwtBearer(opt =>
{
- opt.RequireHttpsMetadata = false; //false for dev
- opt.Authority = issuer;
- opt.TokenValidationParameters = new()
- {
- ValidateIssuer = true,
- ValidateAudience = false,
- ValidateLifetime = true,
- ValidateIssuerSigningKey = true,
- ValidIssuer = issuer,
- IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(key))
- };
+ opt.RequireHttpsMetadata = false; //false for dev
+ opt.Authority = issuer;
+ opt.TokenValidationParameters = new()
+ {
+ ValidateIssuer = true,
+ ValidateAudience = false,
+ ValidateLifetime = true,
+ ValidateIssuerSigningKey = true,
+ ValidIssuer = issuer,
+ IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(key))
+ };
});
builder.Services.AddAuthorization();
+// Register Services
+builder.Services.AddTransient();
+builder.Services.AddTransient();
+
+
// use serilog
ConfigureLogs();
builder.Host.UseSerilog();
@@ -70,23 +75,23 @@ BsonSerializer.RegisterSerializer(new DateTimeSerializer(BsonType.String));
// Register DbContext
var defaultConnection = builder.Configuration.GetConnectionString("DefaultConnection");
builder.Services.AddDbContext(options =>
- options.UseMySql(defaultConnection, ServerVersion.AutoDetect(defaultConnection)));
+ options.UseMySql(defaultConnection, ServerVersion.AutoDetect(defaultConnection)));
// Add config CORS
builder.Services.AddCors(options => options.AddDefaultPolicy(builder =>
{
- builder
- .AllowAnyOrigin()
- //.WithOrigins("http://localhost:8000")
- .AllowAnyMethod()
- .AllowAnyHeader()
- .SetIsOriginAllowedToAllowWildcardSubdomains();
+ builder
+ .AllowAnyOrigin()
+ //.WithOrigins("http://localhost:8000")
+ .AllowAnyMethod()
+ .AllowAnyHeader()
+ .SetIsOriginAllowedToAllowWildcardSubdomains();
}));
// Add services to the container.
builder.Services.AddControllers(options =>
{
- options.SuppressAsyncSuffixInActionNames = false;
+ options.SuppressAsyncSuffixInActionNames = false;
})
.AddNewtonsoftJson(x => x.SerializerSettings.ReferenceLoopHandling = Newtonsoft.Json.ReferenceLoopHandling.Ignore);
@@ -102,15 +107,15 @@ var apiVersionDescriptionProvider = app.Services.GetRequiredService
- {
- foreach (var description in apiVersionDescriptionProvider.ApiVersionDescriptions)
- {
- options.SwaggerEndpoint($"/swagger/{description.GroupName}/swagger.json",
- description.GroupName.ToUpperInvariant());
- }
- });
+ app.UseSwagger();
+ app.UseSwaggerUI(options =>
+ {
+ foreach (var description in apiVersionDescriptionProvider.ApiVersionDescriptions)
+ {
+ options.SwaggerEndpoint($"/swagger/{description.GroupName}/swagger.json",
+ description.GroupName.ToUpperInvariant());
+ }
+ });
}
app.MapHealthChecks("/health");
@@ -134,32 +139,32 @@ app.Run();
void ConfigureLogs()
{
- var environment = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT");
- var configuration = new ConfigurationBuilder()
- .AddJsonFile("appsettings.json", optional: false, reloadOnChange: true)
- .AddJsonFile(
- $"appsettings.{Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT")}.json",
- optional: true)
- .Build();
+ var environment = Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT");
+ var configuration = new ConfigurationBuilder()
+ .AddJsonFile("appsettings.json", optional: false, reloadOnChange: true)
+ .AddJsonFile(
+ $"appsettings.{Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT")}.json",
+ optional: true)
+ .Build();
- Log.Logger = new LoggerConfiguration()
- .Enrich.FromLogContext()
- // .WriteTo.Debug()
- .MinimumLevel.Error()
- .WriteTo.Console()
- .Enrich.WithExceptionDetails()
- // .Enrich.WithEnvironmentUserName()
- .WriteTo.Elasticsearch(ConfigureElasticSink(configuration, environment ?? ""))
- .Enrich.WithProperty("Environment", environment)
- .ReadFrom.Configuration(configuration)
- .CreateLogger();
+ Log.Logger = new LoggerConfiguration()
+ .Enrich.FromLogContext()
+ // .WriteTo.Debug()
+ .MinimumLevel.Error()
+ .WriteTo.Console()
+ .Enrich.WithExceptionDetails()
+ // .Enrich.WithEnvironmentUserName()
+ .WriteTo.Elasticsearch(ConfigureElasticSink(configuration, environment ?? ""))
+ .Enrich.WithProperty("Environment", environment)
+ .ReadFrom.Configuration(configuration)
+ .CreateLogger();
}
ElasticsearchSinkOptions ConfigureElasticSink(IConfigurationRoot configuration, string environment)
{
- return new ElasticsearchSinkOptions(new Uri(configuration["ElasticConfiguration:Uri"] ?? ""))
- {
- AutoRegisterTemplate = true,
- IndexFormat = $"{Assembly.GetExecutingAssembly()?.GetName()?.Name?.ToLower().Replace(".", "-")}-{environment?.ToLower().Replace(".", "-")}"
- };
+ return new ElasticsearchSinkOptions(new Uri(configuration["ElasticConfiguration:Uri"] ?? ""))
+ {
+ AutoRegisterTemplate = true,
+ IndexFormat = $"{Assembly.GetExecutingAssembly()?.GetName()?.Name?.ToLower().Replace(".", "-")}-{environment?.ToLower().Replace(".", "-")}"
+ };
}
diff --git a/Responses/ResponseObject.cs b/Responses/ResponseObject.cs
new file mode 100644
index 0000000..7633d3f
--- /dev/null
+++ b/Responses/ResponseObject.cs
@@ -0,0 +1,13 @@
+using System.Net;
+
+namespace BMA.EHR.Recruit.Service.Responses
+{
+ public class ResponseObject
+ {
+ public int Status { get; set; }
+
+ public string? Message { get; set; }
+
+ public object? Result { get; set; }
+ }
+}
diff --git a/Services/RecruitService.cs b/Services/RecruitService.cs
new file mode 100644
index 0000000..944c73a
--- /dev/null
+++ b/Services/RecruitService.cs
@@ -0,0 +1,49 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Threading.Tasks;
+using Microsoft.EntityFrameworkCore;
+using BMA.EHR.Recruit.Service.Data;
+using BMA.EHR.Recruit.Service.Models.Recruits;
+
+namespace BMA.EHR.Recruit.Service.Services
+{
+ public class RecruitService
+ {
+ private readonly ApplicationDbContext _context;
+
+ public RecruitService(ApplicationDbContext context)
+ {
+ _context = context;
+ }
+
+ public async Task GetExamAttributeAsync(Guid period, Guid exam)
+ {
+ try
+ {
+ var payment = await _context.RecruitPayments.AsQueryable()
+ .Include(x => x.Recruit)
+ .ThenInclude(x => x.RecruitImport)
+ .Where(x => x.Recruit.Id == exam)
+ .Where(x => x.Recruit.RecruitImport.Id == period)
+ .FirstOrDefaultAsync();
+
+ return payment != null ? "มีคุณสมบัติ" : "ไม่มีคุณสมบัติ";
+ }
+ catch
+ {
+ throw;
+ }
+ }
+
+ public bool CheckValidCertificate(DateTime certDate, int nextYear = 5)
+ {
+ var valid = true;
+ if (DateTime.Now.Date > certDate.Date.AddYears(nextYear))
+ valid = false;
+
+ return valid;
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/bin/Debug/net7.0/AWSSDK.Core.dll b/bin/Debug/net7.0/AWSSDK.Core.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/AWSSDK.SecurityToken.dll b/bin/Debug/net7.0/AWSSDK.SecurityToken.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Azure.Core.dll b/bin/Debug/net7.0/Azure.Core.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Azure.Identity.dll b/bin/Debug/net7.0/Azure.Identity.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/BMA.EHR.Core.dll b/bin/Debug/net7.0/BMA.EHR.Core.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/BMA.EHR.Extensions.dll b/bin/Debug/net7.0/BMA.EHR.Extensions.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json
index eb941c0..20dbe72 100644
--- a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json
+++ b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.deps.json
@@ -809,22 +809,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"
}
}
},
@@ -1642,7 +1642,7 @@
"runtimes/win-arm64/native/sni.dll": {
"rid": "win-arm64",
"assetType": "native",
- "fileVersion": "4.6.25512.1"
+ "fileVersion": "0.0.0.0"
}
}
},
@@ -1651,7 +1651,7 @@
"runtimes/win-x64/native/sni.dll": {
"rid": "win-x64",
"assetType": "native",
- "fileVersion": "4.6.25512.1"
+ "fileVersion": "0.0.0.0"
}
}
},
@@ -1660,7 +1660,7 @@
"runtimes/win-x86/native/sni.dll": {
"rid": "win-x86",
"assetType": "native",
- "fileVersion": "4.6.25512.1"
+ "fileVersion": "0.0.0.0"
}
}
},
diff --git a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll
index 2923920..80c9e0e 100644
Binary files a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll and b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.dll differ
diff --git a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.pdb b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.pdb
index cdb3204..363661b 100644
Binary files a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.pdb and b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.pdb differ
diff --git a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.staticwebassets.runtime.json b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.staticwebassets.runtime.json
index 0a266b6..82dd569 100644
--- a/bin/Debug/net7.0/BMA.EHR.Recruit.Service.staticwebassets.runtime.json
+++ b/bin/Debug/net7.0/BMA.EHR.Recruit.Service.staticwebassets.runtime.json
@@ -1 +1 @@
-{"ContentRoots":["C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\"],"Root":{"Children":{"_content":{"Children":{"CoreAdmin":{"Children":{"css":{"Children":{"bootstrap-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-dark.css"},"Patterns":null},"bootstrap-dark.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-dark.min.css"},"Patterns":null},"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css.map"},"Patterns":null},"easymde":{"Children":{"easymde-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde-dark.css"},"Patterns":null},"easymde-dark.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde-dark.min.css"},"Patterns":null},"easymde.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde.css"},"Patterns":null},"easymde.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/jquery-ui.min.css"},"Patterns":null},"mvc-grid":{"Children":{"fonts":{"Children":{"grid-glyphs.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/fonts/grid-glyphs.woff"},"Patterns":null}},"Asset":null,"Patterns":null},"mvc-grid-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/mvc-grid-dark.css"},"Patterns":null},"mvc-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/mvc-grid.css"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/additional-methods.min.js"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/bootstrap.min.js"},"Patterns":null},"easymde":{"Children":{"easymde.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/easymde/easymde.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery-ui.min.js"},"Patterns":null},"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.min.map"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.js"},"Patterns":null},"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.unobtrusive.min.js"},"Patterns":null},"mvc-grid":{"Children":{"mvc-grid.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/mvc-grid/mvc-grid.js"},"Patterns":null}},"Asset":null,"Patterns":null},"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}}
\ No newline at end of file
+{"ContentRoots":["/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/"],"Root":{"Children":{"_content":{"Children":{"CoreAdmin":{"Children":{"css":{"Children":{"bootstrap-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-dark.css"},"Patterns":null},"bootstrap-dark.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-dark.min.css"},"Patterns":null},"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css.map"},"Patterns":null},"easymde":{"Children":{"easymde-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde-dark.css"},"Patterns":null},"easymde-dark.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde-dark.min.css"},"Patterns":null},"easymde.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde.css"},"Patterns":null},"easymde.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/jquery-ui.min.css"},"Patterns":null},"mvc-grid":{"Children":{"fonts":{"Children":{"grid-glyphs.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/fonts/grid-glyphs.woff"},"Patterns":null}},"Asset":null,"Patterns":null},"mvc-grid-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/mvc-grid-dark.css"},"Patterns":null},"mvc-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/mvc-grid.css"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/additional-methods.min.js"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/bootstrap.min.js"},"Patterns":null},"easymde":{"Children":{"easymde.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/easymde/easymde.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery-ui.min.js"},"Patterns":null},"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.min.map"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.js"},"Patterns":null},"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.unobtrusive.min.js"},"Patterns":null},"mvc-grid":{"Children":{"mvc-grid.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/mvc-grid/mvc-grid.js"},"Patterns":null}},"Asset":null,"Patterns":null},"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}}
\ No newline at end of file
diff --git a/bin/Debug/net7.0/BouncyCastle.Crypto.dll b/bin/Debug/net7.0/BouncyCastle.Crypto.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Dapper.dll b/bin/Debug/net7.0/Dapper.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/DnsClient.dll b/bin/Debug/net7.0/DnsClient.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/DotNetEd.CoreAdmin.dll b/bin/Debug/net7.0/DotNetEd.CoreAdmin.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/EPPlus.Interfaces.dll b/bin/Debug/net7.0/EPPlus.Interfaces.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/EPPlus.System.Drawing.dll b/bin/Debug/net7.0/EPPlus.System.Drawing.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/EPPlus.dll b/bin/Debug/net7.0/EPPlus.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Elasticsearch.Net.dll b/bin/Debug/net7.0/Elasticsearch.Net.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Google.Protobuf.dll b/bin/Debug/net7.0/Google.Protobuf.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Humanizer.dll b/bin/Debug/net7.0/Humanizer.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/K4os.Compression.LZ4.Streams.dll b/bin/Debug/net7.0/K4os.Compression.LZ4.Streams.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/K4os.Compression.LZ4.dll b/bin/Debug/net7.0/K4os.Compression.LZ4.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/K4os.Hash.xxHash.dll b/bin/Debug/net7.0/K4os.Hash.xxHash.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/LiteDB.dll b/bin/Debug/net7.0/LiteDB.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/bin/Debug/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.AspNetCore.JsonPatch.dll b/bin/Debug/net7.0/Microsoft.AspNetCore.JsonPatch.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll b/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.NewtonsoftJson.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll b/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll b/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.ApiExplorer.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.dll b/bin/Debug/net7.0/Microsoft.AspNetCore.Mvc.Versioning.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll b/bin/Debug/net7.0/Microsoft.AspNetCore.OpenApi.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll b/bin/Debug/net7.0/Microsoft.AspNetCore.Razor.Language.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll b/bin/Debug/net7.0/Microsoft.Bcl.AsyncInterfaces.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll b/bin/Debug/net7.0/Microsoft.CodeAnalysis.CSharp.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll b/bin/Debug/net7.0/Microsoft.CodeAnalysis.Razor.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll b/bin/Debug/net7.0/Microsoft.CodeAnalysis.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.Data.SqlClient.dll b/bin/Debug/net7.0/Microsoft.Data.SqlClient.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Abstractions.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll b/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Design.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.Design.dll b/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.Design.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll b/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.Relational.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll b/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.SqlServer.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll b/bin/Debug/net7.0/Microsoft.EntityFrameworkCore.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll b/bin/Debug/net7.0/Microsoft.Extensions.DependencyModel.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.IO.RecyclableMemoryStream.dll b/bin/Debug/net7.0/Microsoft.IO.RecyclableMemoryStream.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll b/bin/Debug/net7.0/Microsoft.Identity.Client.Extensions.Msal.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.Identity.Client.dll b/bin/Debug/net7.0/Microsoft.Identity.Client.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll b/bin/Debug/net7.0/Microsoft.IdentityModel.Abstractions.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll b/bin/Debug/net7.0/Microsoft.IdentityModel.JsonWebTokens.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll b/bin/Debug/net7.0/Microsoft.IdentityModel.Logging.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll b/bin/Debug/net7.0/Microsoft.IdentityModel.Protocols.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll b/bin/Debug/net7.0/Microsoft.IdentityModel.Tokens.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.OpenApi.dll b/bin/Debug/net7.0/Microsoft.OpenApi.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.SqlServer.Server.dll b/bin/Debug/net7.0/Microsoft.SqlServer.Server.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll b/bin/Debug/net7.0/Microsoft.Win32.SystemEvents.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/MongoDB.Bson.dll b/bin/Debug/net7.0/MongoDB.Bson.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/MongoDB.Driver.Core.dll b/bin/Debug/net7.0/MongoDB.Driver.Core.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/MongoDB.Driver.GridFS.dll b/bin/Debug/net7.0/MongoDB.Driver.GridFS.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/MongoDB.Driver.dll b/bin/Debug/net7.0/MongoDB.Driver.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/MongoDB.Libmongocrypt.dll b/bin/Debug/net7.0/MongoDB.Libmongocrypt.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Mono.TextTemplating.dll b/bin/Debug/net7.0/Mono.TextTemplating.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Mvc.Grid.Core.dll b/bin/Debug/net7.0/Mvc.Grid.Core.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/MySql.Data.dll b/bin/Debug/net7.0/MySql.Data.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/MySqlConnector.dll b/bin/Debug/net7.0/MySqlConnector.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll b/bin/Debug/net7.0/Newtonsoft.Json.Bson.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Newtonsoft.Json.dll b/bin/Debug/net7.0/Newtonsoft.Json.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Npgsql.dll b/bin/Debug/net7.0/Npgsql.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.Design.dll b/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.Design.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.dll b/bin/Debug/net7.0/Pomelo.EntityFrameworkCore.MySql.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Sentry.AspNetCore.dll b/bin/Debug/net7.0/Sentry.AspNetCore.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Sentry.Extensions.Logging.dll b/bin/Debug/net7.0/Sentry.Extensions.Logging.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Sentry.dll b/bin/Debug/net7.0/Sentry.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Serilog.AspNetCore.dll b/bin/Debug/net7.0/Serilog.AspNetCore.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll b/bin/Debug/net7.0/Serilog.Enrichers.Environment.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Serilog.Exceptions.dll b/bin/Debug/net7.0/Serilog.Exceptions.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll b/bin/Debug/net7.0/Serilog.Extensions.Hosting.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Serilog.Extensions.Logging.dll b/bin/Debug/net7.0/Serilog.Extensions.Logging.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Serilog.Formatting.Compact.dll b/bin/Debug/net7.0/Serilog.Formatting.Compact.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll b/bin/Debug/net7.0/Serilog.Formatting.Elasticsearch.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Serilog.Settings.Configuration.dll b/bin/Debug/net7.0/Serilog.Settings.Configuration.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Serilog.Sinks.Console.dll b/bin/Debug/net7.0/Serilog.Sinks.Console.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Serilog.Sinks.Debug.dll b/bin/Debug/net7.0/Serilog.Sinks.Debug.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll b/bin/Debug/net7.0/Serilog.Sinks.Elasticsearch.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Serilog.Sinks.File.dll b/bin/Debug/net7.0/Serilog.Sinks.File.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll b/bin/Debug/net7.0/Serilog.Sinks.PeriodicBatching.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Serilog.dll b/bin/Debug/net7.0/Serilog.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/SharpCompress.dll b/bin/Debug/net7.0/SharpCompress.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Snappier.dll b/bin/Debug/net7.0/Snappier.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Swashbuckle.AspNetCore.Annotations.dll b/bin/Debug/net7.0/Swashbuckle.AspNetCore.Annotations.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll b/bin/Debug/net7.0/Swashbuckle.AspNetCore.Swagger.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerGen.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/bin/Debug/net7.0/Swashbuckle.AspNetCore.SwaggerUI.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/System.CodeDom.dll b/bin/Debug/net7.0/System.CodeDom.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll b/bin/Debug/net7.0/System.Configuration.ConfigurationManager.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/System.Data.SqlClient.dll b/bin/Debug/net7.0/System.Data.SqlClient.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/System.Drawing.Common.dll b/bin/Debug/net7.0/System.Drawing.Common.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll b/bin/Debug/net7.0/System.IdentityModel.Tokens.Jwt.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/System.Memory.Data.dll b/bin/Debug/net7.0/System.Memory.Data.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/System.Net.WebSockets.WebSocketProtocol.dll b/bin/Debug/net7.0/System.Net.WebSockets.WebSocketProtocol.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/System.Runtime.Caching.dll b/bin/Debug/net7.0/System.Runtime.Caching.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll b/bin/Debug/net7.0/System.Security.Cryptography.ProtectedData.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/System.Security.Permissions.dll b/bin/Debug/net7.0/System.Security.Permissions.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/System.Windows.Extensions.dll b/bin/Debug/net7.0/System.Windows.Extensions.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/Ubiety.Dns.Core.dll b/bin/Debug/net7.0/Ubiety.Dns.Core.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/WatchDog.dll b/bin/Debug/net7.0/WatchDog.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/ZstdNet.dll b/bin/Debug/net7.0/ZstdNet.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/ZstdSharp.dll b/bin/Debug/net7.0/ZstdSharp.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll b/bin/Debug/net7.0/runtime.osx.10.10-x64.CoreCompat.System.Drawing.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/linux/native/libmongocrypt.so b/bin/Debug/net7.0/runtimes/linux/native/libmongocrypt.so
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libX11.6.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libX11.6.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libXau.6.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libXau.6.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libXdmcp.6.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libXdmcp.6.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libXext.6.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libXext.6.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libXrender.1.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libXrender.1.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libcairo.2.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libcairo.2.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libfontconfig.1.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libfontconfig.1.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libfreetype.6.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libfreetype.6.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.0.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.0.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libgdiplus.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libgif.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libgif.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libglib-2.0.0.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libglib-2.0.0.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libintl.8.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libintl.8.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libjpeg.9.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libjpeg.9.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libpcre.1.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libpcre.1.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libpixman-1.0.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libpixman-1.0.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libpng16.16.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libpng16.16.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libtiff.5.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libtiff.5.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-render.0.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-render.0.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-shm.0.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb-shm.0.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb.1.dylib b/bin/Debug/net7.0/runtimes/osx-x64/native/libxcb.1.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/osx/native/libmongocrypt.dylib b/bin/Debug/net7.0/runtimes/osx/native/libmongocrypt.dylib
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll b/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp2.1/System.Data.SqlClient.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/bin/Debug/net7.0/runtimes/unix/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Debug/net7.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Debug/net7.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/win-arm64/native/sni.dll b/bin/Debug/net7.0/runtimes/win-arm64/native/sni.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Debug/net7.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/win-x64/native/sni.dll b/bin/Debug/net7.0/runtimes/win-x64/native/sni.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/bin/Debug/net7.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/win-x86/native/sni.dll b/bin/Debug/net7.0/runtimes/win-x86/native/sni.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll b/bin/Debug/net7.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll b/bin/Debug/net7.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll b/bin/Debug/net7.0/runtimes/win/lib/netcoreapp2.1/System.Data.SqlClient.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll b/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.0/System.Windows.Extensions.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll b/bin/Debug/net7.0/runtimes/win/lib/netcoreapp3.1/Microsoft.Data.SqlClient.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll b/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll b/bin/Debug/net7.0/runtimes/win/lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll
old mode 100644
new mode 100755
diff --git a/bin/Debug/net7.0/runtimes/win/native/mongocrypt.dll b/bin/Debug/net7.0/runtimes/win/native/mongocrypt.dll
old mode 100644
new mode 100755
diff --git a/obj/BMA.EHR.Recruit.Service.csproj.nuget.dgspec.json b/obj/BMA.EHR.Recruit.Service.csproj.nuget.dgspec.json
index 011471d..03467c1 100644
--- a/obj/BMA.EHR.Recruit.Service.csproj.nuget.dgspec.json
+++ b/obj/BMA.EHR.Recruit.Service.csproj.nuget.dgspec.json
@@ -1,32 +1,27 @@
{
"format": 1,
"restore": {
- "D:\\Develop\\Source\\BMA-EHR-Recruit-Service\\BMA.EHR.Recruit.Service.csproj": {}
+ "/Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-RECRUIT-SERVICE/BMA.EHR.Recruit.Service.csproj": {}
},
"projects": {
- "D:\\Develop\\Source\\BMA-EHR-Recruit-Service\\BMA.EHR.Recruit.Service.csproj": {
+ "/Users/suphonchai/Develop/source/BMA-EHR/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",
+ "projectUniqueName": "/Users/suphonchai/Develop/source/BMA-EHR/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\\",
+ "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/",
"projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
"configFilePaths": [
- "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"
],
"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": {}
},
@@ -184,7 +179,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.201/RuntimeIdentifierGraph.json"
}
}
}
diff --git a/obj/BMA.EHR.Recruit.Service.csproj.nuget.g.props b/obj/BMA.EHR.Recruit.Service.csproj.nuget.g.props
index 8aae3fa..548151c 100644
--- a/obj/BMA.EHR.Recruit.Service.csproj.nuget.g.props
+++ b/obj/BMA.EHR.Recruit.Service.csproj.nuget.g.props
@@ -4,31 +4,30 @@
True
NuGet
$(MSBuildThisFileDirectory)project.assets.json
- $(UserProfile)\.nuget\packages\
- C:\Users\suphonchai\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages
+ /Users/suphonchai/.nuget/packages/
+ /Users/suphonchai/.nuget/packages/
PackageReference
6.5.0
-
-
+
-
-
-
-
-
-
+
+
+
+
+
+
- C:\Users\suphonchai\.nuget\packages\awssdk.core\3.7.100.14
- C:\Users\suphonchai\.nuget\packages\awssdk.securitytoken\3.7.100.14
- C:\Users\suphonchai\.nuget\packages\microsoft.codeanalysis.analyzers\1.1.0
- C:\Users\suphonchai\.nuget\packages\microsoft.aspnetcore.razor.design\2.2.0
- C:\Users\suphonchai\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5
- C:\Users\suphonchai\.nuget\packages\sentry\3.29.1
- C:\Users\suphonchai\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.17.0
- C:\Users\suphonchai\.nuget\packages\microsoft.entityframeworkcore.tools\7.0.3
+ /Users/suphonchai/.nuget/packages/awssdk.core/3.7.100.14
+ /Users/suphonchai/.nuget/packages/awssdk.securitytoken/3.7.100.14
+ /Users/suphonchai/.nuget/packages/microsoft.codeanalysis.analyzers/1.1.0
+ /Users/suphonchai/.nuget/packages/microsoft.aspnetcore.razor.design/2.2.0
+ /Users/suphonchai/.nuget/packages/microsoft.extensions.apidescription.server/6.0.5
+ /Users/suphonchai/.nuget/packages/sentry/3.29.1
+ /Users/suphonchai/.nuget/packages/microsoft.visualstudio.azure.containers.tools.targets/1.17.0
+ /Users/suphonchai/.nuget/packages/microsoft.entityframeworkcore.tools/7.0.3
\ No newline at end of file
diff --git a/obj/BMA.EHR.Recruit.Service.csproj.nuget.g.targets b/obj/BMA.EHR.Recruit.Service.csproj.nuget.g.targets
index 7436eb0..27158e7 100644
--- a/obj/BMA.EHR.Recruit.Service.csproj.nuget.g.targets
+++ b/obj/BMA.EHR.Recruit.Service.csproj.nuget.g.targets
@@ -1,10 +1,10 @@
-
-
-
-
-
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs
index 26e232c..8822f96 100644
--- a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs
+++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.AssemblyInfo.cs
@@ -1,7 +1,6 @@
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig
index d3e774b..c1e64d0 100644
--- a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig
+++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.GeneratedMSBuildEditorConfig.editorconfig
@@ -9,9 +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
-build_property.ProjectDir = 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 = D:\Develop\Source\BMA-EHR-Recruit-Service
+build_property.MSBuildProjectDirectory = /Users/suphonchai/Develop/source/BMA-EHR/BMA-EHR-RECRUIT-SERVICE
build_property._RazorSourceGeneratorDebug =
diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs
index c1469f9..a69066f 100644
--- a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs
+++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.MvcApplicationPartsAssemblyInfo.cs
@@ -1,7 +1,6 @@
//------------------------------------------------------------------------------
//
// This code was generated by a tool.
-// Runtime Version:4.0.30319.42000
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.assets.cache b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.assets.cache
index 5ccf3ab..96cc202 100644
Binary files a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.assets.cache and b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.assets.cache differ
diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache
index 2fe3308..3bb7091 100644
Binary files a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache and b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.AssemblyReference.cache differ
diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache
index e6d6bd2..05bca87 100644
--- a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache
+++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.CoreCompileInputs.cache
@@ -1 +1 @@
-2b594d28be74725d16d3df7b72883899dbeb8873
+9c27dc5d2f834e13ba112ca48173285ec9962ab9
diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.FileListAbsolute.txt b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.FileListAbsolute.txt
index decc1a7..c299493 100644
--- a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.FileListAbsolute.txt
+++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.csproj.FileListAbsolute.txt
@@ -1,179 +1,358 @@
-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
+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
diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll
index 2923920..80c9e0e 100644
Binary files a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll and b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.dll differ
diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.genruntimeconfig.cache b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.genruntimeconfig.cache
index 37b3181..b67853f 100644
--- a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.genruntimeconfig.cache
+++ b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.genruntimeconfig.cache
@@ -1 +1 @@
-8db275d960cef9eef9fdfa8ab97510a96f0326ff
+ebbf1e6350fd375b7e7c04c8df31de6559f0c81f
diff --git a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb
index cdb3204..363661b 100644
Binary files a/obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb and b/obj/Debug/net7.0/BMA.EHR.Recruit.Service.pdb differ
diff --git a/obj/Debug/net7.0/Sentry.Attributes.cs b/obj/Debug/net7.0/Sentry.Attributes.cs
index 7c70d1f..1858c04 100644
--- a/obj/Debug/net7.0/Sentry.Attributes.cs
+++ b/obj/Debug/net7.0/Sentry.Attributes.cs
@@ -1,7 +1,6 @@
//------------------------------------------------------------------------------
//
// 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,7 +10,7 @@
using System;
using System.Reflection;
-[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/")]
// Generated by the MSBuild WriteCodeFragment class.
diff --git a/obj/Debug/net7.0/ref/BMA.EHR.Recruit.Service.dll b/obj/Debug/net7.0/ref/BMA.EHR.Recruit.Service.dll
index d6523f0..53176c5 100644
Binary files a/obj/Debug/net7.0/ref/BMA.EHR.Recruit.Service.dll and b/obj/Debug/net7.0/ref/BMA.EHR.Recruit.Service.dll differ
diff --git a/obj/Debug/net7.0/refint/BMA.EHR.Recruit.Service.dll b/obj/Debug/net7.0/refint/BMA.EHR.Recruit.Service.dll
index d6523f0..53176c5 100644
Binary files a/obj/Debug/net7.0/refint/BMA.EHR.Recruit.Service.dll and b/obj/Debug/net7.0/refint/BMA.EHR.Recruit.Service.dll differ
diff --git a/obj/Debug/net7.0/staticwebassets.build.json b/obj/Debug/net7.0/staticwebassets.build.json
index 5b8e84a..754ea79 100644
--- a/obj/Debug/net7.0/staticwebassets.build.json
+++ b/obj/Debug/net7.0/staticwebassets.build.json
@@ -1,6 +1,6 @@
{
"Version": 1,
- "Hash": "0zrvTC6mF/RXbeJJwEHxVjBPixlaFF5e2hnmdYRb0gI=",
+ "Hash": "qy+8WX+bY2AtVsNlOsM3zzM+wn4guc7awzZCVhl/GbU=",
"Source": "BMA.EHR.Recruit.Service",
"BasePath": "_content/BMA.EHR.Recruit.Service",
"Mode": "Default",
@@ -9,78 +9,10 @@
"DiscoveryPatterns": [],
"Assets": [
{
- "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-dark.css",
"SourceId": "CoreAdmin",
"SourceType": "Package",
- "ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
- "BasePath": "_content/CoreAdmin",
- "RelativePath": "css/bootstrap.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "C:\\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",
- "SourceId": "CoreAdmin",
- "SourceType": "Package",
- "ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
- "BasePath": "_content/CoreAdmin",
- "RelativePath": "css/bootstrap.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "C:\\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",
- "SourceId": "CoreAdmin",
- "SourceType": "Package",
- "ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
- "BasePath": "_content/CoreAdmin",
- "RelativePath": "css/bootstrap.min.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "C:\\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",
- "SourceId": "CoreAdmin",
- "SourceType": "Package",
- "ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
- "BasePath": "_content/CoreAdmin",
- "RelativePath": "css/bootstrap.min.css.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "C:\\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\\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",
@@ -91,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",
@@ -108,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",
@@ -125,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",
@@ -142,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",
@@ -159,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",
@@ -176,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",
@@ -193,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",
@@ -210,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",
@@ -227,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",
@@ -244,15 +176,15 @@
"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\\easymde\\easymde.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/easymde/easymde.css",
+ "RelativePath": "css/bootstrap.css",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -261,15 +193,15 @@
"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/bootstrap.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/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/easymde/easymde.min.css",
+ "RelativePath": "css/bootstrap.css.map",
"AssetKind": "All",
"AssetMode": "All",
"AssetRole": "Primary",
@@ -278,13 +210,47 @@
"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/bootstrap.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/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",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "/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.map",
+ "SourceId": "CoreAdmin",
+ "SourceType": "Package",
+ "ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
+ "BasePath": "_content/CoreAdmin",
+ "RelativePath": "css/bootstrap.min.css.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "/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/easymde/easymde-dark.css",
+ "SourceId": "CoreAdmin",
+ "SourceType": "Package",
+ "ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
"BasePath": "_content/CoreAdmin",
"RelativePath": "css/easymde/easymde-dark.css",
"AssetKind": "All",
@@ -295,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",
@@ -312,13 +278,47 @@
"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\\jquery-ui.min.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",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "/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.min.css",
+ "SourceId": "CoreAdmin",
+ "SourceType": "Package",
+ "ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
+ "BasePath": "_content/CoreAdmin",
+ "RelativePath": "css/easymde/easymde.min.css",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "/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/jquery-ui.min.css",
+ "SourceId": "CoreAdmin",
+ "SourceType": "Package",
+ "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,30 +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.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\\",
- "BasePath": "_content/CoreAdmin",
- "RelativePath": "css/mvc-grid/mvc-grid.css",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "C:\\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\\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",
@@ -380,13 +363,30 @@
"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\\site.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",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "/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/site.css",
+ "SourceId": "CoreAdmin",
+ "SourceType": "Package",
+ "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,115 +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.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\\",
- "BasePath": "_content/CoreAdmin",
- "RelativePath": "js/jquery.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "C:\\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",
- "SourceId": "CoreAdmin",
- "SourceType": "Package",
- "ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
- "BasePath": "_content/CoreAdmin",
- "RelativePath": "js/jquery.min.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "C:\\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",
- "SourceId": "CoreAdmin",
- "SourceType": "Package",
- "ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
- "BasePath": "_content/CoreAdmin",
- "RelativePath": "js/jquery.min.map",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "C:\\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",
- "SourceId": "CoreAdmin",
- "SourceType": "Package",
- "ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
- "BasePath": "_content/CoreAdmin",
- "RelativePath": "js/jquery.validate.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "C:\\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",
- "SourceId": "CoreAdmin",
- "SourceType": "Package",
- "ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
- "BasePath": "_content/CoreAdmin",
- "RelativePath": "js/jquery.validate.unobtrusive.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "C:\\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",
- "SourceId": "CoreAdmin",
- "SourceType": "Package",
- "ContentRoot": "C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\",
- "BasePath": "_content/CoreAdmin",
- "RelativePath": "js/jquery.validate.unobtrusive.min.js",
- "AssetKind": "All",
- "AssetMode": "All",
- "AssetRole": "Primary",
- "RelatedAsset": "",
- "AssetTraitName": "",
- "AssetTraitValue": "",
- "CopyToOutputDirectory": "Never",
- "CopyToPublishDirectory": "PreserveNewest",
- "OriginalItemSpec": "C:\\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\\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",
@@ -601,13 +499,115 @@
"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\\mvc-grid\\mvc-grid.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",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/jquery.js"
+ },
+ {
+ "Identity": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/js/jquery.min.js",
+ "SourceId": "CoreAdmin",
+ "SourceType": "Package",
+ "ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
+ "BasePath": "_content/CoreAdmin",
+ "RelativePath": "js/jquery.min.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "/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.map",
+ "SourceId": "CoreAdmin",
+ "SourceType": "Package",
+ "ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
+ "BasePath": "_content/CoreAdmin",
+ "RelativePath": "js/jquery.min.map",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "/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.validate.js",
+ "SourceId": "CoreAdmin",
+ "SourceType": "Package",
+ "ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
+ "BasePath": "_content/CoreAdmin",
+ "RelativePath": "js/jquery.validate.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "/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.unobtrusive.js",
+ "SourceId": "CoreAdmin",
+ "SourceType": "Package",
+ "ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
+ "BasePath": "_content/CoreAdmin",
+ "RelativePath": "js/jquery.validate.unobtrusive.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "/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.min.js",
+ "SourceId": "CoreAdmin",
+ "SourceType": "Package",
+ "ContentRoot": "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/",
+ "BasePath": "_content/CoreAdmin",
+ "RelativePath": "js/jquery.validate.unobtrusive.min.js",
+ "AssetKind": "All",
+ "AssetMode": "All",
+ "AssetRole": "Primary",
+ "RelatedAsset": "",
+ "AssetTraitName": "",
+ "AssetTraitValue": "",
+ "CopyToOutputDirectory": "Never",
+ "CopyToPublishDirectory": "PreserveNewest",
+ "OriginalItemSpec": "/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/mvc-grid/mvc-grid.js",
+ "SourceId": "CoreAdmin",
+ "SourceType": "Package",
+ "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"
}
]
}
\ No newline at end of file
diff --git a/obj/Debug/net7.0/staticwebassets.development.json b/obj/Debug/net7.0/staticwebassets.development.json
index 0a266b6..82dd569 100644
--- a/obj/Debug/net7.0/staticwebassets.development.json
+++ b/obj/Debug/net7.0/staticwebassets.development.json
@@ -1 +1 @@
-{"ContentRoots":["C:\\Users\\suphonchai\\.nuget\\packages\\coreadmin\\2.7.0\\staticwebassets\\"],"Root":{"Children":{"_content":{"Children":{"CoreAdmin":{"Children":{"css":{"Children":{"bootstrap-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-dark.css"},"Patterns":null},"bootstrap-dark.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-dark.min.css"},"Patterns":null},"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css.map"},"Patterns":null},"easymde":{"Children":{"easymde-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde-dark.css"},"Patterns":null},"easymde-dark.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde-dark.min.css"},"Patterns":null},"easymde.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde.css"},"Patterns":null},"easymde.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/jquery-ui.min.css"},"Patterns":null},"mvc-grid":{"Children":{"fonts":{"Children":{"grid-glyphs.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/fonts/grid-glyphs.woff"},"Patterns":null}},"Asset":null,"Patterns":null},"mvc-grid-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/mvc-grid-dark.css"},"Patterns":null},"mvc-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/mvc-grid.css"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/additional-methods.min.js"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/bootstrap.min.js"},"Patterns":null},"easymde":{"Children":{"easymde.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/easymde/easymde.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery-ui.min.js"},"Patterns":null},"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.min.map"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.js"},"Patterns":null},"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.unobtrusive.min.js"},"Patterns":null},"mvc-grid":{"Children":{"mvc-grid.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/mvc-grid/mvc-grid.js"},"Patterns":null}},"Asset":null,"Patterns":null},"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}}
\ No newline at end of file
+{"ContentRoots":["/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/staticwebassets/"],"Root":{"Children":{"_content":{"Children":{"CoreAdmin":{"Children":{"css":{"Children":{"bootstrap-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-dark.css"},"Patterns":null},"bootstrap-dark.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-dark.min.css"},"Patterns":null},"bootstrap-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.css"},"Patterns":null},"bootstrap-grid.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.css.map"},"Patterns":null},"bootstrap-grid.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.min.css"},"Patterns":null},"bootstrap-grid.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-grid.min.css.map"},"Patterns":null},"bootstrap-reboot.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.css"},"Patterns":null},"bootstrap-reboot.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.css.map"},"Patterns":null},"bootstrap-reboot.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.min.css"},"Patterns":null},"bootstrap-reboot.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap-reboot.min.css.map"},"Patterns":null},"bootstrap.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css"},"Patterns":null},"bootstrap.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.css.map"},"Patterns":null},"bootstrap.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css"},"Patterns":null},"bootstrap.min.css.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/bootstrap.min.css.map"},"Patterns":null},"easymde":{"Children":{"easymde-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde-dark.css"},"Patterns":null},"easymde-dark.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde-dark.min.css"},"Patterns":null},"easymde.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde.css"},"Patterns":null},"easymde.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/easymde/easymde.min.css"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui.min.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/jquery-ui.min.css"},"Patterns":null},"mvc-grid":{"Children":{"fonts":{"Children":{"grid-glyphs.woff":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/fonts/grid-glyphs.woff"},"Patterns":null}},"Asset":null,"Patterns":null},"mvc-grid-dark.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/mvc-grid-dark.css"},"Patterns":null},"mvc-grid.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/mvc-grid/mvc-grid.css"},"Patterns":null}},"Asset":null,"Patterns":null},"site.css":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"css/site.css"},"Patterns":null}},"Asset":null,"Patterns":null},"js":{"Children":{"additional-methods.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/additional-methods.js"},"Patterns":null},"additional-methods.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/additional-methods.min.js"},"Patterns":null},"bootstrap.bundle.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/bootstrap.bundle.min.js"},"Patterns":null},"bootstrap.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/bootstrap.min.js"},"Patterns":null},"easymde":{"Children":{"easymde.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/easymde/easymde.min.js"},"Patterns":null}},"Asset":null,"Patterns":null},"jquery-ui.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery-ui.min.js"},"Patterns":null},"jquery.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.js"},"Patterns":null},"jquery.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.min.js"},"Patterns":null},"jquery.min.map":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.min.map"},"Patterns":null},"jquery.validate.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.js"},"Patterns":null},"jquery.validate.unobtrusive.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.unobtrusive.js"},"Patterns":null},"jquery.validate.unobtrusive.min.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/jquery.validate.unobtrusive.min.js"},"Patterns":null},"mvc-grid":{"Children":{"mvc-grid.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/mvc-grid/mvc-grid.js"},"Patterns":null}},"Asset":null,"Patterns":null},"site.js":{"Children":null,"Asset":{"ContentRootIndex":0,"SubPath":"js/site.js"},"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}},"Asset":null,"Patterns":null}}
\ No newline at end of file
diff --git a/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props b/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props
index 906c159..56dd757 100644
--- a/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props
+++ b/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BMA.EHR.Recruit.Service.props
@@ -1,3 +1,3 @@
-
+
\ No newline at end of file
diff --git a/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BMA.EHR.Recruit.Service.props b/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BMA.EHR.Recruit.Service.props
index d458e80..272706d 100644
--- a/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BMA.EHR.Recruit.Service.props
+++ b/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BMA.EHR.Recruit.Service.props
@@ -1,3 +1,3 @@
-
+
\ No newline at end of file
diff --git a/obj/project.assets.json b/obj/project.assets.json
index 2b1c30f..24d024a 100644
--- a/obj/project.assets.json
+++ b/obj/project.assets.json
@@ -13690,32 +13690,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": {
- "projectUniqueName": "D:\\Develop\\Source\\BMA-EHR-Recruit-Service\\BMA.EHR.Recruit.Service.csproj",
+ "projectUniqueName": "/Users/suphonchai/Develop/source/BMA-EHR/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\\",
+ "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/",
"projectStyle": "PackageReference",
- "fallbackFolders": [
- "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages"
- ],
"configFilePaths": [
- "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"
],
"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": {}
},
@@ -13873,7 +13867,7 @@
"privateAssets": "all"
}
},
- "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.201\\RuntimeIdentifierGraph.json"
+ "runtimeIdentifierGraphPath": "/usr/local/share/dotnet/sdk/7.0.201/RuntimeIdentifierGraph.json"
}
}
}
diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache
index 32d55c4..576d748 100644
--- a/obj/project.nuget.cache
+++ b/obj/project.nuget.cache
@@ -1,298 +1,298 @@
{
"version": 2,
- "dgSpecHash": "okMXleFuT7SVsE5eR/4i9MzvB5sVDgy16lRfLu6sJiRQ7TQTgcpFkR6Lo4hqrSMPnXXNHNRhQhJiH7YTTYJyBg==",
+ "dgSpecHash": "MNvBABXck/lrJtMZO1t2VEiAUXmAToTDkpwalYwj3hGeTwyR/Dnz0u7GYIRwwiVbnchGflsdDw6qahSRF/W5PQ==",
"success": true,
- "projectFilePath": "D:\\Develop\\Source\\BMA-EHR-Recruit-Service\\BMA.EHR.Recruit.Service.csproj",
+ "projectFilePath": "/Users/suphonchai/Develop/source/BMA-EHR/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"
+ "/Users/suphonchai/.nuget/packages/awssdk.core/3.7.100.14/awssdk.core.3.7.100.14.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/awssdk.securitytoken/3.7.100.14/awssdk.securitytoken.3.7.100.14.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/azure.core/1.24.0/azure.core.1.24.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/azure.identity/1.6.0/azure.identity.1.6.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/bma.ehr.core/1.0.0/bma.ehr.core.1.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/bma.ehr.extensions/1.0.1/bma.ehr.extensions.1.0.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/bouncycastle.netcore/1.8.5/bouncycastle.netcore.1.8.5.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/coreadmin/2.7.0/coreadmin.2.7.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/dapper/2.0.123/dapper.2.0.123.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/dnsclient/1.6.1/dnsclient.1.6.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/elasticsearch.net/7.17.5/elasticsearch.net.7.17.5.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/epplus/6.1.3/epplus.6.1.3.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/epplus.interfaces/6.1.1/epplus.interfaces.6.1.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/epplus.system.drawing/6.1.1/epplus.system.drawing.6.1.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/google.protobuf/3.19.4/google.protobuf.3.19.4.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/k4os.compression.lz4/1.2.6/k4os.compression.lz4.1.2.6.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/k4os.compression.lz4.streams/1.2.6/k4os.compression.lz4.streams.1.2.6.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/k4os.hash.xxhash/1.0.6/k4os.hash.xxhash.1.0.6.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/litedb/5.0.11/litedb.5.0.11.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.antiforgery/2.2.0/microsoft.aspnetcore.antiforgery.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.authentication.abstractions/2.2.0/microsoft.aspnetcore.authentication.abstractions.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.authentication.core/2.2.0/microsoft.aspnetcore.authentication.core.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.authentication.jwtbearer/7.0.3/microsoft.aspnetcore.authentication.jwtbearer.7.0.3.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.authorization/2.2.0/microsoft.aspnetcore.authorization.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.authorization.policy/2.2.0/microsoft.aspnetcore.authorization.policy.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.connections.abstractions/2.2.0/microsoft.aspnetcore.connections.abstractions.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.cors/2.2.0/microsoft.aspnetcore.cors.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.cryptography.internal/2.2.0/microsoft.aspnetcore.cryptography.internal.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.dataprotection/2.2.0/microsoft.aspnetcore.dataprotection.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.dataprotection.abstractions/2.2.0/microsoft.aspnetcore.dataprotection.abstractions.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.diagnostics.abstractions/2.2.0/microsoft.aspnetcore.diagnostics.abstractions.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.hosting.abstractions/2.2.0/microsoft.aspnetcore.hosting.abstractions.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.hosting.server.abstractions/2.2.0/microsoft.aspnetcore.hosting.server.abstractions.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.html.abstractions/2.2.0/microsoft.aspnetcore.html.abstractions.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.http/2.2.2/microsoft.aspnetcore.http.2.2.2.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.http.abstractions/2.2.0/microsoft.aspnetcore.http.abstractions.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.http.connections/1.1.0/microsoft.aspnetcore.http.connections.1.1.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.http.connections.common/1.1.0/microsoft.aspnetcore.http.connections.common.1.1.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.http.extensions/2.2.0/microsoft.aspnetcore.http.extensions.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.http.features/2.2.0/microsoft.aspnetcore.http.features.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.jsonpatch/7.0.3/microsoft.aspnetcore.jsonpatch.7.0.3.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.localization/2.2.0/microsoft.aspnetcore.localization.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.mvc/2.2.0/microsoft.aspnetcore.mvc.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.mvc.abstractions/2.2.0/microsoft.aspnetcore.mvc.abstractions.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.mvc.analyzers/2.2.0/microsoft.aspnetcore.mvc.analyzers.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.mvc.apiexplorer/2.2.0/microsoft.aspnetcore.mvc.apiexplorer.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.mvc.core/2.2.0/microsoft.aspnetcore.mvc.core.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.mvc.cors/2.2.0/microsoft.aspnetcore.mvc.cors.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.mvc.dataannotations/2.2.0/microsoft.aspnetcore.mvc.dataannotations.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.mvc.formatters.json/2.2.0/microsoft.aspnetcore.mvc.formatters.json.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.mvc.localization/2.2.0/microsoft.aspnetcore.mvc.localization.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.mvc.newtonsoftjson/7.0.3/microsoft.aspnetcore.mvc.newtonsoftjson.7.0.3.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.mvc.razor/2.2.0/microsoft.aspnetcore.mvc.razor.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.mvc.razor.extensions/2.2.0/microsoft.aspnetcore.mvc.razor.extensions.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.mvc.razorpages/2.2.0/microsoft.aspnetcore.mvc.razorpages.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.mvc.taghelpers/2.2.0/microsoft.aspnetcore.mvc.taghelpers.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.mvc.versioning/5.0.0/microsoft.aspnetcore.mvc.versioning.5.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.mvc.versioning.apiexplorer/5.0.0/microsoft.aspnetcore.mvc.versioning.apiexplorer.5.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.mvc.viewfeatures/2.2.0/microsoft.aspnetcore.mvc.viewfeatures.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.openapi/7.0.3/microsoft.aspnetcore.openapi.7.0.3.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.razor/2.2.0/microsoft.aspnetcore.razor.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.razor.design/2.2.0/microsoft.aspnetcore.razor.design.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.razor.language/2.2.0/microsoft.aspnetcore.razor.language.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.razor.runtime/2.2.0/microsoft.aspnetcore.razor.runtime.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.responsecaching.abstractions/2.2.0/microsoft.aspnetcore.responsecaching.abstractions.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.routing/2.2.0/microsoft.aspnetcore.routing.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.routing.abstractions/2.2.0/microsoft.aspnetcore.routing.abstractions.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.signalr/1.1.0/microsoft.aspnetcore.signalr.1.1.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.signalr.common/1.1.0/microsoft.aspnetcore.signalr.common.1.1.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.signalr.core/1.1.0/microsoft.aspnetcore.signalr.core.1.1.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.signalr.protocols.json/1.1.0/microsoft.aspnetcore.signalr.protocols.json.1.1.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.staticfiles/2.2.0/microsoft.aspnetcore.staticfiles.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.websockets/2.2.0/microsoft.aspnetcore.websockets.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.aspnetcore.webutilities/2.2.0/microsoft.aspnetcore.webutilities.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.bcl.asyncinterfaces/1.1.1/microsoft.bcl.asyncinterfaces.1.1.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.codeanalysis.analyzers/1.1.0/microsoft.codeanalysis.analyzers.1.1.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.codeanalysis.common/2.8.0/microsoft.codeanalysis.common.2.8.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.codeanalysis.csharp/2.8.0/microsoft.codeanalysis.csharp.2.8.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.codeanalysis.razor/2.2.0/microsoft.codeanalysis.razor.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.csharp/4.7.0/microsoft.csharp.4.7.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.data.sqlclient/5.0.1/microsoft.data.sqlclient.5.0.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.data.sqlclient.sni.runtime/5.0.1/microsoft.data.sqlclient.sni.runtime.5.0.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.entityframeworkcore/7.0.3/microsoft.entityframeworkcore.7.0.3.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.entityframeworkcore.abstractions/7.0.3/microsoft.entityframeworkcore.abstractions.7.0.3.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.entityframeworkcore.analyzers/7.0.3/microsoft.entityframeworkcore.analyzers.7.0.3.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.entityframeworkcore.design/7.0.3/microsoft.entityframeworkcore.design.7.0.3.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.entityframeworkcore.relational/7.0.3/microsoft.entityframeworkcore.relational.7.0.3.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.entityframeworkcore.relational.design/1.1.1/microsoft.entityframeworkcore.relational.design.1.1.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.entityframeworkcore.sqlserver/7.0.3/microsoft.entityframeworkcore.sqlserver.7.0.3.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.entityframeworkcore.tools/7.0.3/microsoft.entityframeworkcore.tools.7.0.3.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.apidescription.server/6.0.5/microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.caching.abstractions/7.0.0/microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.caching.memory/7.0.0/microsoft.extensions.caching.memory.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.configuration/7.0.0/microsoft.extensions.configuration.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.configuration.abstractions/7.0.0/microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.configuration.binder/6.0.0/microsoft.extensions.configuration.binder.6.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.configuration.fileextensions/7.0.0/microsoft.extensions.configuration.fileextensions.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.configuration.json/7.0.0/microsoft.extensions.configuration.json.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.dependencyinjection/7.0.0/microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/7.0.0/microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.dependencymodel/7.0.0/microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.fileproviders.abstractions/7.0.0/microsoft.extensions.fileproviders.abstractions.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.fileproviders.composite/2.2.0/microsoft.extensions.fileproviders.composite.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.fileproviders.embedded/3.1.22/microsoft.extensions.fileproviders.embedded.3.1.22.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.fileproviders.physical/7.0.0/microsoft.extensions.fileproviders.physical.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.filesystemglobbing/7.0.0/microsoft.extensions.filesystemglobbing.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.hosting.abstractions/3.1.8/microsoft.extensions.hosting.abstractions.3.1.8.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.http/6.0.0/microsoft.extensions.http.6.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.localization/2.2.0/microsoft.extensions.localization.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.localization.abstractions/2.2.0/microsoft.extensions.localization.abstractions.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.logging/7.0.0/microsoft.extensions.logging.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.logging.abstractions/7.0.0/microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.logging.configuration/6.0.0/microsoft.extensions.logging.configuration.6.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.logging.console/1.1.1/microsoft.extensions.logging.console.1.1.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.objectpool/2.2.0/microsoft.extensions.objectpool.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.options/7.0.0/microsoft.extensions.options.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.options.configurationextensions/6.0.0/microsoft.extensions.options.configurationextensions.6.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.primitives/7.0.0/microsoft.extensions.primitives.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.extensions.webencoders/2.2.0/microsoft.extensions.webencoders.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.identity.client/4.45.0/microsoft.identity.client.4.45.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.identity.client.extensions.msal/2.19.3/microsoft.identity.client.extensions.msal.2.19.3.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.identitymodel.abstractions/6.21.0/microsoft.identitymodel.abstractions.6.21.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.identitymodel.jsonwebtokens/6.21.0/microsoft.identitymodel.jsonwebtokens.6.21.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.identitymodel.logging/6.21.0/microsoft.identitymodel.logging.6.21.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.identitymodel.protocols/6.21.0/microsoft.identitymodel.protocols.6.21.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/6.21.0/microsoft.identitymodel.protocols.openidconnect.6.21.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.identitymodel.tokens/6.21.0/microsoft.identitymodel.tokens.6.21.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.io.recyclablememorystream/2.2.1/microsoft.io.recyclablememorystream.2.2.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.net.http.headers/2.2.0/microsoft.net.http.headers.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.netcore.platforms/5.0.0/microsoft.netcore.platforms.5.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.netcore.targets/1.1.0/microsoft.netcore.targets.1.1.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.openapi/1.4.3/microsoft.openapi.1.4.3.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.sqlserver.server/1.0.0/microsoft.sqlserver.server.1.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.visualstudio.azure.containers.tools.targets/1.17.0/microsoft.visualstudio.azure.containers.tools.targets.1.17.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.win32.primitives/4.3.0/microsoft.win32.primitives.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.win32.registry/5.0.0/microsoft.win32.registry.5.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/microsoft.win32.systemevents/7.0.0/microsoft.win32.systemevents.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/mongodb.bson/2.19.0/mongodb.bson.2.19.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/mongodb.driver/2.19.0/mongodb.driver.2.19.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/mongodb.driver.core/2.19.0/mongodb.driver.core.2.19.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/mongodb.driver.gridfs/2.19.0/mongodb.driver.gridfs.2.19.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/mongodb.libmongocrypt/1.7.0/mongodb.libmongocrypt.1.7.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/mono.texttemplating/2.2.1/mono.texttemplating.2.2.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/mysql.data/8.0.29/mysql.data.8.0.29.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/mysqlconnector/2.2.5/mysqlconnector.2.2.5.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/netstandard.library/1.6.1/netstandard.library.1.6.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/newtonsoft.json.bson/1.0.2/newtonsoft.json.bson.1.0.2.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/nonfactors.grid.core.mvc6/7.1.0/nonfactors.grid.core.mvc6.7.1.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/npgsql/6.0.4/npgsql.6.0.4.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/pomelo.entityframeworkcore.mysql/7.0.0/pomelo.entityframeworkcore.mysql.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/pomelo.entityframeworkcore.mysql.design/1.1.2/pomelo.entityframeworkcore.mysql.design.1.1.2.nupkg.sha512",
+ "/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",
+ "/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",
+ "/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",
+ "/Users/suphonchai/.nuget/packages/runtime.native.system/4.3.0/runtime.native.system.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/runtime.native.system.data.sqlclient.sni/4.7.0/runtime.native.system.data.sqlclient.sni.4.7.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/runtime.native.system.io.compression/4.3.0/runtime.native.system.io.compression.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/runtime.native.system.net.http/4.3.0/runtime.native.system.net.http.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/runtime.native.system.security.cryptography.apple/4.3.0/runtime.native.system.security.cryptography.apple.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/runtime.native.system.security.cryptography.openssl/4.3.0/runtime.native.system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "/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",
+ "/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",
+ "/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",
+ "/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",
+ "/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",
+ "/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",
+ "/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",
+ "/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",
+ "/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",
+ "/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",
+ "/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",
+ "/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",
+ "/Users/suphonchai/.nuget/packages/sentry/3.29.1/sentry.3.29.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/sentry.aspnetcore/3.29.1/sentry.aspnetcore.3.29.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/sentry.extensions.logging/3.29.1/sentry.extensions.logging.3.29.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/serilog/2.12.0/serilog.2.12.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/serilog.aspnetcore/6.1.0/serilog.aspnetcore.6.1.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/serilog.enrichers.environment/2.2.0/serilog.enrichers.environment.2.2.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/serilog.exceptions/8.4.0/serilog.exceptions.8.4.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/serilog.extensions.hosting/5.0.1/serilog.extensions.hosting.5.0.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/serilog.extensions.logging/3.1.0/serilog.extensions.logging.3.1.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/serilog.formatting.compact/1.1.0/serilog.formatting.compact.1.1.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/serilog.formatting.elasticsearch/9.0.0/serilog.formatting.elasticsearch.9.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/serilog.settings.configuration/3.3.0/serilog.settings.configuration.3.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/serilog.sinks.console/4.1.0/serilog.sinks.console.4.1.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/serilog.sinks.debug/2.0.0/serilog.sinks.debug.2.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/serilog.sinks.elasticsearch/9.0.0/serilog.sinks.elasticsearch.9.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/serilog.sinks.file/5.0.0/serilog.sinks.file.5.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/serilog.sinks.periodicbatching/3.1.0/serilog.sinks.periodicbatching.3.1.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/sharpcompress/0.30.1/sharpcompress.0.30.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/snappier/1.0.0/snappier.1.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/swashbuckle.aspnetcore/6.5.0/swashbuckle.aspnetcore.6.5.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/swashbuckle.aspnetcore.annotations/6.5.0/swashbuckle.aspnetcore.annotations.6.5.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/swashbuckle.aspnetcore.swagger/6.5.0/swashbuckle.aspnetcore.swagger.6.5.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/swashbuckle.aspnetcore.swaggergen/6.5.0/swashbuckle.aspnetcore.swaggergen.6.5.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/swashbuckle.aspnetcore.swaggerui/6.5.0/swashbuckle.aspnetcore.swaggerui.6.5.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.appcontext/4.3.0/system.appcontext.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.buffers/4.5.1/system.buffers.4.5.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.codedom/4.4.0/system.codedom.4.4.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.collections/4.3.0/system.collections.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.collections.concurrent/4.3.0/system.collections.concurrent.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.collections.immutable/1.3.1/system.collections.immutable.1.3.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.componentmodel.annotations/4.5.0/system.componentmodel.annotations.4.5.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.configuration.configurationmanager/5.0.0/system.configuration.configurationmanager.5.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.console/4.3.0/system.console.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.data.sqlclient/4.8.5/system.data.sqlclient.4.8.5.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.diagnostics.debug/4.3.0/system.diagnostics.debug.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.diagnostics.diagnosticsource/6.0.0/system.diagnostics.diagnosticsource.6.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.diagnostics.fileversioninfo/4.3.0/system.diagnostics.fileversioninfo.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.diagnostics.stacktrace/4.3.0/system.diagnostics.stacktrace.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.diagnostics.tools/4.3.0/system.diagnostics.tools.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.diagnostics.tracing/4.3.0/system.diagnostics.tracing.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.drawing.common/7.0.0/system.drawing.common.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.dynamic.runtime/4.3.0/system.dynamic.runtime.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.formats.asn1/7.0.0/system.formats.asn1.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.globalization/4.3.0/system.globalization.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.globalization.calendars/4.3.0/system.globalization.calendars.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.globalization.extensions/4.3.0/system.globalization.extensions.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.identitymodel.tokens.jwt/6.21.0/system.identitymodel.tokens.jwt.6.21.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.io/4.3.0/system.io.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.io.compression/4.3.0/system.io.compression.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.io.compression.zipfile/4.3.0/system.io.compression.zipfile.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.io.filesystem/4.3.0/system.io.filesystem.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.io.filesystem.primitives/4.3.0/system.io.filesystem.primitives.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.io.pipelines/4.5.2/system.io.pipelines.4.5.2.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.linq/4.3.0/system.linq.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.linq.expressions/4.3.0/system.linq.expressions.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.memory/4.5.4/system.memory.4.5.4.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.memory.data/1.0.2/system.memory.data.1.0.2.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.net.http/4.3.0/system.net.http.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.net.primitives/4.3.0/system.net.primitives.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.net.sockets/4.3.0/system.net.sockets.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.net.websockets.websocketprotocol/4.5.1/system.net.websockets.websocketprotocol.4.5.1.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.numerics.vectors/4.5.0/system.numerics.vectors.4.5.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.objectmodel/4.3.0/system.objectmodel.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.reflection/4.3.0/system.reflection.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.reflection.emit/4.3.0/system.reflection.emit.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.reflection.emit.ilgeneration/4.3.0/system.reflection.emit.ilgeneration.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.reflection.emit.lightweight/4.3.0/system.reflection.emit.lightweight.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.reflection.extensions/4.3.0/system.reflection.extensions.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.reflection.metadata/1.4.2/system.reflection.metadata.1.4.2.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.reflection.primitives/4.3.0/system.reflection.primitives.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.reflection.typeextensions/4.7.0/system.reflection.typeextensions.4.7.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.resources.resourcemanager/4.3.0/system.resources.resourcemanager.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.runtime/4.3.0/system.runtime.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.runtime.caching/5.0.0/system.runtime.caching.5.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.runtime.compilerservices.unsafe/6.0.0/system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.runtime.extensions/4.3.0/system.runtime.extensions.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.runtime.handles/4.3.0/system.runtime.handles.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.runtime.interopservices/4.3.0/system.runtime.interopservices.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.runtime.interopservices.runtimeinformation/4.3.0/system.runtime.interopservices.runtimeinformation.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.runtime.numerics/4.3.0/system.runtime.numerics.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.security.accesscontrol/5.0.0/system.security.accesscontrol.5.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.security.cryptography.algorithms/4.3.0/system.security.cryptography.algorithms.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.security.cryptography.cng/5.0.0/system.security.cryptography.cng.5.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.security.cryptography.csp/4.3.0/system.security.cryptography.csp.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.security.cryptography.encoding/4.3.0/system.security.cryptography.encoding.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.security.cryptography.openssl/4.3.0/system.security.cryptography.openssl.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.security.cryptography.pkcs/7.0.0/system.security.cryptography.pkcs.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.security.cryptography.primitives/4.3.0/system.security.cryptography.primitives.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.security.cryptography.protecteddata/5.0.0/system.security.cryptography.protecteddata.5.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.security.cryptography.x509certificates/4.3.0/system.security.cryptography.x509certificates.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.security.cryptography.xml/4.5.0/system.security.cryptography.xml.4.5.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.security.permissions/5.0.0/system.security.permissions.5.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.security.principal.windows/5.0.0/system.security.principal.windows.5.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.text.encoding/4.3.0/system.text.encoding.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.text.encoding.codepages/7.0.0/system.text.encoding.codepages.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.text.encoding.extensions/4.3.0/system.text.encoding.extensions.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.text.encodings.web/7.0.0/system.text.encodings.web.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.text.json/7.0.0/system.text.json.7.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.text.regularexpressions/4.3.0/system.text.regularexpressions.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.threading/4.3.0/system.threading.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.threading.channels/4.5.0/system.threading.channels.4.5.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.threading.tasks/4.3.0/system.threading.tasks.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.threading.tasks.extensions/4.5.4/system.threading.tasks.extensions.4.5.4.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.threading.tasks.parallel/4.3.0/system.threading.tasks.parallel.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.threading.thread/4.3.0/system.threading.thread.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.threading.timer/4.3.0/system.threading.timer.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.valuetuple/4.3.0/system.valuetuple.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.windows.extensions/5.0.0/system.windows.extensions.5.0.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.xml.readerwriter/4.3.0/system.xml.readerwriter.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.xml.xdocument/4.3.0/system.xml.xdocument.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.xml.xmldocument/4.3.0/system.xml.xmldocument.4.3.0.nupkg.sha512",
+ "/Users/suphonchai/.nuget/packages/system.xml.xpath/4.3.0/system.xml.xpath.4.3.0.nupkg.sha512",
+ "/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"
],
"logs": []
}
\ No newline at end of file