diff --git a/TCM_API/TCM_API/Authorization/AllowAnonymousAttribute.cs b/TCM_API/TCM_API/Authorization/AllowAnonymousAttribute.cs new file mode 100644 index 0000000..1312226 --- /dev/null +++ b/TCM_API/TCM_API/Authorization/AllowAnonymousAttribute.cs @@ -0,0 +1,5 @@ +namespace TCM_API.Authorization; + +[AttributeUsage(AttributeTargets.Method)] +public class AllowAnonymousAttribute : Attribute +{ } \ No newline at end of file diff --git a/TCM_API/TCM_API/Authorization/AuthorizeAttribute.cs b/TCM_API/TCM_API/Authorization/AuthorizeAttribute.cs new file mode 100644 index 0000000..e5407fc --- /dev/null +++ b/TCM_API/TCM_API/Authorization/AuthorizeAttribute.cs @@ -0,0 +1,25 @@ +namespace TCM_API.Authorization; + +using Microsoft.AspNetCore.Mvc; +using Microsoft.AspNetCore.Mvc.Filters; +using TCM_API.Entities; + +[AttributeUsage(AttributeTargets.Class | AttributeTargets.Method)] +public class AuthorizeAttribute : Attribute, IAuthorizationFilter +{ + public void OnAuthorization(AuthorizationFilterContext context) + { + // skip authorization if action is decorated with [AllowAnonymous] attribute + var allowAnonymous = context.ActionDescriptor.EndpointMetadata.OfType().Any(); + if (allowAnonymous) + return; + + // authorization + var user = (User?)context.HttpContext.Items["User"]; + if (user == null) + { + // not logged in or role not authorized + context.Result = new JsonResult(new { message = "Unauthorized" }) { StatusCode = StatusCodes.Status401Unauthorized }; + } + } +} \ No newline at end of file diff --git a/TCM_API/TCM_API/Authorization/JwtMiddleware.cs b/TCM_API/TCM_API/Authorization/JwtMiddleware.cs new file mode 100644 index 0000000..a103996 --- /dev/null +++ b/TCM_API/TCM_API/Authorization/JwtMiddleware.cs @@ -0,0 +1,26 @@ +namespace TCM_API.Authorization; + +using TCM_API.Services; + +public class JwtMiddleware +{ + private readonly RequestDelegate _next; + + public JwtMiddleware(RequestDelegate next) + { + _next = next; + } + + public async Task Invoke(HttpContext context, IUserService userService, IJwtUtils jwtUtils) + { + var token = context.Request.Headers["Authorization"].FirstOrDefault()?.Split(" ").Last(); + var userId = jwtUtils.ValidateJwtToken(token); + if (userId != null) + { + // attach user to context on successful jwt validation + context.Items["User"] = userService.GetById(userId.Value); + } + var stop = "1"; + await _next(context); + } +} \ No newline at end of file diff --git a/TCM_API/TCM_API/Authorization/JwtUtils.cs b/TCM_API/TCM_API/Authorization/JwtUtils.cs new file mode 100644 index 0000000..b6e1ebf --- /dev/null +++ b/TCM_API/TCM_API/Authorization/JwtUtils.cs @@ -0,0 +1,105 @@ +namespace TCM_API.Authorization; + +using Microsoft.Extensions.Options; +using Microsoft.IdentityModel.Tokens; +using System.IdentityModel.Tokens.Jwt; +using System.Security.Claims; +using System.Text; +using TCM_API.Entities; +using TCM_API.Helpers; + +public interface IJwtUtils +{ + public string GenerateJwtToken(User user); + public int? ValidateJwtToken(string? token); +} + +public class JwtUtils : IJwtUtils +{ + private readonly AppSettings _appSettings; + + public JwtUtils(IOptions appSettings) + { + _appSettings = appSettings.Value; + + if (string.IsNullOrEmpty(_appSettings.Secret)) + throw new Exception("JWT secret not configured"); + } + + public string GenerateJwtToken(User user) + { + // generate token that is valid for 7 days + var tokenHandler = new JwtSecurityTokenHandler(); + var key = Encoding.ASCII.GetBytes(_appSettings.Secret!); + var tokenDescriptor = new SecurityTokenDescriptor + { + Subject = new ClaimsIdentity(new[] { new Claim("id", user.id.ToString()) }), + Expires = DateTime.UtcNow.AddDays(7), + SigningCredentials = new SigningCredentials(new SymmetricSecurityKey(key), SecurityAlgorithms.HmacSha256Signature) + }; + var token = tokenHandler.CreateToken(tokenDescriptor); + return tokenHandler.WriteToken(token); + } + + public int? ValidateJwtToken(string? token) + { + if (token == null) + return null; + + var tokenHandler = new JwtSecurityTokenHandler(); + var key = Encoding.ASCII.GetBytes(_appSettings.Secret!); + try + { + tokenHandler.ValidateToken(token, new TokenValidationParameters + { + ValidateIssuerSigningKey = true, + IssuerSigningKey = new SymmetricSecurityKey(key), + ValidateIssuer = false, + ValidateAudience = false, + // set clockskew to zero so tokens expire exactly at token expiration time (instead of 5 minutes later) + ClockSkew = TimeSpan.Zero + }, out SecurityToken validatedToken); + + var jwtToken = (JwtSecurityToken)validatedToken; + var userId = int.Parse(jwtToken.Claims.First(x => x.Type == "id").Value); + + // return user id from JWT token if validation successful + return userId; + } + catch + { + // return null if validation fails + return null; + } + } + + + //0523 + public bool ValidateToken(string token) + { + var tokenHandler = new JwtSecurityTokenHandler(); + var jwtSecret = "your_jwt_secret"; // JWT 密钥,应与生成令牌时使用的密钥相匹配 + + var validationParameters = new TokenValidationParameters + { + ValidateIssuerSigningKey = true, + IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(jwtSecret)), + ValidateIssuer = false, + ValidateAudience = false, + ValidateLifetime = true, + ClockSkew = TimeSpan.Zero // 设置为零以确保令牌过期时立即失效 + }; + + try + { + SecurityToken validatedToken; + tokenHandler.ValidateToken(token, validationParameters, out validatedToken); + return true; + } + catch + { + return false; + } + } + +} \ No newline at end of file diff --git a/TCM_API/TCM_API/Controllers/UsersController.cs b/TCM_API/TCM_API/Controllers/UsersController.cs new file mode 100644 index 0000000..98b5212 --- /dev/null +++ b/TCM_API/TCM_API/Controllers/UsersController.cs @@ -0,0 +1,56 @@ +namespace WebApi.Controllers; + +using Microsoft.AspNetCore.Mvc; +using Newtonsoft.Json.Linq; +using NuGet.Common; +using TCM_API.Authorization; +using TCM_API.Models; +using TCM_API.Services; + +[ApiController] +[Authorize] +[Route("[controller]")] +public class UsersController : ControllerBase +{ + private IUserService _userService; + + public UsersController(IUserService userService) + { + _userService = userService; + } + + [AllowAnonymous] + [HttpPost("authenticate")] + public IActionResult Authenticate(AuthenticateRequest model) + { + var response = _userService.Authenticate(model); + + if (response == null) + return BadRequest(new { message = "Username or password is incorrect" }); + + // 将令牌添加到响应头中 + Response.Headers.Add("Authorization", "Bearer " + response.Token); + + // 将令牌保存在Cookie或其他适当的位置 + Response.Cookies.Append("token", response.Token); + return Ok(response); + // 重定向到另一个页面 + //return RedirectToAction("/Park_spaces/Parking_spaces_total_table"); + //return RedirectToAction("Parking_spaces_total_table", "Park_spaces"); + } + + [HttpGet] + public IActionResult GetAll() + { + var users = _userService.GetAll(); + return Ok(users); + } + + [HttpGet("token")] + public IActionResult Token() + { + + return Ok(); + } + +} diff --git a/TCM_API/TCM_API/Controllers/WeatherForecastController.cs b/TCM_API/TCM_API/Controllers/WeatherForecastController.cs deleted file mode 100644 index 3c28625..0000000 --- a/TCM_API/TCM_API/Controllers/WeatherForecastController.cs +++ /dev/null @@ -1,33 +0,0 @@ -using Microsoft.AspNetCore.Mvc; - -namespace TCM_API.Controllers -{ - [ApiController] - [Route("[controller]")] - public class WeatherForecastController : ControllerBase - { - private static readonly string[] Summaries = new[] - { - "Freezing", "Bracing", "Chilly", "Cool", "Mild", "Warm", "Balmy", "Hot", "Sweltering", "Scorching" - }; - - private readonly ILogger _logger; - - public WeatherForecastController(ILogger logger) - { - _logger = logger; - } - - [HttpGet(Name = "GetWeatherForecast")] - public IEnumerable Get() - { - return Enumerable.Range(1, 5).Select(index => new WeatherForecast - { - Date = DateOnly.FromDateTime(DateTime.Now.AddDays(index)), - TemperatureC = Random.Shared.Next(-20, 55), - Summary = Summaries[Random.Shared.Next(Summaries.Length)] - }) - .ToArray(); - } - } -} diff --git a/TCM_API/TCM_API/Entities/User.cs b/TCM_API/TCM_API/Entities/User.cs new file mode 100644 index 0000000..8afe8df --- /dev/null +++ b/TCM_API/TCM_API/Entities/User.cs @@ -0,0 +1,15 @@ +namespace TCM_API.Entities; + +using MessagePack; +using System.Text.Json.Serialization; + +public class User +{ + public int id { get; set; } + public string? firstname { get; set; } + public string? lastname { get; set; } + public string? username { get; set; } + + [JsonIgnore] + public string? password { get; set; } +} \ No newline at end of file diff --git a/TCM_API/TCM_API/Helpers/AppSettings.cs b/TCM_API/TCM_API/Helpers/AppSettings.cs new file mode 100644 index 0000000..299f362 --- /dev/null +++ b/TCM_API/TCM_API/Helpers/AppSettings.cs @@ -0,0 +1,6 @@ +namespace TCM_API.Helpers; + +public class AppSettings +{ + public string? Secret { get; set; } +} \ No newline at end of file diff --git a/TCM_API/TCM_API/Models/AuthenticateRequest.cs b/TCM_API/TCM_API/Models/AuthenticateRequest.cs new file mode 100644 index 0000000..0222b67 --- /dev/null +++ b/TCM_API/TCM_API/Models/AuthenticateRequest.cs @@ -0,0 +1,12 @@ +namespace TCM_API.Models; + +using System.ComponentModel.DataAnnotations; + +public class AuthenticateRequest +{ + [Required] + public string? Username { get; set; } + + [Required] + public string? Password { get; set; } +} \ No newline at end of file diff --git a/TCM_API/TCM_API/Models/AuthenticateResponse.cs b/TCM_API/TCM_API/Models/AuthenticateResponse.cs new file mode 100644 index 0000000..9acade3 --- /dev/null +++ b/TCM_API/TCM_API/Models/AuthenticateResponse.cs @@ -0,0 +1,22 @@ +namespace TCM_API.Models; + +using TCM_API.Entities; + +public class AuthenticateResponse +{ + public int id { get; set; } + public string? firstname { get; set; } + public string? lastname { get; set; } + public string? username { get; set; } + public string Token { get; set; } + + + public AuthenticateResponse(User user, string token) + { + id = user.id; + firstname = user.firstname; + lastname = user.lastname; + username = user.username; + Token = token; + } +} \ No newline at end of file diff --git a/TCM_API/TCM_API/Models/TEST_01.cs b/TCM_API/TCM_API/Models/TEST_01.cs new file mode 100644 index 0000000..c08ba45 --- /dev/null +++ b/TCM_API/TCM_API/Models/TEST_01.cs @@ -0,0 +1,6 @@ +namespace TCM_API.Models +{ + public class TEST_01 + { + } +} diff --git a/TCM_API/TCM_API/Program.cs b/TCM_API/TCM_API/Program.cs index 48863a6..bca39d3 100644 --- a/TCM_API/TCM_API/Program.cs +++ b/TCM_API/TCM_API/Program.cs @@ -1,4 +1,94 @@ +using Microsoft.AspNetCore.Authentication.JwtBearer; +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.DependencyInjection; +using TCM_API.Authorization; +using TCM_API.Helpers; +using System.Configuration; +using TCM_API.Services; +using Microsoft.IdentityModel.Tokens; +using System.Text; +using Microsoft.OpenApi.Models; + + + var builder = WebApplication.CreateBuilder(args); +//在 ASP.NET Core 中啟用 CORS (跨原始來源要求) +builder.Services.AddCors(); +// Add services to the container. +builder.Services.AddControllers(); + +// 連線PostgreSQL資料庫 +var connectionString = "Server=leovip125.ddns.net;UserID=postgres;Password=vip125;Database=TCM;port=5432;Search Path=public;CommandTimeout=1800"; +builder.Services.AddDbContext(opt => opt.UseNpgsql(connectionString)); + + + +//身分驗證 +//add services to DI container +{ + var services = builder.Services; + services.AddCors(); + services.AddControllers(); + + // configure strongly typed settings object + services.Configure(builder.Configuration.GetSection("AppSettings")); + + // 配置JWT身份验证 + var jwtSettings = builder.Configuration.GetSection("AppSettings").Get(); + + services.AddAuthentication(JwtBearerDefaults.AuthenticationScheme) + .AddJwtBearer(options => + { + options.TokenValidationParameters = new TokenValidationParameters + { + ValidateIssuer = false, + ValidateAudience = false, + ValidateIssuerSigningKey = true, + //ValidIssuer = "your_issuer", + // ValidAudience = "your_audience", + ClockSkew = TimeSpan.Zero, + IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(jwtSettings.Secret)) + }; + }); + services.AddSwaggerGen(c => + { + c.SwaggerDoc("v1", new OpenApiInfo { Title = "TCM_API", Version = "v1" }); + + // Configure Swagger to use JWT authentication + c.AddSecurityDefinition("Bearer", new OpenApiSecurityScheme + { + Description = "JWT Authorization header using the Bearer scheme", + Name = "Authorization", + In = ParameterLocation.Header, + Type = SecuritySchemeType.ApiKey, + Scheme = "Bearer" + }); + + // 将JWT令牌作为所有端点的要求添加到Swagger文档 + //ˇc.OperationFilter(); + c.AddSecurityRequirement(new OpenApiSecurityRequirement + { + { + new OpenApiSecurityScheme + { + Reference = new OpenApiReference + { + Type = ReferenceType.SecurityScheme, + Id = "Bearer" + } + }, + new string[] { } + } + }); + }); + // configure DI for application services + services.AddScoped(); + services.AddScoped(); + + // 注册 HttpClient 服务 + services.AddHttpClient(); + +} // Add services to the container. @@ -9,17 +99,48 @@ builder.Services.AddSwaggerGen(); var app = builder.Build(); + +//身分驗證 +// configure HTTP request pipeline +{ + // global cors policy + app.UseCors(x => x + .AllowAnyOrigin() + .AllowAnyMethod() + .AllowAnyHeader()); + + // custom jwt auth middleware + app.UseMiddleware(); + + app.MapControllers(); +} + // Configure the HTTP request pipeline. if (app.Environment.IsDevelopment()) { app.UseSwagger(); - app.UseSwaggerUI(); + //app.UseSwaggerUI(); + app.UseSwaggerUI(c => + { + c.SwaggerEndpoint("/swagger/v1/swagger.json", "TCM_API"); + }); } +//在 ASP.NET Core 中啟用 CORS (跨原始來源要求) +// Shows UseCors with CorsPolicyBuilder. +app.UseCors(builder => +{ + builder.AllowAnyOrigin() + .AllowAnyMethod() + .AllowAnyHeader(); +}); app.UseHttpsRedirection(); +app.UseAuthentication(); + app.UseAuthorization(); app.MapControllers(); app.Run(); + diff --git a/TCM_API/TCM_API/Services/SqlContext.cs b/TCM_API/TCM_API/Services/SqlContext.cs new file mode 100644 index 0000000..23d4aa3 --- /dev/null +++ b/TCM_API/TCM_API/Services/SqlContext.cs @@ -0,0 +1,39 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using Microsoft.Extensions.Configuration.Json; +using System.Threading.Tasks; +using Microsoft.EntityFrameworkCore; +using TCM_API.Models; +using TCM_API.Entities; + + +namespace TCM_API.Services +{ + public class SqlContext : DbContext + { + + public SqlContext(DbContextOptions options) : base(options) + { + //連接PostgreSQL + AppContext.SetSwitch("Npgsql.EnableLegacyTimestampBehavior", true); + AppContext.SetSwitch("Npgsql.DisableDateTimeInfinityConversions", true); + } + + + //public DbSet e_table_v { get; set; } = null!; + //public DbSet test_0525 { get; set; } = null!; // Model名稱 test_0330 SQL名稱 + public DbSet user_table { get; set; } = null!; + protected override void OnModelCreating(ModelBuilder builder) + { + + base.OnModelCreating(builder); + //builder.Entity().HasKey(o => new { o.user_id }); //Primary Key + builder.Entity().HasKey(o => new { o.id }); //Primary Key + + } + + + } + +} \ No newline at end of file diff --git a/TCM_API/TCM_API/Services/UserService.cs b/TCM_API/TCM_API/Services/UserService.cs new file mode 100644 index 0000000..a94e32c --- /dev/null +++ b/TCM_API/TCM_API/Services/UserService.cs @@ -0,0 +1,71 @@ +namespace TCM_API.Services; +using Microsoft.EntityFrameworkCore; +using TCM_API.Authorization; +using TCM_API.Entities; +using TCM_API.Models; + +public interface IUserService +{ + AuthenticateResponse? Authenticate(AuthenticateRequest model); + IEnumerable GetAll(); + User? GetById(int id); +} + +public class UserService : IUserService +{ + /* + // users hardcoded for simplicity, store in a db with hashed passwords in production applications + private List user_test = new List + { + new User { Id = 1, FirstName = "Test", LastName = "User", Username = "test", Password = "test" }, + new User { Id = 2, FirstName = "Test", LastName = "User", Username = "admin", Password = "admin" } + }; + + public DbSet user_test { get; set; } = null!; + + + public List GetUsers () + { + return _dbContext.user_test.ToList(); + } + + */ + + private readonly IJwtUtils _jwtUtils; + + public UserService(IJwtUtils jwtUtils, SqlContext dbContext) + { + _jwtUtils = jwtUtils; + _dbContext = dbContext; + } + + + private readonly SqlContext _dbContext; + + + public AuthenticateResponse? Authenticate(AuthenticateRequest model) + { + var user = _dbContext.user_table.SingleOrDefault(x => x.username == model.Username && x.password == model.Password); + + // return null if user not found + if (user == null) return null; + + // authentication successful so generate jwt token + var token = _jwtUtils.GenerateJwtToken(user); + + return new AuthenticateResponse(user, token); + } + + public IEnumerable GetAll() + { + return _dbContext.user_table; + } + + public User? GetById(int id) + { + return _dbContext.user_table.FirstOrDefault(x => x.id == id); + } + + + +} \ No newline at end of file diff --git a/TCM_API/TCM_API/TCM_API.csproj b/TCM_API/TCM_API/TCM_API.csproj index 5b63163..43141d7 100644 --- a/TCM_API/TCM_API/TCM_API.csproj +++ b/TCM_API/TCM_API/TCM_API.csproj @@ -9,8 +9,23 @@ + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + + + + + diff --git a/TCM_API/TCM_API/WeatherForecast.cs b/TCM_API/TCM_API/WeatherForecast.cs deleted file mode 100644 index efb0d12..0000000 --- a/TCM_API/TCM_API/WeatherForecast.cs +++ /dev/null @@ -1,13 +0,0 @@ -namespace TCM_API -{ - public class WeatherForecast - { - public DateOnly Date { get; set; } - - public int TemperatureC { get; set; } - - public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); - - public string? Summary { get; set; } - } -} diff --git a/TCM_API/TCM_API/appsettings.json b/TCM_API/TCM_API/appsettings.json index 10f68b8..467ce11 100644 --- a/TCM_API/TCM_API/appsettings.json +++ b/TCM_API/TCM_API/appsettings.json @@ -1,4 +1,7 @@ { + "AppSettings": { + "Secret": "TCM token test jwt lamiter local 1234567" + }, "Logging": { "LogLevel": { "Default": "Information", diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Azure.Core.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Azure.Core.dll new file mode 100644 index 0000000..791391b Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Azure.Core.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Azure.Identity.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Azure.Identity.dll new file mode 100644 index 0000000..4a32fd0 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Azure.Identity.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Humanizer.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Humanizer.dll new file mode 100644 index 0000000..c9a7ef8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Humanizer.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll new file mode 100644 index 0000000..6e55896 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.AspNetCore.Authorization.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.AspNetCore.Authorization.dll new file mode 100644 index 0000000..16ea612 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.AspNetCore.Authorization.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.AspNetCore.Metadata.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.AspNetCore.Metadata.dll new file mode 100644 index 0000000..4ccbea6 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.AspNetCore.Metadata.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.AspNetCore.Razor.Language.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.AspNetCore.Razor.Language.dll new file mode 100644 index 0000000..e111d7b Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.AspNetCore.Razor.Language.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..f5f1cee Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Bcl.Memory.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Bcl.Memory.dll new file mode 100644 index 0000000..84f76cb Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Bcl.Memory.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Build.Framework.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Build.Framework.dll new file mode 100644 index 0000000..9e4134f Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Build.Framework.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Build.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Build.dll new file mode 100644 index 0000000..d740a3a Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Build.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll new file mode 100644 index 0000000..e070bd5 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Features.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Features.dll new file mode 100644 index 0000000..5d641f8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Features.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll new file mode 100644 index 0000000..2e99f76 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll new file mode 100644 index 0000000..8d56de1 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.Elfie.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.Elfie.dll new file mode 100644 index 0000000..b131340 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.Elfie.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.Features.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.Features.dll new file mode 100644 index 0000000..9b007e4 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.Features.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.Razor.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.Razor.dll new file mode 100644 index 0000000..25ee99a Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.Razor.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.Scripting.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.Scripting.dll new file mode 100644 index 0000000..2dc47f1 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.Scripting.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll new file mode 100644 index 0000000..7253875 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.Workspaces.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll new file mode 100644 index 0000000..7d537db Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.CodeAnalysis.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..ad230c9 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Data.SqlClient.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.DiaSymReader.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.DiaSymReader.dll new file mode 100644 index 0000000..b234cfd Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.DiaSymReader.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.DotNet.Scaffolding.Shared.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.DotNet.Scaffolding.Shared.dll new file mode 100644 index 0000000..bfe6b6e Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.DotNet.Scaffolding.Shared.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100644 index 0000000..2169cf8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll new file mode 100644 index 0000000..7ba3d94 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Design.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100644 index 0000000..f8c58d0 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll new file mode 100644 index 0000000..9c39273 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll new file mode 100644 index 0000000..b628ed6 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.EntityFrameworkCore.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll new file mode 100644 index 0000000..077b1b6 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..81ed3de Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..bd71a2b Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..8905537 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..f9d1dc6 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..35905b6 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.Logging.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.Options.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..a7b3f21 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Extensions.Options.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll new file mode 100644 index 0000000..1a2779c Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Identity.Client.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Identity.Client.dll new file mode 100644 index 0000000..eac2f91 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Identity.Client.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll new file mode 100644 index 0000000..a34e976 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 0000000..bef1e02 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..a533925 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 0000000..fed943a Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 0000000..da9cab0 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.Protocols.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..2f55b44 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.NET.StringTools.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.NET.StringTools.dll new file mode 100644 index 0000000..0eb5fb2 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.NET.StringTools.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll new file mode 100644 index 0000000..ddeaa86 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.SqlServer.Server.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll new file mode 100644 index 0000000..5b7c213 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll new file mode 100644 index 0000000..73a383a Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll new file mode 100644 index 0000000..fa7a8d8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll new file mode 100644 index 0000000..8c9a031 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll new file mode 100644 index 0000000..f5d5188 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll new file mode 100644 index 0000000..fd94b08 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..4f50adb Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Mono.TextTemplating.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Mono.TextTemplating.dll new file mode 100644 index 0000000..62f056d Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Mono.TextTemplating.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Newtonsoft.Json.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..d035c38 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Newtonsoft.Json.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll new file mode 100644 index 0000000..4b4f0fc Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/Npgsql.dll b/TCM_API/TCM_API/bin/Debug/net8.0/Npgsql.dll new file mode 100644 index 0000000..fde1387 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/Npgsql.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Common.dll b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Common.dll new file mode 100644 index 0000000..5e7eb41 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Common.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Configuration.dll b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Configuration.dll new file mode 100644 index 0000000..459de99 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Configuration.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.DependencyResolver.Core.dll b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.DependencyResolver.Core.dll new file mode 100644 index 0000000..023e6e9 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.DependencyResolver.Core.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Frameworks.dll b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Frameworks.dll new file mode 100644 index 0000000..504ff2c Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Frameworks.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.LibraryModel.dll b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.LibraryModel.dll new file mode 100644 index 0000000..24f8782 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.LibraryModel.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Packaging.dll b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Packaging.dll new file mode 100644 index 0000000..6ff87f6 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Packaging.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.ProjectModel.dll b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.ProjectModel.dll new file mode 100644 index 0000000..1a69df2 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.ProjectModel.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Protocol.dll b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Protocol.dll new file mode 100644 index 0000000..bcf1a12 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Protocol.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Versioning.dll b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Versioning.dll new file mode 100644 index 0000000..8cccc5c Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/NuGet.Versioning.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/System.CodeDom.dll b/TCM_API/TCM_API/bin/Debug/net8.0/System.CodeDom.dll new file mode 100644 index 0000000..873495d Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/System.CodeDom.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/System.Composition.AttributedModel.dll b/TCM_API/TCM_API/bin/Debug/net8.0/System.Composition.AttributedModel.dll new file mode 100644 index 0000000..1431751 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/System.Composition.AttributedModel.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/System.Composition.Convention.dll b/TCM_API/TCM_API/bin/Debug/net8.0/System.Composition.Convention.dll new file mode 100644 index 0000000..e9dacb1 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/System.Composition.Convention.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/System.Composition.Hosting.dll b/TCM_API/TCM_API/bin/Debug/net8.0/System.Composition.Hosting.dll new file mode 100644 index 0000000..8381202 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/System.Composition.Hosting.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/System.Composition.Runtime.dll b/TCM_API/TCM_API/bin/Debug/net8.0/System.Composition.Runtime.dll new file mode 100644 index 0000000..d583c3a Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/System.Composition.Runtime.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/System.Composition.TypedParts.dll b/TCM_API/TCM_API/bin/Debug/net8.0/System.Composition.TypedParts.dll new file mode 100644 index 0000000..2b278d7 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/System.Composition.TypedParts.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll b/TCM_API/TCM_API/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..e610807 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/System.Configuration.ConfigurationManager.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/System.Drawing.Common.dll b/TCM_API/TCM_API/bin/Debug/net8.0/System.Drawing.Common.dll new file mode 100644 index 0000000..310d5e8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/System.Drawing.Common.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/System.Formats.Asn1.dll b/TCM_API/TCM_API/bin/Debug/net8.0/System.Formats.Asn1.dll new file mode 100644 index 0000000..16cc849 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/System.Formats.Asn1.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll b/TCM_API/TCM_API/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 0000000..b99fef3 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/System.Memory.Data.dll b/TCM_API/TCM_API/bin/Debug/net8.0/System.Memory.Data.dll new file mode 100644 index 0000000..6f2a3e0 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/System.Memory.Data.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/System.Reflection.MetadataLoadContext.dll b/TCM_API/TCM_API/bin/Debug/net8.0/System.Reflection.MetadataLoadContext.dll new file mode 100644 index 0000000..3063b24 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/System.Reflection.MetadataLoadContext.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/System.Runtime.Caching.dll b/TCM_API/TCM_API/bin/Debug/net8.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..14826eb Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/System.Runtime.Caching.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll b/TCM_API/TCM_API/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..93e0dd0 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/System.Security.Permissions.dll b/TCM_API/TCM_API/bin/Debug/net8.0/System.Security.Permissions.dll new file mode 100644 index 0000000..9d8e76c Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/System.Security.Permissions.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/System.Windows.Extensions.dll b/TCM_API/TCM_API/bin/Debug/net8.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..23a5f31 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/System.Windows.Extensions.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.deps.json b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.deps.json index 9873371..85b37cf 100644 --- a/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.deps.json +++ b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.deps.json @@ -8,14 +8,1439 @@ ".NETCoreApp,Version=v8.0": { "TCM_API/1.0.0": { "dependencies": { + "Microsoft.AspNetCore.Authentication.JwtBearer": "8.0.10", + "Microsoft.AspNetCore.Authorization": "8.0.10", + "Microsoft.EntityFrameworkCore.SqlServer": "8.0.10", + "Microsoft.EntityFrameworkCore.Tools": "8.0.10", "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": "1.19.6", - "Swashbuckle.AspNetCore": "6.4.0" + "Microsoft.VisualStudio.Web.CodeGeneration.Design": "8.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.10", + "Swashbuckle.AspNetCore": "6.4.0", + "System.IdentityModel.Tokens.Jwt": "8.3.1" }, "runtime": { "TCM_API.dll": {} } }, + "Azure.Core/1.35.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Memory.Data": "1.0.2", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "7.0.0", + "System.Text.Json": "7.0.3", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "assemblyVersion": "1.35.0.0", + "fileVersion": "1.3500.23.45706" + } + } + }, + "Azure.Identity/1.10.3": { + "dependencies": { + "Azure.Core": "1.35.0", + "Microsoft.Identity.Client": "4.56.0", + "Microsoft.Identity.Client.Extensions.Msal": "4.56.0", + "System.Memory": "4.5.4", + "System.Security.Cryptography.ProtectedData": "7.0.0", + "System.Text.Json": "7.0.3", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "assemblyVersion": "1.10.3.0", + "fileVersion": "1.1000.323.51804" + } + } + }, + "Humanizer/2.14.1": { + "dependencies": { + "Humanizer.Core.af": "2.14.1", + "Humanizer.Core.ar": "2.14.1", + "Humanizer.Core.az": "2.14.1", + "Humanizer.Core.bg": "2.14.1", + "Humanizer.Core.bn-BD": "2.14.1", + "Humanizer.Core.cs": "2.14.1", + "Humanizer.Core.da": "2.14.1", + "Humanizer.Core.de": "2.14.1", + "Humanizer.Core.el": "2.14.1", + "Humanizer.Core.es": "2.14.1", + "Humanizer.Core.fa": "2.14.1", + "Humanizer.Core.fi-FI": "2.14.1", + "Humanizer.Core.fr": "2.14.1", + "Humanizer.Core.fr-BE": "2.14.1", + "Humanizer.Core.he": "2.14.1", + "Humanizer.Core.hr": "2.14.1", + "Humanizer.Core.hu": "2.14.1", + "Humanizer.Core.hy": "2.14.1", + "Humanizer.Core.id": "2.14.1", + "Humanizer.Core.is": "2.14.1", + "Humanizer.Core.it": "2.14.1", + "Humanizer.Core.ja": "2.14.1", + "Humanizer.Core.ko-KR": "2.14.1", + "Humanizer.Core.ku": "2.14.1", + "Humanizer.Core.lv": "2.14.1", + "Humanizer.Core.ms-MY": "2.14.1", + "Humanizer.Core.mt": "2.14.1", + "Humanizer.Core.nb": "2.14.1", + "Humanizer.Core.nb-NO": "2.14.1", + "Humanizer.Core.nl": "2.14.1", + "Humanizer.Core.pl": "2.14.1", + "Humanizer.Core.pt": "2.14.1", + "Humanizer.Core.ro": "2.14.1", + "Humanizer.Core.ru": "2.14.1", + "Humanizer.Core.sk": "2.14.1", + "Humanizer.Core.sl": "2.14.1", + "Humanizer.Core.sr": "2.14.1", + "Humanizer.Core.sr-Latn": "2.14.1", + "Humanizer.Core.sv": "2.14.1", + "Humanizer.Core.th-TH": "2.14.1", + "Humanizer.Core.tr": "2.14.1", + "Humanizer.Core.uk": "2.14.1", + "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", + "Humanizer.Core.uz-Latn-UZ": "2.14.1", + "Humanizer.Core.vi": "2.14.1", + "Humanizer.Core.zh-CN": "2.14.1", + "Humanizer.Core.zh-Hans": "2.14.1", + "Humanizer.Core.zh-Hant": "2.14.1" + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Humanizer.Core.af/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/af/Humanizer.resources.dll": { + "locale": "af" + } + } + }, + "Humanizer.Core.ar/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/ar/Humanizer.resources.dll": { + "locale": "ar" + } + } + }, + "Humanizer.Core.az/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/az/Humanizer.resources.dll": { + "locale": "az" + } + } + }, + "Humanizer.Core.bg/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/bg/Humanizer.resources.dll": { + "locale": "bg" + } + } + }, + "Humanizer.Core.bn-BD/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/bn-BD/Humanizer.resources.dll": { + "locale": "bn-BD" + } + } + }, + "Humanizer.Core.cs/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/cs/Humanizer.resources.dll": { + "locale": "cs" + } + } + }, + "Humanizer.Core.da/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/da/Humanizer.resources.dll": { + "locale": "da" + } + } + }, + "Humanizer.Core.de/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/de/Humanizer.resources.dll": { + "locale": "de" + } + } + }, + "Humanizer.Core.el/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/el/Humanizer.resources.dll": { + "locale": "el" + } + } + }, + "Humanizer.Core.es/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/es/Humanizer.resources.dll": { + "locale": "es" + } + } + }, + "Humanizer.Core.fa/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/fa/Humanizer.resources.dll": { + "locale": "fa" + } + } + }, + "Humanizer.Core.fi-FI/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/fi-FI/Humanizer.resources.dll": { + "locale": "fi-FI" + } + } + }, + "Humanizer.Core.fr/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/fr/Humanizer.resources.dll": { + "locale": "fr" + } + } + }, + "Humanizer.Core.fr-BE/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/fr-BE/Humanizer.resources.dll": { + "locale": "fr-BE" + } + } + }, + "Humanizer.Core.he/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/he/Humanizer.resources.dll": { + "locale": "he" + } + } + }, + "Humanizer.Core.hr/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/hr/Humanizer.resources.dll": { + "locale": "hr" + } + } + }, + "Humanizer.Core.hu/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/hu/Humanizer.resources.dll": { + "locale": "hu" + } + } + }, + "Humanizer.Core.hy/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/hy/Humanizer.resources.dll": { + "locale": "hy" + } + } + }, + "Humanizer.Core.id/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/id/Humanizer.resources.dll": { + "locale": "id" + } + } + }, + "Humanizer.Core.is/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/is/Humanizer.resources.dll": { + "locale": "is" + } + } + }, + "Humanizer.Core.it/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/it/Humanizer.resources.dll": { + "locale": "it" + } + } + }, + "Humanizer.Core.ja/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/ja/Humanizer.resources.dll": { + "locale": "ja" + } + } + }, + "Humanizer.Core.ko-KR/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { + "locale": "ko-KR" + } + } + }, + "Humanizer.Core.ku/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/ku/Humanizer.resources.dll": { + "locale": "ku" + } + } + }, + "Humanizer.Core.lv/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/lv/Humanizer.resources.dll": { + "locale": "lv" + } + } + }, + "Humanizer.Core.ms-MY/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { + "locale": "ms-MY" + } + } + }, + "Humanizer.Core.mt/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/netstandard2.0/mt/Humanizer.resources.dll": { + "locale": "mt" + } + } + }, + "Humanizer.Core.nb/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/nb/Humanizer.resources.dll": { + "locale": "nb" + } + } + }, + "Humanizer.Core.nb-NO/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/nb-NO/Humanizer.resources.dll": { + "locale": "nb-NO" + } + } + }, + "Humanizer.Core.nl/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/nl/Humanizer.resources.dll": { + "locale": "nl" + } + } + }, + "Humanizer.Core.pl/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/pl/Humanizer.resources.dll": { + "locale": "pl" + } + } + }, + "Humanizer.Core.pt/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/pt/Humanizer.resources.dll": { + "locale": "pt" + } + } + }, + "Humanizer.Core.ro/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/ro/Humanizer.resources.dll": { + "locale": "ro" + } + } + }, + "Humanizer.Core.ru/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/ru/Humanizer.resources.dll": { + "locale": "ru" + } + } + }, + "Humanizer.Core.sk/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/sk/Humanizer.resources.dll": { + "locale": "sk" + } + } + }, + "Humanizer.Core.sl/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/sl/Humanizer.resources.dll": { + "locale": "sl" + } + } + }, + "Humanizer.Core.sr/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/sr/Humanizer.resources.dll": { + "locale": "sr" + } + } + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/sr-Latn/Humanizer.resources.dll": { + "locale": "sr-Latn" + } + } + }, + "Humanizer.Core.sv/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/sv/Humanizer.resources.dll": { + "locale": "sv" + } + } + }, + "Humanizer.Core.th-TH/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { + "locale": "th-TH" + } + } + }, + "Humanizer.Core.tr/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/tr/Humanizer.resources.dll": { + "locale": "tr" + } + } + }, + "Humanizer.Core.uk/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/uk/Humanizer.resources.dll": { + "locale": "uk" + } + } + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { + "locale": "uz-Cyrl-UZ" + } + } + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { + "locale": "uz-Latn-UZ" + } + } + }, + "Humanizer.Core.vi/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/vi/Humanizer.resources.dll": { + "locale": "vi" + } + } + }, + "Humanizer.Core.zh-CN/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/zh-CN/Humanizer.resources.dll": { + "locale": "zh-CN" + } + } + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/zh-Hans/Humanizer.resources.dll": { + "locale": "zh-Hans" + } + } + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/zh-Hant/Humanizer.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.10": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2" + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46804" + } + } + }, + "Microsoft.AspNetCore.Authorization/8.0.10": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "8.0.10", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + } + } + }, + "Microsoft.AspNetCore.Metadata/8.0.10": { + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + } + } + }, + "Microsoft.AspNetCore.Razor.Language/6.0.24": { + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { + "assemblyVersion": "6.0.24.0", + "fileVersion": "6.0.2423.51812" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Bcl.Memory/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Bcl.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Build/17.8.3": { + "dependencies": { + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.NET.StringTools": "17.8.3", + "System.Collections.Immutable": "7.0.0", + "System.Configuration.ConfigurationManager": "7.0.0", + "System.Reflection.Metadata": "7.0.0", + "System.Reflection.MetadataLoadContext": "7.0.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Threading.Tasks.Dataflow": "7.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Build.dll": { + "assemblyVersion": "15.1.0.0", + "fileVersion": "17.8.3.51904" + } + } + }, + "Microsoft.Build.Framework/17.8.3": { + "runtime": { + "lib/net8.0/Microsoft.Build.Framework.dll": { + "assemblyVersion": "15.1.0.0", + "fileVersion": "17.8.3.51904" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": { + "assemblyVersion": "3.3.2.30504", + "fileVersion": "3.3.2.30504" + } + } + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "System.Collections.Immutable": "7.0.0", + "System.Reflection.Metadata": "7.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Features/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Features": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Elfie/1.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "7.0.0", + "System.Data.DataSetExtensions": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.16" + } + } + }, + "Microsoft.CodeAnalysis.Features/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Elfie": "1.0.0", + "Microsoft.CodeAnalysis.Scripting.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0", + "Microsoft.DiaSymReader": "2.0.0", + "System.Text.Json": "7.0.3" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Features.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Razor/6.0.24": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.24", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { + "assemblyVersion": "6.0.24.0", + "fileVersion": "6.0.2423.51812" + } + } + }, + "Microsoft.CodeAnalysis.Scripting.Common/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Scripting.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "System.Composition": "7.0.0", + "System.IO.Pipelines": "7.0.0", + "System.Threading.Channels": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.SqlClient/5.1.5": { + "dependencies": { + "Azure.Identity": "1.10.3", + "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1", + "Microsoft.Identity.Client": "4.56.0", + "Microsoft.IdentityModel.JsonWebTokens": "8.3.1", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "7.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Runtime.Caching": "6.0.0", + "System.Security.Cryptography.Cng": "5.0.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Text.Encodings.Web": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.15.24027.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.15.24027.2" + }, + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.15.24027.2" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "5.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "5.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "5.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "5.1.1.0" + } + } + }, + "Microsoft.DiaSymReader/2.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.DiaSymReader.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.23.22804" + } + } + }, + "Microsoft.DotNet.Scaffolding.Shared/8.0.7": { + "dependencies": { + "Humanizer": "2.14.1", + "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0", + "Microsoft.Extensions.DependencyModel": "8.0.2", + "Mono.TextTemplating": "2.3.1", + "Newtonsoft.Json": "13.0.3", + "NuGet.ProjectModel": "6.11.0", + "System.Formats.Asn1": "8.0.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.dll": { + "assemblyVersion": "8.0.7.0", + "fileVersion": "8.0.724.53004" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10", + "Microsoft.Extensions.Caching.Memory": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {}, + "Microsoft.EntityFrameworkCore.Design/8.0.10": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "8.0.10", + "Microsoft.Extensions.DependencyModel": "8.0.2", + "Mono.TextTemplating": "2.3.1" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.EntityFrameworkCore.SqlServer/8.0.10": { + "dependencies": { + "Microsoft.Data.SqlClient": "5.1.5", + "Microsoft.EntityFrameworkCore.Relational": "8.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.EntityFrameworkCore.Tools/8.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "8.0.10" + } + }, "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "8.0.0.2", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Logging/8.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Options/8.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.224.6711" + } + } + }, + "Microsoft.Extensions.Primitives/8.0.0": {}, + "Microsoft.Identity.Client/4.56.0": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.3.1" + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.56.0.0", + "fileVersion": "4.56.0.0" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.56.0": { + "dependencies": { + "Microsoft.Identity.Client": "4.56.0", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Security.Cryptography.ProtectedData": "7.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "assemblyVersion": "4.56.0.0", + "fileVersion": "4.56.0.0" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.3.1": { + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.3.1.0", + "fileVersion": "8.3.1.60117" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.3.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.3.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.3.1.0", + "fileVersion": "8.3.1.60117" + } + } + }, + "Microsoft.IdentityModel.Logging/8.3.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.3.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.3.1.0", + "fileVersion": "8.3.1.60117" + } + } + }, + "Microsoft.IdentityModel.Protocols/7.1.2": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "8.3.1", + "Microsoft.IdentityModel.Tokens": "8.3.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "7.1.2.0", + "fileVersion": "7.1.2.41121" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "7.1.2", + "System.IdentityModel.Tokens.Jwt": "8.3.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "7.1.2.0", + "fileVersion": "7.1.2.41121" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.3.1": { + "dependencies": { + "Microsoft.Bcl.Memory": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.IdentityModel.Logging": "8.3.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.3.1.0", + "fileVersion": "8.3.1.60117" + } + } + }, + "Microsoft.NET.StringTools/17.8.3": { + "runtime": { + "lib/net8.0/Microsoft.NET.StringTools.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "17.8.3.51904" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, "Microsoft.OpenApi/1.2.3": { "runtime": { "lib/netstandard2.0/Microsoft.OpenApi.dll": { @@ -24,7 +1449,264 @@ } } }, + "Microsoft.SqlServer.Server/1.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.19.6": {}, + "Microsoft.VisualStudio.Web.CodeGeneration/8.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "8.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { + "assemblyVersion": "8.0.7.0", + "fileVersion": "8.0.724.53004" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/8.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "8.0.7", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { + "assemblyVersion": "8.0.7.0", + "fileVersion": "8.0.724.53004" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/8.0.7": { + "dependencies": { + "Microsoft.DotNet.Scaffolding.Shared": "8.0.7", + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "8.0.7" + }, + "runtime": { + "lib/net8.0/dotnet-aspnet-codegenerator-design.dll": { + "assemblyVersion": "8.0.7.0", + "fileVersion": "8.0.724.53004" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/8.0.7": { + "dependencies": { + "Microsoft.DotNet.Scaffolding.Shared": "8.0.7", + "Microsoft.VisualStudio.Web.CodeGeneration.Core": "8.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { + "assemblyVersion": "8.0.7.0", + "fileVersion": "8.0.724.53004" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/8.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.24", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Razor": "6.0.24", + "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "8.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { + "assemblyVersion": "8.0.7.0", + "fileVersion": "8.0.724.53004" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/8.0.7": { + "dependencies": { + "Microsoft.Build": "17.8.3", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.DotNet.Scaffolding.Shared": "8.0.7", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { + "assemblyVersion": "8.0.7.0", + "fileVersion": "8.0.724.53004" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/8.0.7": { + "dependencies": { + "Microsoft.DotNet.Scaffolding.Shared": "8.0.7", + "Microsoft.VisualStudio.Web.CodeGeneration": "8.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { + "assemblyVersion": "8.0.7.0", + "fileVersion": "8.0.724.53004" + } + } + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Mono.TextTemplating/2.3.1": { + "dependencies": { + "System.CodeDom": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/Mono.TextTemplating.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.1.1" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Npgsql/8.0.5": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "8.0.5.0", + "fileVersion": "8.0.5.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.10", + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10", + "Microsoft.EntityFrameworkCore.Relational": "8.0.10", + "Npgsql": "8.0.5" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.10.0" + } + } + }, + "NuGet.Common/6.11.0": { + "dependencies": { + "NuGet.Frameworks": "6.11.0" + }, + "runtime": { + "lib/netstandard2.0/NuGet.Common.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, + "NuGet.Configuration/6.11.0": { + "dependencies": { + "NuGet.Common": "6.11.0", + "System.Security.Cryptography.ProtectedData": "7.0.0" + }, + "runtime": { + "lib/netstandard2.0/NuGet.Configuration.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, + "NuGet.DependencyResolver.Core/6.11.0": { + "dependencies": { + "NuGet.Configuration": "6.11.0", + "NuGet.LibraryModel": "6.11.0", + "NuGet.Protocol": "6.11.0" + }, + "runtime": { + "lib/net5.0/NuGet.DependencyResolver.Core.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, + "NuGet.Frameworks/6.11.0": { + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, + "NuGet.LibraryModel/6.11.0": { + "dependencies": { + "NuGet.Common": "6.11.0", + "NuGet.Versioning": "6.11.0" + }, + "runtime": { + "lib/netstandard2.0/NuGet.LibraryModel.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, + "NuGet.Packaging/6.11.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "NuGet.Configuration": "6.11.0", + "NuGet.Versioning": "6.11.0", + "System.Security.Cryptography.Pkcs": "6.0.4" + }, + "runtime": { + "lib/net5.0/NuGet.Packaging.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, + "NuGet.ProjectModel/6.11.0": { + "dependencies": { + "NuGet.DependencyResolver.Core": "6.11.0" + }, + "runtime": { + "lib/net5.0/NuGet.ProjectModel.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, + "NuGet.Protocol/6.11.0": { + "dependencies": { + "NuGet.Packaging": "6.11.0" + }, + "runtime": { + "lib/net5.0/NuGet.Protocol.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, + "NuGet.Versioning/6.11.0": { + "runtime": { + "lib/netstandard2.0/NuGet.Versioning.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, "Swashbuckle.AspNetCore/6.4.0": { "dependencies": { "Microsoft.Extensions.ApiDescription.Server": "6.0.5", @@ -62,6 +1744,269 @@ "fileVersion": "6.4.0.0" } } + }, + "System.CodeDom/5.0.0": { + "runtime": { + "lib/netstandard2.0/System.CodeDom.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Collections.Immutable/7.0.0": {}, + "System.Composition/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Convention": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0", + "System.Composition.TypedParts": "7.0.0" + } + }, + "System.Composition.AttributedModel/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Convention/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Convention.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Hosting/7.0.0": { + "dependencies": { + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Hosting.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Runtime/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.TypedParts/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Configuration.ConfigurationManager/7.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "7.0.0", + "System.Security.Cryptography.ProtectedData": "7.0.0", + "System.Security.Permissions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Data.DataSetExtensions/4.5.0": {}, + "System.Diagnostics.DiagnosticSource/6.0.1": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/7.0.0": {}, + "System.Drawing.Common/7.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Formats.Asn1/8.0.1": { + "runtime": { + "lib/net8.0/System.Formats.Asn1.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.724.31311" + } + } + }, + "System.IdentityModel.Tokens.Jwt/8.3.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.3.1", + "Microsoft.IdentityModel.Tokens": "8.3.1" + }, + "runtime": { + "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.3.1.0", + "fileVersion": "8.3.1.60117" + } + } + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.IO.Pipelines/7.0.0": {}, + "System.Memory/4.5.4": {}, + "System.Memory.Data/1.0.2": { + "dependencies": { + "System.Text.Encodings.Web": "7.0.0", + "System.Text.Json": "7.0.3" + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "assemblyVersion": "1.0.2.0", + "fileVersion": "1.0.221.20802" + } + } + }, + "System.Numerics.Vectors/4.5.0": {}, + "System.Reflection.Metadata/7.0.0": { + "dependencies": { + "System.Collections.Immutable": "7.0.0" + } + }, + "System.Reflection.MetadataLoadContext/7.0.0": { + "dependencies": { + "System.Collections.Immutable": "7.0.0", + "System.Reflection.Metadata": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Reflection.MetadataLoadContext.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Runtime.Caching/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "7.0.0" + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Security.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.Cryptography.Cng/5.0.0": { + "dependencies": { + "System.Formats.Asn1": "8.0.1" + } + }, + "System.Security.Cryptography.Pkcs/6.0.4": { + "dependencies": { + "System.Formats.Asn1": "8.0.1" + } + }, + "System.Security.Cryptography.ProtectedData/7.0.0": { + "runtime": { + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Security.Permissions/7.0.0": { + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.Text.Encoding.CodePages/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Encodings.Web/7.0.0": {}, + "System.Text.Json/7.0.3": { + "dependencies": { + "System.Text.Encodings.Web": "7.0.0" + } + }, + "System.Threading.Channels/7.0.0": {}, + "System.Threading.Tasks.Dataflow/7.0.0": {}, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Windows.Extensions/7.0.0": { + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } } } }, @@ -71,6 +2016,580 @@ "serviceable": false, "sha512": "" }, + "Azure.Core/1.35.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hENcx03Jyuqv05F4RBEPbxz29UrM3Nbhnr6Wl6NQpoU9BCIbL3XLentrxDCTrH54NLS11Exxi/o8MYgT/cnKFA==", + "path": "azure.core/1.35.0", + "hashPath": "azure.core.1.35.0.nupkg.sha512" + }, + "Azure.Identity/1.10.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l1Xm2MWOF2Mzcwuarlw8kWQXLZk3UeB55aQXVyjj23aBfDwOZ3gu5GP2kJ6KlmZeZv2TCzw7x4L3V36iNr3gww==", + "path": "azure.identity/1.10.3", + "hashPath": "azure.identity.1.10.3.nupkg.sha512" + }, + "Humanizer/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==", + "path": "humanizer/2.14.1", + "hashPath": "humanizer.2.14.1.nupkg.sha512" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.af/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==", + "path": "humanizer.core.af/2.14.1", + "hashPath": "humanizer.core.af.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.ar/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==", + "path": "humanizer.core.ar/2.14.1", + "hashPath": "humanizer.core.ar.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.az/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==", + "path": "humanizer.core.az/2.14.1", + "hashPath": "humanizer.core.az.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.bg/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==", + "path": "humanizer.core.bg/2.14.1", + "hashPath": "humanizer.core.bg.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.bn-BD/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==", + "path": "humanizer.core.bn-bd/2.14.1", + "hashPath": "humanizer.core.bn-bd.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.cs/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==", + "path": "humanizer.core.cs/2.14.1", + "hashPath": "humanizer.core.cs.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.da/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==", + "path": "humanizer.core.da/2.14.1", + "hashPath": "humanizer.core.da.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.de/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==", + "path": "humanizer.core.de/2.14.1", + "hashPath": "humanizer.core.de.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.el/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==", + "path": "humanizer.core.el/2.14.1", + "hashPath": "humanizer.core.el.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.es/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==", + "path": "humanizer.core.es/2.14.1", + "hashPath": "humanizer.core.es.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.fa/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==", + "path": "humanizer.core.fa/2.14.1", + "hashPath": "humanizer.core.fa.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.fi-FI/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==", + "path": "humanizer.core.fi-fi/2.14.1", + "hashPath": "humanizer.core.fi-fi.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.fr/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==", + "path": "humanizer.core.fr/2.14.1", + "hashPath": "humanizer.core.fr.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.fr-BE/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==", + "path": "humanizer.core.fr-be/2.14.1", + "hashPath": "humanizer.core.fr-be.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.he/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==", + "path": "humanizer.core.he/2.14.1", + "hashPath": "humanizer.core.he.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.hr/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==", + "path": "humanizer.core.hr/2.14.1", + "hashPath": "humanizer.core.hr.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.hu/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==", + "path": "humanizer.core.hu/2.14.1", + "hashPath": "humanizer.core.hu.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.hy/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==", + "path": "humanizer.core.hy/2.14.1", + "hashPath": "humanizer.core.hy.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.id/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==", + "path": "humanizer.core.id/2.14.1", + "hashPath": "humanizer.core.id.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.is/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==", + "path": "humanizer.core.is/2.14.1", + "hashPath": "humanizer.core.is.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.it/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==", + "path": "humanizer.core.it/2.14.1", + "hashPath": "humanizer.core.it.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.ja/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==", + "path": "humanizer.core.ja/2.14.1", + "hashPath": "humanizer.core.ja.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.ko-KR/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==", + "path": "humanizer.core.ko-kr/2.14.1", + "hashPath": "humanizer.core.ko-kr.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.ku/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==", + "path": "humanizer.core.ku/2.14.1", + "hashPath": "humanizer.core.ku.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.lv/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==", + "path": "humanizer.core.lv/2.14.1", + "hashPath": "humanizer.core.lv.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.ms-MY/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==", + "path": "humanizer.core.ms-my/2.14.1", + "hashPath": "humanizer.core.ms-my.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.mt/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==", + "path": "humanizer.core.mt/2.14.1", + "hashPath": "humanizer.core.mt.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.nb/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==", + "path": "humanizer.core.nb/2.14.1", + "hashPath": "humanizer.core.nb.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.nb-NO/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==", + "path": "humanizer.core.nb-no/2.14.1", + "hashPath": "humanizer.core.nb-no.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.nl/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==", + "path": "humanizer.core.nl/2.14.1", + "hashPath": "humanizer.core.nl.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.pl/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==", + "path": "humanizer.core.pl/2.14.1", + "hashPath": "humanizer.core.pl.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.pt/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==", + "path": "humanizer.core.pt/2.14.1", + "hashPath": "humanizer.core.pt.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.ro/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==", + "path": "humanizer.core.ro/2.14.1", + "hashPath": "humanizer.core.ro.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.ru/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==", + "path": "humanizer.core.ru/2.14.1", + "hashPath": "humanizer.core.ru.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.sk/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==", + "path": "humanizer.core.sk/2.14.1", + "hashPath": "humanizer.core.sk.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.sl/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==", + "path": "humanizer.core.sl/2.14.1", + "hashPath": "humanizer.core.sl.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.sr/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==", + "path": "humanizer.core.sr/2.14.1", + "hashPath": "humanizer.core.sr.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==", + "path": "humanizer.core.sr-latn/2.14.1", + "hashPath": "humanizer.core.sr-latn.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.sv/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==", + "path": "humanizer.core.sv/2.14.1", + "hashPath": "humanizer.core.sv.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.th-TH/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==", + "path": "humanizer.core.th-th/2.14.1", + "hashPath": "humanizer.core.th-th.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.tr/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==", + "path": "humanizer.core.tr/2.14.1", + "hashPath": "humanizer.core.tr.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.uk/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==", + "path": "humanizer.core.uk/2.14.1", + "hashPath": "humanizer.core.uk.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==", + "path": "humanizer.core.uz-cyrl-uz/2.14.1", + "hashPath": "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==", + "path": "humanizer.core.uz-latn-uz/2.14.1", + "hashPath": "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.vi/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==", + "path": "humanizer.core.vi/2.14.1", + "hashPath": "humanizer.core.vi.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.zh-CN/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==", + "path": "humanizer.core.zh-cn/2.14.1", + "hashPath": "humanizer.core.zh-cn.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==", + "path": "humanizer.core.zh-hans/2.14.1", + "hashPath": "humanizer.core.zh-hans.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==", + "path": "humanizer.core.zh-hant/2.14.1", + "hashPath": "humanizer.core.zh-hant.2.14.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rcPXghZCc82IB9U2Px1Ln5Zn3vjV4p83H/Few5T/904hBddjSz03COQ2zOGWBBvdTBY+GciAUJwgBFNWaxLfqw==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/8.0.10", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.8.0.10.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mENBehQP1H9oTB4Diu1l7vR1BeZrBNWA9sHZsln4l2oIs7D3qH3fokopU/8FWa9JSxQYNBT1MeYBCwguYOBjMQ==", + "path": "microsoft.aspnetcore.authorization/8.0.10", + "hashPath": "microsoft.aspnetcore.authorization.8.0.10.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E9YwEujZjXhMLi1hqJh+7iLk2DzNxa4dB9wYY8lHYpAzZdVqoGjaFsaaIzwCvSZZxd7S7Cds01Trlye2mTqeZA==", + "path": "microsoft.aspnetcore.metadata/8.0.10", + "hashPath": "microsoft.aspnetcore.metadata.8.0.10.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/6.0.24": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kBL6ljTREp/3fk8EKN27mrPy3WTqWUjiqCkKFlCKHUKRO3/9rAasKizX3vPWy4ZTcNsIPmVWUHwjDFmiW4MyNA==", + "path": "microsoft.aspnetcore.razor.language/6.0.24", + "hashPath": "microsoft.aspnetcore.razor.language.6.0.24.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==", + "path": "microsoft.bcl.asyncinterfaces/7.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.Memory/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bTUtGfpGyJnohQzjdXbtc7MqNzkv7CWUSRz54+ucNm0i32rZiIU0VdVPHDBShOl1qhVKRjW8mnEBz3d2vH93tQ==", + "path": "microsoft.bcl.memory/9.0.0", + "hashPath": "microsoft.bcl.memory.9.0.0.nupkg.sha512" + }, + "Microsoft.Build/17.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jOxP2DrBZb2zuDO5M8LfI50SCdXlahgUHJ6mH0jz4OBID0F9o+DVggk0CPAONmcbUPo2SsQCFkMaxmHkKLj99Q==", + "path": "microsoft.build/17.8.3", + "hashPath": "microsoft.build.17.8.3.nupkg.sha512" + }, + "Microsoft.Build.Framework/17.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NrQZJW8TlKVPx72yltGb8SVz3P5mNRk9fNiD/ao8jRSk48WqIIdCn99q4IjlVmPcruuQ+yLdjNQLL8Rb4c916g==", + "path": "microsoft.build.framework/17.8.3", + "hashPath": "microsoft.build.framework.17.8.3.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", + "path": "microsoft.codeanalysis.analyzers/3.3.4", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==", + "path": "microsoft.codeanalysis.analyzerutilities/3.3.0", + "hashPath": "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==", + "path": "microsoft.codeanalysis.common/4.8.0", + "hashPath": "microsoft.codeanalysis.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==", + "path": "microsoft.codeanalysis.csharp/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Features/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Gpas3l8PE1xz1VDIJNMkYuoFPXtuALxybP04caXh9avC2a0elsoBdukndkJXVZgdKPwraf0a98s7tjqnEk5QIQ==", + "path": "microsoft.codeanalysis.csharp.features/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.features.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==", + "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Elfie/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-r12elUp4MRjdnRfxEP+xqVSUUfG3yIJTBEJGwbfvF5oU4m0jb9HC0gFG28V/dAkYGMkRmHVi3qvrnBLQSw9X3Q==", + "path": "microsoft.codeanalysis.elfie/1.0.0", + "hashPath": "microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Features/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sCVzMtSETGE16KeScwwlVfxaKRbUMSf/cgRPRPMJuou37SLT7XkIBzJu4e7mlFTzpJbfalV5tOcKpUtLO3eJAg==", + "path": "microsoft.codeanalysis.features/4.8.0", + "hashPath": "microsoft.codeanalysis.features.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Razor/6.0.24": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xIAjR6l/1PO2ILT6/lOGYfe8OzMqfqxh1lxFuM4Exluwc2sQhJw0kS7pEyJ0DE/UMYu6Jcdc53DmjOxQUDT2Pg==", + "path": "microsoft.codeanalysis.razor/6.0.24", + "hashPath": "microsoft.codeanalysis.razor.6.0.24.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Scripting.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysiNNbAASVhV9wEd5oY2x99EwaVYtB13XZRjHsgWT/R1mQkxZF8jWsf7JWaZxD1+jNoz1QCQ6nbe+vr+6QvlFA==", + "path": "microsoft.codeanalysis.scripting.common/4.8.0", + "hashPath": "microsoft.codeanalysis.scripting.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==", + "path": "microsoft.codeanalysis.workspaces.common/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/5.1.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6kvhQjY5uBCdBccezFD2smfnpQjQ33cZtUZVrNvxlwoBu6uopM5INH6uSgLI7JRLtlQ3bMPwnhMq4kchsXeZ5w==", + "path": "microsoft.data.sqlclient/5.1.5", + "hashPath": "microsoft.data.sqlclient.5.1.5.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==", + "path": "microsoft.data.sqlclient.sni.runtime/5.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512" + }, + "Microsoft.DiaSymReader/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QcZrCETsBJqy/vQpFtJc+jSXQ0K5sucQ6NUFbTNVHD4vfZZOwjZ/3sBzczkC4DityhD3AVO/+K/+9ioLs1AgRA==", + "path": "microsoft.diasymreader/2.0.0", + "hashPath": "microsoft.diasymreader.2.0.0.nupkg.sha512" + }, + "Microsoft.DotNet.Scaffolding.Shared/8.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-q11ADAFXiDHsiH6YpHDCtu/5JB/k6nBWM1pwoI3yOzq//2ZdnWgNkgs1coZyv/XZluxZbVmeo6f+ZoYGebIj/Q==", + "path": "microsoft.dotnet.scaffolding.shared/8.0.7", + "hashPath": "microsoft.dotnet.scaffolding.shared.8.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==", + "path": "microsoft.entityframeworkcore/8.0.10", + "hashPath": "microsoft.entityframeworkcore.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==", + "path": "microsoft.entityframeworkcore.abstractions/8.0.10", + "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==", + "path": "microsoft.entityframeworkcore.analyzers/8.0.10", + "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==", + "path": "microsoft.entityframeworkcore.design/8.0.10", + "hashPath": "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==", + "path": "microsoft.entityframeworkcore.relational/8.0.10", + "hashPath": "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.SqlServer/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DvhBEk44UjWMebFKwIFDIdEsG8gzbgflWIZljDCpIkZVpId+PKs0ufzJxnTQ94InPO+pS7+wE45cRsPRt9B0Iw==", + "path": "microsoft.entityframeworkcore.sqlserver/8.0.10", + "hashPath": "microsoft.entityframeworkcore.sqlserver.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Tools/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aaimNUjkJDHdZb2hxd6hjwz7OdeankbQHPx8/b+qCfVfaEpOAIW0LTBge4qG+AUKacKfcoK7GJq6ACjenEvPLQ==", + "path": "microsoft.entityframeworkcore.tools/8.0.10", + "hashPath": "microsoft.entityframeworkcore.tools.8.0.10.nupkg.sha512" + }, "Microsoft.Extensions.ApiDescription.Server/6.0.5": { "type": "package", "serviceable": true, @@ -78,6 +2597,146 @@ "path": "microsoft.extensions.apidescription.server/6.0.5", "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", + "path": "microsoft.extensions.caching.memory/8.0.1", + "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", + "path": "microsoft.extensions.dependencyinjection/8.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==", + "path": "microsoft.extensions.dependencymodel/8.0.2", + "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", + "path": "microsoft.extensions.logging/8.0.1", + "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Options/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", + "path": "microsoft.extensions.options/8.0.2", + "hashPath": "microsoft.extensions.options.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "path": "microsoft.extensions.primitives/8.0.0", + "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.56.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rr4zbidvHy9r4NvOAs5hdd964Ao2A0pAeFBJKR95u1CJAVzbd1p6tPTXUZ+5ld0cfThiVSGvz6UHwY6JjraTpA==", + "path": "microsoft.identity.client/4.56.0", + "hashPath": "microsoft.identity.client.4.56.0.nupkg.sha512" + }, + "Microsoft.Identity.Client.Extensions.Msal/4.56.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H12YAzEGK55vZ+QpxUzozhW8ZZtgPDuWvgA0JbdIR9UhMUplj29JhIgE2imuH8W2Nw9D8JKygR1uxRFtpSNcrg==", + "path": "microsoft.identity.client.extensions.msal/4.56.0", + "hashPath": "microsoft.identity.client.extensions.msal.4.56.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oXYKRcTS0DTIB5vZenGy9oceD8awhjnXFFabc/IWBwluMA03SGvazCFyUIQ2mJOIOSf9lLyM971nbTj9qZgEJg==", + "path": "microsoft.identitymodel.abstractions/8.3.1", + "hashPath": "microsoft.identitymodel.abstractions.8.3.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cA622rrXYdaO7inNZ8KY5leZpP6889wT+gHPgvy62PYlAITyxF9PxP5u+ecNBOsPx2PagBH7ZNr39yU/MOPn+w==", + "path": "microsoft.identitymodel.jsonwebtokens/8.3.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.3.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XCwbK7ErgZdrwl4ph+i8X5SCGwAepBFbsNIEceozGzrBFVvZbKKJE1WQOft9QyglP4me+DECdVVL8UnI6OO+sg==", + "path": "microsoft.identitymodel.logging/8.3.1", + "hashPath": "microsoft.identitymodel.logging.8.3.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/7.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SydLwMRFx6EHPWJ+N6+MVaoArN1Htt92b935O3RUWPY1yUF63zEjvd3lBu79eWdZUwedP8TN2I5V9T3nackvIQ==", + "path": "microsoft.identitymodel.protocols/7.1.2", + "hashPath": "microsoft.identitymodel.protocols.7.1.2.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6lHQoLXhnMQ42mGrfDkzbIOR3rzKM1W1tgTeMPLgLCqwwGw0d96xFi/UiX/fYsu7d6cD5MJiL3+4HuI8VU+sVQ==", + "path": "microsoft.identitymodel.protocols.openidconnect/7.1.2", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.7.1.2.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-77GXREJzIDiKAc/RR8YE267bwzrxM4cjMRCzMQa0Xk1MUUdjx/JwjDJpUh00vT4oxcX5rjsMP0KLd8YjgR3N3w==", + "path": "microsoft.identitymodel.tokens/8.3.1", + "hashPath": "microsoft.identitymodel.tokens.8.3.1.nupkg.sha512" + }, + "Microsoft.NET.StringTools/17.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y6DiuacjlIfXH3XVQG5htf+4oheinZAo7sHbITB3z7yCXQec48f9ZhGSXkr+xn1bfl73Yc3ZQEW2peJ5X68AvQ==", + "path": "microsoft.net.stringtools/17.8.3", + "hashPath": "microsoft.net.stringtools.17.8.3.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, "Microsoft.OpenApi/1.2.3": { "type": "package", "serviceable": true, @@ -85,6 +2744,13 @@ "path": "microsoft.openapi/1.2.3", "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "path": "microsoft.sqlserver.server/1.0.0", + "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" + }, "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.19.6": { "type": "package", "serviceable": true, @@ -92,6 +2758,153 @@ "path": "microsoft.visualstudio.azure.containers.tools.targets/1.19.6", "hashPath": "microsoft.visualstudio.azure.containers.tools.targets.1.19.6.nupkg.sha512" }, + "Microsoft.VisualStudio.Web.CodeGeneration/8.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8WqtBA1DxiiEq1c2PjgkeFYHPC0WwC5Yl7FuDg41RQ6rvi661mSHCApzz3/rp/cfb8I7DiG1+3d01q5ck+BT1w==", + "path": "microsoft.visualstudio.web.codegeneration/8.0.7", + "hashPath": "microsoft.visualstudio.web.codegeneration.8.0.7.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/8.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kahoV4hImS/uUfn3K9ecU+o1U4pn5sdnabG+DGsK9bf6gL0tw8MnrArz3M9kWYMKDsVd3/j/3ZriTH+hVrPW2w==", + "path": "microsoft.visualstudio.web.codegeneration.core/8.0.7", + "hashPath": "microsoft.visualstudio.web.codegeneration.core.8.0.7.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/8.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qURp+VCwreGNQBofL6z3uUnLmrG3PCap/jN/B8jGqsiMLjhR+FOO7r9R1vcNeXYd5cFORpQvsuZi6GWXxr2dCA==", + "path": "microsoft.visualstudio.web.codegeneration.design/8.0.7", + "hashPath": "microsoft.visualstudio.web.codegeneration.design.8.0.7.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/8.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Cd37PMogJ7sbzbUkbZsqPOLpKg0xbBLypsGuJ8HLX7caTDSg2NIsNT/MJKu0VybfoQ2L4fli8XpJXxVytbx1wA==", + "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/8.0.7", + "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.8.0.7.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/8.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uXtCSh13HD7589QSez9cVwQ2xacIgDuf33/ifW8a6DqxC+dF5ium2p+5odUNbzRU8cnCuISjti7F+D4F9kLLVw==", + "path": "microsoft.visualstudio.web.codegeneration.templating/8.0.7", + "hashPath": "microsoft.visualstudio.web.codegeneration.templating.8.0.7.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/8.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2oA20npXOXxH2pmnTtXNrPgow+W3dGREI+SWrCci5IbTgQE6NOhL+5PmbxqAqjhmoyy9CSEbaav9eWTM7jEdQQ==", + "path": "microsoft.visualstudio.web.codegeneration.utils/8.0.7", + "hashPath": "microsoft.visualstudio.web.codegeneration.utils.8.0.7.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/8.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IN7xeBHZ/WtYN62Ez0rEWqpsiTlpEUbGcjvXLRF2gNO8SdhFn9IhzdixKXTLzHTf89oS9Y5mFIPkWcU4Y99USA==", + "path": "microsoft.visualstudio.web.codegenerators.mvc/8.0.7", + "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.8.0.7.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "path": "microsoft.win32.systemevents/7.0.0", + "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512" + }, + "Mono.TextTemplating/2.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pqYwzNqDL0QK1JFpAjpI/NPqyqLGpHLvVmA5Ec0LaSnbIDtEXxu0td16uunegb7c8xAnlcm4qkbIYUP5FfrFpA==", + "path": "mono.texttemplating/2.3.1", + "hashPath": "mono.texttemplating.2.3.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Npgsql/8.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==", + "path": "npgsql/8.0.5", + "hashPath": "npgsql.8.0.5.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gFPl9Dmxih7Yi4tZ3bITzZFzbxFMBx04gqTqcjoL2r5VEW+O2TA5UVw/wm/XW26NAJ7sg59Je0+9QrwiZt6MPQ==", + "path": "npgsql.entityframeworkcore.postgresql/8.0.10", + "hashPath": "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512" + }, + "NuGet.Common/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T3bCiKUSx8wdYpcqr6Dbx93zAqFp689ee/oa1tH22XI/xl7EUzQ7No/WlE1FUqvEX1+Mqar3wRNAn2O/yxo94g==", + "path": "nuget.common/6.11.0", + "hashPath": "nuget.common.6.11.0.nupkg.sha512" + }, + "NuGet.Configuration/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-73QprQqmumFrv3Ooi4YWpRYeBj8jZy9gNdOaOCp4pPInpt41SJJAz/aP4je+StwIJvi5HsgPPecLKekDIQEwKg==", + "path": "nuget.configuration/6.11.0", + "hashPath": "nuget.configuration.6.11.0.nupkg.sha512" + }, + "NuGet.DependencyResolver.Core/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SoiPKPooA+IF+iCsX1ykwi3M0e+yBL34QnwIP3ujhQEn1dhlP/N1XsYAnKkJPxV15EZCahuuS4HtnBsZx+CHKA==", + "path": "nuget.dependencyresolver.core/6.11.0", + "hashPath": "nuget.dependencyresolver.core.6.11.0.nupkg.sha512" + }, + "NuGet.Frameworks/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ew/mrfmLF5phsprysHbph2+tdZ10HMHAURavsr/Kx1WhybDG4vmGuoNLbbZMZOqnPRdpyCTc42OKWLoedxpYtA==", + "path": "nuget.frameworks/6.11.0", + "hashPath": "nuget.frameworks.6.11.0.nupkg.sha512" + }, + "NuGet.LibraryModel/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KUV2eeMICMb24OPcICn/wgncNzt6+W+lmFVO5eorTdo1qV4WXxYGyG1NTPiCY+Nrv5H/Ilnv9UaUM2ozqSmnjw==", + "path": "nuget.librarymodel/6.11.0", + "hashPath": "nuget.librarymodel.6.11.0.nupkg.sha512" + }, + "NuGet.Packaging/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VmUv2LedVuPY1tfNybORO2I9IuqOzeV7I5JBD+PwNvJq2bAqovi4FCw2cYI0g+kjOJXBN2lAJfrfnqtUOlVJdQ==", + "path": "nuget.packaging/6.11.0", + "hashPath": "nuget.packaging.6.11.0.nupkg.sha512" + }, + "NuGet.ProjectModel/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g0KtmDH6fas97WsN73yV2h1F5JT9o6+Y0wlPK+ij9YLKaAXaF6+1HkSaQMMJ+xh9/jCJG9G6nau6InOlb1g48g==", + "path": "nuget.projectmodel/6.11.0", + "hashPath": "nuget.projectmodel.6.11.0.nupkg.sha512" + }, + "NuGet.Protocol/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p5B8oNLLnGhUfMbcS16aRiegj11pD6k+LELyRBqvNFR/pE3yR1XT+g1XS33ME9wvoU+xbCGnl4Grztt1jHPinw==", + "path": "nuget.protocol/6.11.0", + "hashPath": "nuget.protocol.6.11.0.nupkg.sha512" + }, + "NuGet.Versioning/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v/GGlIj2dd7svplFmASWEueu62veKW0MrMtBaZ7QG8aJTSGv2yE+pgUGhXRcQ4nxNOEq/wLBrz1vkth/1SND7A==", + "path": "nuget.versioning/6.11.0", + "hashPath": "nuget.versioning.6.11.0.nupkg.sha512" + }, "Swashbuckle.AspNetCore/6.4.0": { "type": "package", "serviceable": true, @@ -119,6 +2932,265 @@ "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + }, + "System.CodeDom/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JPJArwA1kdj8qDAkY2XGjSWoYnqiM7q/3yRNkt6n28Mnn95MuEGkZXUbPBf7qc3IjwrGY5ttQon7yqHZyQJmOQ==", + "path": "system.codedom/5.0.0", + "hashPath": "system.codedom.5.0.0.nupkg.sha512" + }, + "System.Collections.Immutable/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==", + "path": "system.collections.immutable/7.0.0", + "hashPath": "system.collections.immutable.7.0.0.nupkg.sha512" + }, + "System.Composition/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==", + "path": "system.composition/7.0.0", + "hashPath": "system.composition.7.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==", + "path": "system.composition.attributedmodel/7.0.0", + "hashPath": "system.composition.attributedmodel.7.0.0.nupkg.sha512" + }, + "System.Composition.Convention/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==", + "path": "system.composition.convention/7.0.0", + "hashPath": "system.composition.convention.7.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==", + "path": "system.composition.hosting/7.0.0", + "hashPath": "system.composition.hosting.7.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==", + "path": "system.composition.runtime/7.0.0", + "hashPath": "system.composition.runtime.7.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==", + "path": "system.composition.typedparts/7.0.0", + "hashPath": "system.composition.typedparts.7.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WvRUdlL1lB0dTRZSs5XcQOd5q9MYNk90GkbmRmiCvRHThWiojkpGqWdmEDJdXyHbxG/BhE5hmVbMfRLXW9FJVA==", + "path": "system.configuration.configurationmanager/7.0.0", + "hashPath": "system.configuration.configurationmanager.7.0.0.nupkg.sha512" + }, + "System.Data.DataSetExtensions/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==", + "path": "system.data.datasetextensions/4.5.0", + "hashPath": "system.data.datasetextensions.4.5.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==", + "path": "system.diagnostics.diagnosticsource/6.0.1", + "hashPath": "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512" + }, + "System.Diagnostics.EventLog/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eUDP47obqQm3SFJfP6z+Fx2nJ4KKTQbXB4Q9Uesnzw9SbYdhjyoGXuvDn/gEmFY6N5Z3bFFbpAQGA7m6hrYJCw==", + "path": "system.diagnostics.eventlog/7.0.0", + "hashPath": "system.diagnostics.eventlog.7.0.0.nupkg.sha512" + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "path": "system.drawing.common/7.0.0", + "hashPath": "system.drawing.common.7.0.0.nupkg.sha512" + }, + "System.Formats.Asn1/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XqKba7Mm/koKSjKMfW82olQdmfbI5yqeoLV/tidRp7fbh5rmHAQ5raDI/7SU0swTzv+jgqtUGkzmFxuUg0it1A==", + "path": "system.formats.asn1/8.0.1", + "hashPath": "system.formats.asn1.8.0.1.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SxdCv+SmnKOhUvryKvrpWJnkuVHj3hU8pUwj7R8zthi73TlBUlMyavon9qfuJsjnqY+L7jusp3Zo0fWFX6mwtw==", + "path": "system.identitymodel.tokens.jwt/8.3.1", + "hashPath": "system.identitymodel.tokens.jwt.8.3.1.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", + "path": "system.io.filesystem.accesscontrol/5.0.0", + "hashPath": "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", + "path": "system.io.pipelines/7.0.0", + "hashPath": "system.io.pipelines.7.0.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", + "path": "system.memory.data/1.0.2", + "hashPath": "system.memory.data.1.0.2.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.Reflection.Metadata/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==", + "path": "system.reflection.metadata/7.0.0", + "hashPath": "system.reflection.metadata.7.0.0.nupkg.sha512" + }, + "System.Reflection.MetadataLoadContext/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z9PvtMJra5hK8n+g0wmPtaG7HQRZpTmIPRw5Z0LEemlcdQMHuTD5D7OAY/fZuuz1L9db++QOcDF0gJTLpbMtZQ==", + "path": "system.reflection.metadataloadcontext/7.0.0", + "hashPath": "system.reflection.metadataloadcontext.7.0.0.nupkg.sha512" + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "path": "system.runtime.caching/6.0.0", + "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "path": "system.security.accesscontrol/5.0.0", + "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "path": "system.security.cryptography.cng/5.0.0", + "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/6.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LGbXi1oUJ9QgCNGXRO9ndzBL/GZgANcsURpMhNR8uO+rca47SZmciS3RSQUvlQRwK3QHZSHNOXzoMUASKA+Anw==", + "path": "system.security.cryptography.pkcs/6.0.4", + "hashPath": "system.security.cryptography.pkcs.6.0.4.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xSPiLNlHT6wAHtugASbKAJwV5GVqQK351crnILAucUioFqqieDN79evO1rku1ckt/GfjIn+b17UaSskoY03JuA==", + "path": "system.security.cryptography.protecteddata/7.0.0", + "hashPath": "system.security.cryptography.protecteddata.7.0.0.nupkg.sha512" + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "path": "system.security.permissions/7.0.0", + "hashPath": "system.security.permissions.7.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "path": "system.text.encoding.codepages/6.0.0", + "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", + "path": "system.text.encodings.web/7.0.0", + "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" + }, + "System.Text.Json/7.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AyjhwXN1zTFeIibHimfJn6eAsZ7rTBib79JQpzg8WAuR/HKDu9JGNHTuu3nbbXQ/bgI+U4z6HtZmCHNXB1QXrQ==", + "path": "system.text.json/7.0.3", + "hashPath": "system.text.json.7.0.3.nupkg.sha512" + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "path": "system.threading.channels/7.0.0", + "hashPath": "system.threading.channels.7.0.0.nupkg.sha512" + }, + "System.Threading.Tasks.Dataflow/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmSJ4b0e2nlplV/RdWVxvH7WECTHACofv06dx/JwOYc0n56eK1jIWdQKNYYsReSO4w8n1QA5stOzSQcfaVBkJg==", + "path": "system.threading.tasks.dataflow/7.0.0", + "hashPath": "system.threading.tasks.dataflow.7.0.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "path": "system.windows.extensions/7.0.0", + "hashPath": "system.windows.extensions.7.0.0.nupkg.sha512" } } } \ No newline at end of file diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.dll b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.dll index 5138982..ba78c83 100644 Binary files a/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.dll and b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.exe b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.exe index 3f7a847..7e5360d 100644 Binary files a/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.exe and b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.exe differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.pdb b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.pdb index 0c2ab9b..519a804 100644 Binary files a/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.pdb and b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.pdb differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.runtimeconfig.json b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.runtimeconfig.json index 5e604c7..b8a4a9c 100644 --- a/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.runtimeconfig.json +++ b/TCM_API/TCM_API/bin/Debug/net8.0/TCM_API.runtimeconfig.json @@ -13,6 +13,7 @@ ], "configProperties": { "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false } } diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/af/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/af/Humanizer.resources.dll new file mode 100644 index 0000000..e191f5f Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/af/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/appsettings.json b/TCM_API/TCM_API/bin/Debug/net8.0/appsettings.json index 10f68b8..467ce11 100644 --- a/TCM_API/TCM_API/bin/Debug/net8.0/appsettings.json +++ b/TCM_API/TCM_API/bin/Debug/net8.0/appsettings.json @@ -1,4 +1,7 @@ { + "AppSettings": { + "Secret": "TCM token test jwt lamiter local 1234567" + }, "Logging": { "LogLevel": { "Default": "Information", diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ar/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ar/Humanizer.resources.dll new file mode 100644 index 0000000..319af06 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ar/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/az/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/az/Humanizer.resources.dll new file mode 100644 index 0000000..f51f16e Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/az/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/bg/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/bg/Humanizer.resources.dll new file mode 100644 index 0000000..c6b47e9 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/bg/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/bn-BD/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/bn-BD/Humanizer.resources.dll new file mode 100644 index 0000000..dead005 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/bn-BD/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/cs/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/cs/Humanizer.resources.dll new file mode 100644 index 0000000..43094ae Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/cs/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..b85668a Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..4e90e20 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..8dcc1bd Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..222dc80 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..c815e8e Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..62b0422 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..180a8d9 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/da/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/da/Humanizer.resources.dll new file mode 100644 index 0000000..25c518a Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/da/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/de/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/de/Humanizer.resources.dll new file mode 100644 index 0000000..eca8773 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/de/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..9e4f329 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..4b7bae7 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..05da79f Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..7bf7965 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..b65f276 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..e128407 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..6a98feb Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/dotnet-aspnet-codegenerator-design.dll b/TCM_API/TCM_API/bin/Debug/net8.0/dotnet-aspnet-codegenerator-design.dll new file mode 100644 index 0000000..9c4d756 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/dotnet-aspnet-codegenerator-design.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/el/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/el/Humanizer.resources.dll new file mode 100644 index 0000000..7496654 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/el/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/es/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/es/Humanizer.resources.dll new file mode 100644 index 0000000..a2ccea7 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/es/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..aa74b78 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..8e8ced1 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..970399e Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..36baafe Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..2a65614 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..6cb47ac Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..76ddceb Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/fa/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/fa/Humanizer.resources.dll new file mode 100644 index 0000000..71fb905 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/fa/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/fi-FI/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/fi-FI/Humanizer.resources.dll new file mode 100644 index 0000000..553a14d Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/fi-FI/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/fr-BE/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/fr-BE/Humanizer.resources.dll new file mode 100644 index 0000000..d75e247 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/fr-BE/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/fr/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/fr/Humanizer.resources.dll new file mode 100644 index 0000000..5fb44a9 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/fr/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..f05c95f Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..c41ed4c Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..5fe6dd8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..bf29690 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..623e1ba Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..046c953 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..368bb7b Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/he/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/he/Humanizer.resources.dll new file mode 100644 index 0000000..deb8b6e Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/he/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/hr/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/hr/Humanizer.resources.dll new file mode 100644 index 0000000..4d50733 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/hr/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/hu/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/hu/Humanizer.resources.dll new file mode 100644 index 0000000..f93d556 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/hu/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/hy/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/hy/Humanizer.resources.dll new file mode 100644 index 0000000..a61b5e6 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/hy/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/id/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/id/Humanizer.resources.dll new file mode 100644 index 0000000..e605f23 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/id/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/is/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/is/Humanizer.resources.dll new file mode 100644 index 0000000..40e36d7 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/is/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/it/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/it/Humanizer.resources.dll new file mode 100644 index 0000000..9434487 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/it/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..1590156 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..72bb9d5 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..6051d99 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..7b12155 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..99a1314 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..829ed5d Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..9890df1 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ja/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ja/Humanizer.resources.dll new file mode 100644 index 0000000..f949d63 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ja/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..bc69084 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..eaded8c Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..47f3fd5 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..b99c9b3 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..2c3af4a Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..203cc83 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..208b1d9 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ko-KR/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ko-KR/Humanizer.resources.dll new file mode 100644 index 0000000..6a5f6c7 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ko-KR/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..f7f8af4 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..895ca11 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..c712a37 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..96de54c Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..22c4478 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..4790c29 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..05bc700 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ku/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ku/Humanizer.resources.dll new file mode 100644 index 0000000..606d2b9 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ku/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/lv/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/lv/Humanizer.resources.dll new file mode 100644 index 0000000..463bf2d Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/lv/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ms-MY/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ms-MY/Humanizer.resources.dll new file mode 100644 index 0000000..6494db8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ms-MY/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/mt/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/mt/Humanizer.resources.dll new file mode 100644 index 0000000..7e056c7 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/mt/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/nb-NO/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/nb-NO/Humanizer.resources.dll new file mode 100644 index 0000000..4ff1965 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/nb-NO/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/nb/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/nb/Humanizer.resources.dll new file mode 100644 index 0000000..48d7d6e Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/nb/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/nl/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/nl/Humanizer.resources.dll new file mode 100644 index 0000000..e1bca89 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/nl/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/pl/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/pl/Humanizer.resources.dll new file mode 100644 index 0000000..1b81e27 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/pl/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..848aeb8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..eb61aff Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..ea192cc Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..c624ee3 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..8723ebd Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..fce2d36 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..e142029 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..9c9cc0e Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..7c20209 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..be86033 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..83b88f8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..de7c13c Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..768264c Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..0dc6fae Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/pt/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/pt/Humanizer.resources.dll new file mode 100644 index 0000000..71daa56 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/pt/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ro/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ro/Humanizer.resources.dll new file mode 100644 index 0000000..0aea9b9 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ro/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ru/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ru/Humanizer.resources.dll new file mode 100644 index 0000000..dd2f875 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ru/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..f4069e0 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..85dd902 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..dfd0a6b Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..eb8d3fc Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..3fa2fa8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..cafdf21 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..ace0504 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..2dfb3c3 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..c171a72 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..3f2b452 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..8fde16b Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..93fb631 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..b804b11 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..bdca76d Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..d40a926 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll new file mode 100644 index 0000000..39493b4 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..a441e38 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net7.0/System.Windows.Extensions.dll b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net7.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..a881c26 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/runtimes/win/lib/net7.0/System.Windows.Extensions.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/sk/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/sk/Humanizer.resources.dll new file mode 100644 index 0000000..4c03f54 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/sk/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/sl/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/sl/Humanizer.resources.dll new file mode 100644 index 0000000..b79bb3c Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/sl/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/sr-Latn/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/sr-Latn/Humanizer.resources.dll new file mode 100644 index 0000000..e846785 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/sr-Latn/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/sr/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/sr/Humanizer.resources.dll new file mode 100644 index 0000000..7e36e26 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/sr/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/sv/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/sv/Humanizer.resources.dll new file mode 100644 index 0000000..70974a5 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/sv/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/th-TH/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/th-TH/Humanizer.resources.dll new file mode 100644 index 0000000..4dcc85d Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/th-TH/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/tr/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/tr/Humanizer.resources.dll new file mode 100644 index 0000000..eff6ad8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/tr/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..cb60f9f Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..9867f6f Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..2a4742e Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..a964e2b Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..362a18c Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..8012969 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..9a06288 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/uk/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/uk/Humanizer.resources.dll new file mode 100644 index 0000000..d4fb7a2 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/uk/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/uz-Cyrl-UZ/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/uz-Cyrl-UZ/Humanizer.resources.dll new file mode 100644 index 0000000..c76160d Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/uz-Cyrl-UZ/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/uz-Latn-UZ/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/uz-Latn-UZ/Humanizer.resources.dll new file mode 100644 index 0000000..da72030 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/uz-Latn-UZ/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/vi/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/vi/Humanizer.resources.dll new file mode 100644 index 0000000..ff72d7e Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/vi/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/zh-CN/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/zh-CN/Humanizer.resources.dll new file mode 100644 index 0000000..a80799f Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/zh-CN/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Humanizer.resources.dll new file mode 100644 index 0000000..c84c639 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..634b92a Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..e4b3c7a Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..b51ee57 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..ee58ace Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..76106fb Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..e27e8be Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..22b6e95 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Humanizer.resources.dll new file mode 100644 index 0000000..d0cb506 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..91237eb Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..57e4d28 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..305dfbf Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..62eb03b Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..432f584 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..cef3ebc Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..dce3bc0 Binary files /dev/null and b/TCM_API/TCM_API/bin/Debug/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Azure.Core.dll b/TCM_API/TCM_API/bin/Release/net8.0/Azure.Core.dll new file mode 100644 index 0000000..791391b Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Azure.Core.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Azure.Identity.dll b/TCM_API/TCM_API/bin/Release/net8.0/Azure.Identity.dll new file mode 100644 index 0000000..4a32fd0 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Azure.Identity.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Humanizer.dll b/TCM_API/TCM_API/bin/Release/net8.0/Humanizer.dll new file mode 100644 index 0000000..c9a7ef8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Humanizer.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll new file mode 100644 index 0000000..6e55896 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.AspNetCore.Authorization.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.AspNetCore.Authorization.dll new file mode 100644 index 0000000..16ea612 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.AspNetCore.Authorization.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.AspNetCore.Metadata.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.AspNetCore.Metadata.dll new file mode 100644 index 0000000..4ccbea6 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.AspNetCore.Metadata.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.AspNetCore.Razor.Language.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.AspNetCore.Razor.Language.dll new file mode 100644 index 0000000..e111d7b Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.AspNetCore.Razor.Language.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Bcl.AsyncInterfaces.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100644 index 0000000..f5f1cee Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Bcl.Memory.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Bcl.Memory.dll new file mode 100644 index 0000000..84f76cb Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Bcl.Memory.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Build.Framework.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Build.Framework.dll new file mode 100644 index 0000000..9e4134f Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Build.Framework.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Build.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Build.dll new file mode 100644 index 0000000..d740a3a Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Build.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll new file mode 100644 index 0000000..e070bd5 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.Features.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.Features.dll new file mode 100644 index 0000000..5d641f8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.Features.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll new file mode 100644 index 0000000..2e99f76 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.dll new file mode 100644 index 0000000..8d56de1 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.Elfie.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.Elfie.dll new file mode 100644 index 0000000..b131340 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.Elfie.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.Features.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.Features.dll new file mode 100644 index 0000000..9b007e4 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.Features.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.Razor.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.Razor.dll new file mode 100644 index 0000000..25ee99a Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.Razor.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.Scripting.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.Scripting.dll new file mode 100644 index 0000000..2dc47f1 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.Scripting.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.Workspaces.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.Workspaces.dll new file mode 100644 index 0000000..7253875 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.Workspaces.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.dll new file mode 100644 index 0000000..7d537db Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.CodeAnalysis.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Data.SqlClient.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..ad230c9 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Data.SqlClient.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.DiaSymReader.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.DiaSymReader.dll new file mode 100644 index 0000000..b234cfd Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.DiaSymReader.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.DotNet.Scaffolding.Shared.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.DotNet.Scaffolding.Shared.dll new file mode 100644 index 0000000..bfe6b6e Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.DotNet.Scaffolding.Shared.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100644 index 0000000..2169cf8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Design.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Design.dll new file mode 100644 index 0000000..7ba3d94 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Design.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Relational.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100644 index 0000000..f8c58d0 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll new file mode 100644 index 0000000..9c39273 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.dll new file mode 100644 index 0000000..b628ed6 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.EntityFrameworkCore.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.Caching.Memory.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.Caching.Memory.dll new file mode 100644 index 0000000..077b1b6 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..81ed3de Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..bd71a2b Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.DependencyModel.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..8905537 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.Logging.Abstractions.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..f9d1dc6 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.Logging.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..35905b6 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.Logging.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.Options.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..a7b3f21 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Extensions.Options.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll new file mode 100644 index 0000000..1a2779c Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Identity.Client.Extensions.Msal.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Identity.Client.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Identity.Client.dll new file mode 100644 index 0000000..eac2f91 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Identity.Client.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.Abstractions.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.Abstractions.dll new file mode 100644 index 0000000..a34e976 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 0000000..bef1e02 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.Logging.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..a533925 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 0000000..fed943a Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 0000000..da9cab0 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.Protocols.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.Tokens.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..2f55b44 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.NET.StringTools.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.NET.StringTools.dll new file mode 100644 index 0000000..0eb5fb2 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.NET.StringTools.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.OpenApi.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.OpenApi.dll new file mode 100644 index 0000000..14f3ded Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.OpenApi.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.SqlServer.Server.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.SqlServer.Server.dll new file mode 100644 index 0000000..ddeaa86 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.SqlServer.Server.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll new file mode 100644 index 0000000..5b7c213 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll new file mode 100644 index 0000000..73a383a Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll new file mode 100644 index 0000000..fa7a8d8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll new file mode 100644 index 0000000..8c9a031 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll new file mode 100644 index 0000000..f5d5188 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll new file mode 100644 index 0000000..fd94b08 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Win32.SystemEvents.dll b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..4f50adb Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Mono.TextTemplating.dll b/TCM_API/TCM_API/bin/Release/net8.0/Mono.TextTemplating.dll new file mode 100644 index 0000000..62f056d Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Mono.TextTemplating.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Newtonsoft.Json.dll b/TCM_API/TCM_API/bin/Release/net8.0/Newtonsoft.Json.dll new file mode 100644 index 0000000..d035c38 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Newtonsoft.Json.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/TCM_API/TCM_API/bin/Release/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll new file mode 100644 index 0000000..4b4f0fc Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Npgsql.dll b/TCM_API/TCM_API/bin/Release/net8.0/Npgsql.dll new file mode 100644 index 0000000..fde1387 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Npgsql.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Common.dll b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Common.dll new file mode 100644 index 0000000..5e7eb41 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Common.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Configuration.dll b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Configuration.dll new file mode 100644 index 0000000..459de99 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Configuration.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/NuGet.DependencyResolver.Core.dll b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.DependencyResolver.Core.dll new file mode 100644 index 0000000..023e6e9 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.DependencyResolver.Core.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Frameworks.dll b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Frameworks.dll new file mode 100644 index 0000000..504ff2c Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Frameworks.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/NuGet.LibraryModel.dll b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.LibraryModel.dll new file mode 100644 index 0000000..24f8782 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.LibraryModel.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Packaging.dll b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Packaging.dll new file mode 100644 index 0000000..6ff87f6 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Packaging.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/NuGet.ProjectModel.dll b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.ProjectModel.dll new file mode 100644 index 0000000..1a69df2 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.ProjectModel.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Protocol.dll b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Protocol.dll new file mode 100644 index 0000000..bcf1a12 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Protocol.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Versioning.dll b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Versioning.dll new file mode 100644 index 0000000..8cccc5c Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/NuGet.Versioning.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Swashbuckle.AspNetCore.Swagger.dll b/TCM_API/TCM_API/bin/Release/net8.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..e9b8cf7 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/TCM_API/TCM_API/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..68e38a2 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/TCM_API/TCM_API/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..9c52aed Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/System.CodeDom.dll b/TCM_API/TCM_API/bin/Release/net8.0/System.CodeDom.dll new file mode 100644 index 0000000..873495d Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/System.CodeDom.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/System.Composition.AttributedModel.dll b/TCM_API/TCM_API/bin/Release/net8.0/System.Composition.AttributedModel.dll new file mode 100644 index 0000000..1431751 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/System.Composition.AttributedModel.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/System.Composition.Convention.dll b/TCM_API/TCM_API/bin/Release/net8.0/System.Composition.Convention.dll new file mode 100644 index 0000000..e9dacb1 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/System.Composition.Convention.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/System.Composition.Hosting.dll b/TCM_API/TCM_API/bin/Release/net8.0/System.Composition.Hosting.dll new file mode 100644 index 0000000..8381202 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/System.Composition.Hosting.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/System.Composition.Runtime.dll b/TCM_API/TCM_API/bin/Release/net8.0/System.Composition.Runtime.dll new file mode 100644 index 0000000..d583c3a Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/System.Composition.Runtime.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/System.Composition.TypedParts.dll b/TCM_API/TCM_API/bin/Release/net8.0/System.Composition.TypedParts.dll new file mode 100644 index 0000000..2b278d7 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/System.Composition.TypedParts.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/System.Configuration.ConfigurationManager.dll b/TCM_API/TCM_API/bin/Release/net8.0/System.Configuration.ConfigurationManager.dll new file mode 100644 index 0000000..e610807 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/System.Configuration.ConfigurationManager.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/System.Drawing.Common.dll b/TCM_API/TCM_API/bin/Release/net8.0/System.Drawing.Common.dll new file mode 100644 index 0000000..310d5e8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/System.Drawing.Common.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/System.Formats.Asn1.dll b/TCM_API/TCM_API/bin/Release/net8.0/System.Formats.Asn1.dll new file mode 100644 index 0000000..16cc849 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/System.Formats.Asn1.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/System.IdentityModel.Tokens.Jwt.dll b/TCM_API/TCM_API/bin/Release/net8.0/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 0000000..b99fef3 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/System.Memory.Data.dll b/TCM_API/TCM_API/bin/Release/net8.0/System.Memory.Data.dll new file mode 100644 index 0000000..6f2a3e0 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/System.Memory.Data.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/System.Reflection.MetadataLoadContext.dll b/TCM_API/TCM_API/bin/Release/net8.0/System.Reflection.MetadataLoadContext.dll new file mode 100644 index 0000000..3063b24 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/System.Reflection.MetadataLoadContext.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/System.Runtime.Caching.dll b/TCM_API/TCM_API/bin/Release/net8.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..14826eb Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/System.Runtime.Caching.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/System.Security.Cryptography.ProtectedData.dll b/TCM_API/TCM_API/bin/Release/net8.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..93e0dd0 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/System.Security.Permissions.dll b/TCM_API/TCM_API/bin/Release/net8.0/System.Security.Permissions.dll new file mode 100644 index 0000000..9d8e76c Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/System.Security.Permissions.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/System.Windows.Extensions.dll b/TCM_API/TCM_API/bin/Release/net8.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..23a5f31 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/System.Windows.Extensions.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/TCM_API.deps.json b/TCM_API/TCM_API/bin/Release/net8.0/TCM_API.deps.json new file mode 100644 index 0000000..85b37cf --- /dev/null +++ b/TCM_API/TCM_API/bin/Release/net8.0/TCM_API.deps.json @@ -0,0 +1,3196 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v8.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v8.0": { + "TCM_API/1.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Authentication.JwtBearer": "8.0.10", + "Microsoft.AspNetCore.Authorization": "8.0.10", + "Microsoft.EntityFrameworkCore.SqlServer": "8.0.10", + "Microsoft.EntityFrameworkCore.Tools": "8.0.10", + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": "1.19.6", + "Microsoft.VisualStudio.Web.CodeGeneration.Design": "8.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "8.0.10", + "Swashbuckle.AspNetCore": "6.4.0", + "System.IdentityModel.Tokens.Jwt": "8.3.1" + }, + "runtime": { + "TCM_API.dll": {} + } + }, + "Azure.Core/1.35.0": { + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Memory.Data": "1.0.2", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "7.0.0", + "System.Text.Json": "7.0.3", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "assemblyVersion": "1.35.0.0", + "fileVersion": "1.3500.23.45706" + } + } + }, + "Azure.Identity/1.10.3": { + "dependencies": { + "Azure.Core": "1.35.0", + "Microsoft.Identity.Client": "4.56.0", + "Microsoft.Identity.Client.Extensions.Msal": "4.56.0", + "System.Memory": "4.5.4", + "System.Security.Cryptography.ProtectedData": "7.0.0", + "System.Text.Json": "7.0.3", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "assemblyVersion": "1.10.3.0", + "fileVersion": "1.1000.323.51804" + } + } + }, + "Humanizer/2.14.1": { + "dependencies": { + "Humanizer.Core.af": "2.14.1", + "Humanizer.Core.ar": "2.14.1", + "Humanizer.Core.az": "2.14.1", + "Humanizer.Core.bg": "2.14.1", + "Humanizer.Core.bn-BD": "2.14.1", + "Humanizer.Core.cs": "2.14.1", + "Humanizer.Core.da": "2.14.1", + "Humanizer.Core.de": "2.14.1", + "Humanizer.Core.el": "2.14.1", + "Humanizer.Core.es": "2.14.1", + "Humanizer.Core.fa": "2.14.1", + "Humanizer.Core.fi-FI": "2.14.1", + "Humanizer.Core.fr": "2.14.1", + "Humanizer.Core.fr-BE": "2.14.1", + "Humanizer.Core.he": "2.14.1", + "Humanizer.Core.hr": "2.14.1", + "Humanizer.Core.hu": "2.14.1", + "Humanizer.Core.hy": "2.14.1", + "Humanizer.Core.id": "2.14.1", + "Humanizer.Core.is": "2.14.1", + "Humanizer.Core.it": "2.14.1", + "Humanizer.Core.ja": "2.14.1", + "Humanizer.Core.ko-KR": "2.14.1", + "Humanizer.Core.ku": "2.14.1", + "Humanizer.Core.lv": "2.14.1", + "Humanizer.Core.ms-MY": "2.14.1", + "Humanizer.Core.mt": "2.14.1", + "Humanizer.Core.nb": "2.14.1", + "Humanizer.Core.nb-NO": "2.14.1", + "Humanizer.Core.nl": "2.14.1", + "Humanizer.Core.pl": "2.14.1", + "Humanizer.Core.pt": "2.14.1", + "Humanizer.Core.ro": "2.14.1", + "Humanizer.Core.ru": "2.14.1", + "Humanizer.Core.sk": "2.14.1", + "Humanizer.Core.sl": "2.14.1", + "Humanizer.Core.sr": "2.14.1", + "Humanizer.Core.sr-Latn": "2.14.1", + "Humanizer.Core.sv": "2.14.1", + "Humanizer.Core.th-TH": "2.14.1", + "Humanizer.Core.tr": "2.14.1", + "Humanizer.Core.uk": "2.14.1", + "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", + "Humanizer.Core.uz-Latn-UZ": "2.14.1", + "Humanizer.Core.vi": "2.14.1", + "Humanizer.Core.zh-CN": "2.14.1", + "Humanizer.Core.zh-Hans": "2.14.1", + "Humanizer.Core.zh-Hant": "2.14.1" + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Humanizer.Core.af/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/af/Humanizer.resources.dll": { + "locale": "af" + } + } + }, + "Humanizer.Core.ar/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/ar/Humanizer.resources.dll": { + "locale": "ar" + } + } + }, + "Humanizer.Core.az/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/az/Humanizer.resources.dll": { + "locale": "az" + } + } + }, + "Humanizer.Core.bg/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/bg/Humanizer.resources.dll": { + "locale": "bg" + } + } + }, + "Humanizer.Core.bn-BD/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/bn-BD/Humanizer.resources.dll": { + "locale": "bn-BD" + } + } + }, + "Humanizer.Core.cs/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/cs/Humanizer.resources.dll": { + "locale": "cs" + } + } + }, + "Humanizer.Core.da/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/da/Humanizer.resources.dll": { + "locale": "da" + } + } + }, + "Humanizer.Core.de/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/de/Humanizer.resources.dll": { + "locale": "de" + } + } + }, + "Humanizer.Core.el/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/el/Humanizer.resources.dll": { + "locale": "el" + } + } + }, + "Humanizer.Core.es/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/es/Humanizer.resources.dll": { + "locale": "es" + } + } + }, + "Humanizer.Core.fa/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/fa/Humanizer.resources.dll": { + "locale": "fa" + } + } + }, + "Humanizer.Core.fi-FI/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/fi-FI/Humanizer.resources.dll": { + "locale": "fi-FI" + } + } + }, + "Humanizer.Core.fr/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/fr/Humanizer.resources.dll": { + "locale": "fr" + } + } + }, + "Humanizer.Core.fr-BE/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/fr-BE/Humanizer.resources.dll": { + "locale": "fr-BE" + } + } + }, + "Humanizer.Core.he/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/he/Humanizer.resources.dll": { + "locale": "he" + } + } + }, + "Humanizer.Core.hr/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/hr/Humanizer.resources.dll": { + "locale": "hr" + } + } + }, + "Humanizer.Core.hu/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/hu/Humanizer.resources.dll": { + "locale": "hu" + } + } + }, + "Humanizer.Core.hy/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/hy/Humanizer.resources.dll": { + "locale": "hy" + } + } + }, + "Humanizer.Core.id/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/id/Humanizer.resources.dll": { + "locale": "id" + } + } + }, + "Humanizer.Core.is/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/is/Humanizer.resources.dll": { + "locale": "is" + } + } + }, + "Humanizer.Core.it/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/it/Humanizer.resources.dll": { + "locale": "it" + } + } + }, + "Humanizer.Core.ja/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/ja/Humanizer.resources.dll": { + "locale": "ja" + } + } + }, + "Humanizer.Core.ko-KR/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { + "locale": "ko-KR" + } + } + }, + "Humanizer.Core.ku/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/ku/Humanizer.resources.dll": { + "locale": "ku" + } + } + }, + "Humanizer.Core.lv/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/lv/Humanizer.resources.dll": { + "locale": "lv" + } + } + }, + "Humanizer.Core.ms-MY/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { + "locale": "ms-MY" + } + } + }, + "Humanizer.Core.mt/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/netstandard2.0/mt/Humanizer.resources.dll": { + "locale": "mt" + } + } + }, + "Humanizer.Core.nb/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/nb/Humanizer.resources.dll": { + "locale": "nb" + } + } + }, + "Humanizer.Core.nb-NO/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/nb-NO/Humanizer.resources.dll": { + "locale": "nb-NO" + } + } + }, + "Humanizer.Core.nl/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/nl/Humanizer.resources.dll": { + "locale": "nl" + } + } + }, + "Humanizer.Core.pl/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/pl/Humanizer.resources.dll": { + "locale": "pl" + } + } + }, + "Humanizer.Core.pt/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/pt/Humanizer.resources.dll": { + "locale": "pt" + } + } + }, + "Humanizer.Core.ro/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/ro/Humanizer.resources.dll": { + "locale": "ro" + } + } + }, + "Humanizer.Core.ru/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/ru/Humanizer.resources.dll": { + "locale": "ru" + } + } + }, + "Humanizer.Core.sk/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/sk/Humanizer.resources.dll": { + "locale": "sk" + } + } + }, + "Humanizer.Core.sl/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/sl/Humanizer.resources.dll": { + "locale": "sl" + } + } + }, + "Humanizer.Core.sr/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/sr/Humanizer.resources.dll": { + "locale": "sr" + } + } + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/sr-Latn/Humanizer.resources.dll": { + "locale": "sr-Latn" + } + } + }, + "Humanizer.Core.sv/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/sv/Humanizer.resources.dll": { + "locale": "sv" + } + } + }, + "Humanizer.Core.th-TH/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { + "locale": "th-TH" + } + } + }, + "Humanizer.Core.tr/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/tr/Humanizer.resources.dll": { + "locale": "tr" + } + } + }, + "Humanizer.Core.uk/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/uk/Humanizer.resources.dll": { + "locale": "uk" + } + } + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { + "locale": "uz-Cyrl-UZ" + } + } + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { + "locale": "uz-Latn-UZ" + } + } + }, + "Humanizer.Core.vi/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/vi/Humanizer.resources.dll": { + "locale": "vi" + } + } + }, + "Humanizer.Core.zh-CN/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/zh-CN/Humanizer.resources.dll": { + "locale": "zh-CN" + } + } + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/zh-Hans/Humanizer.resources.dll": { + "locale": "zh-Hans" + } + } + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "dependencies": { + "Humanizer.Core": "2.14.1" + }, + "resources": { + "lib/net6.0/zh-Hant/Humanizer.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.10": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2" + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46804" + } + } + }, + "Microsoft.AspNetCore.Authorization/8.0.10": { + "dependencies": { + "Microsoft.AspNetCore.Metadata": "8.0.10", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + } + } + }, + "Microsoft.AspNetCore.Metadata/8.0.10": { + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46804" + } + } + }, + "Microsoft.AspNetCore.Razor.Language/6.0.24": { + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { + "assemblyVersion": "6.0.24.0", + "fileVersion": "6.0.2423.51812" + } + } + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Bcl.Memory/9.0.0": { + "runtime": { + "lib/net8.0/Microsoft.Bcl.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Microsoft.Build/17.8.3": { + "dependencies": { + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.NET.StringTools": "17.8.3", + "System.Collections.Immutable": "7.0.0", + "System.Configuration.ConfigurationManager": "7.0.0", + "System.Reflection.Metadata": "7.0.0", + "System.Reflection.MetadataLoadContext": "7.0.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Threading.Tasks.Dataflow": "7.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Build.dll": { + "assemblyVersion": "15.1.0.0", + "fileVersion": "17.8.3.51904" + } + } + }, + "Microsoft.Build.Framework/17.8.3": { + "runtime": { + "lib/net8.0/Microsoft.Build.Framework.dll": { + "assemblyVersion": "15.1.0.0", + "fileVersion": "17.8.3.51904" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": { + "assemblyVersion": "3.3.2.30504", + "fileVersion": "3.3.2.30504" + } + } + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "System.Collections.Immutable": "7.0.0", + "System.Reflection.Metadata": "7.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Features/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Features": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Elfie/1.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "7.0.0", + "System.Data.DataSetExtensions": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.16" + } + } + }, + "Microsoft.CodeAnalysis.Features/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Elfie": "1.0.0", + "Microsoft.CodeAnalysis.Scripting.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0", + "Microsoft.DiaSymReader": "2.0.0", + "System.Text.Json": "7.0.3" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Features.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Razor/6.0.24": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.24", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { + "assemblyVersion": "6.0.24.0", + "fileVersion": "6.0.2423.51812" + } + } + }, + "Microsoft.CodeAnalysis.Scripting.Common/4.8.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Scripting.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "System.Composition": "7.0.0", + "System.IO.Pipelines": "7.0.0", + "System.Threading.Channels": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.SqlClient/5.1.5": { + "dependencies": { + "Azure.Identity": "1.10.3", + "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1", + "Microsoft.Identity.Client": "4.56.0", + "Microsoft.IdentityModel.JsonWebTokens": "8.3.1", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "7.0.0", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Runtime.Caching": "6.0.0", + "System.Security.Cryptography.Cng": "5.0.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Text.Encodings.Web": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.Data.SqlClient.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.15.24027.2" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "rid": "unix", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.15.24027.2" + }, + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.15.24027.2" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm", + "assetType": "native", + "fileVersion": "5.1.1.0" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-arm64", + "assetType": "native", + "fileVersion": "5.1.1.0" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x64", + "assetType": "native", + "fileVersion": "5.1.1.0" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "rid": "win-x86", + "assetType": "native", + "fileVersion": "5.1.1.0" + } + } + }, + "Microsoft.DiaSymReader/2.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.DiaSymReader.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.23.22804" + } + } + }, + "Microsoft.DotNet.Scaffolding.Shared/8.0.7": { + "dependencies": { + "Humanizer": "2.14.1", + "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0", + "Microsoft.Extensions.DependencyModel": "8.0.2", + "Mono.TextTemplating": "2.3.1", + "Newtonsoft.Json": "13.0.3", + "NuGet.ProjectModel": "6.11.0", + "System.Formats.Asn1": "8.0.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.dll": { + "assemblyVersion": "8.0.7.0", + "fileVersion": "8.0.724.53004" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10", + "Microsoft.Extensions.Caching.Memory": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": {}, + "Microsoft.EntityFrameworkCore.Design/8.0.10": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "8.0.10", + "Microsoft.Extensions.DependencyModel": "8.0.2", + "Mono.TextTemplating": "2.3.1" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.EntityFrameworkCore.SqlServer/8.0.10": { + "dependencies": { + "Microsoft.Data.SqlClient": "5.1.5", + "Microsoft.EntityFrameworkCore.Relational": "8.0.10" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.1024.46708" + } + } + }, + "Microsoft.EntityFrameworkCore.Tools/8.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "8.0.10" + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.1": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "8.0.0.2", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Logging/8.0.1": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.1024.46610" + } + } + }, + "Microsoft.Extensions.Options/8.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.224.6711" + } + } + }, + "Microsoft.Extensions.Primitives/8.0.0": {}, + "Microsoft.Identity.Client/4.56.0": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.3.1" + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "assemblyVersion": "4.56.0.0", + "fileVersion": "4.56.0.0" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.56.0": { + "dependencies": { + "Microsoft.Identity.Client": "4.56.0", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Security.Cryptography.ProtectedData": "7.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "assemblyVersion": "4.56.0.0", + "fileVersion": "4.56.0.0" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.3.1": { + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.3.1.0", + "fileVersion": "8.3.1.60117" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.3.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.3.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.3.1.0", + "fileVersion": "8.3.1.60117" + } + } + }, + "Microsoft.IdentityModel.Logging/8.3.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.3.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.3.1.0", + "fileVersion": "8.3.1.60117" + } + } + }, + "Microsoft.IdentityModel.Protocols/7.1.2": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "8.3.1", + "Microsoft.IdentityModel.Tokens": "8.3.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "7.1.2.0", + "fileVersion": "7.1.2.41121" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "7.1.2", + "System.IdentityModel.Tokens.Jwt": "8.3.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "7.1.2.0", + "fileVersion": "7.1.2.41121" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.3.1": { + "dependencies": { + "Microsoft.Bcl.Memory": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.IdentityModel.Logging": "8.3.1" + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.3.1.0", + "fileVersion": "8.3.1.60117" + } + } + }, + "Microsoft.NET.StringTools/17.8.3": { + "runtime": { + "lib/net8.0/Microsoft.NET.StringTools.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "17.8.3.51904" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": {}, + "Microsoft.OpenApi/1.2.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.2.3.0", + "fileVersion": "1.2.3.0" + } + } + }, + "Microsoft.SqlServer.Server/1.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.19.6": {}, + "Microsoft.VisualStudio.Web.CodeGeneration/8.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "8.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { + "assemblyVersion": "8.0.7.0", + "fileVersion": "8.0.724.53004" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/8.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "8.0.7", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { + "assemblyVersion": "8.0.7.0", + "fileVersion": "8.0.724.53004" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/8.0.7": { + "dependencies": { + "Microsoft.DotNet.Scaffolding.Shared": "8.0.7", + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "8.0.7" + }, + "runtime": { + "lib/net8.0/dotnet-aspnet-codegenerator-design.dll": { + "assemblyVersion": "8.0.7.0", + "fileVersion": "8.0.724.53004" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/8.0.7": { + "dependencies": { + "Microsoft.DotNet.Scaffolding.Shared": "8.0.7", + "Microsoft.VisualStudio.Web.CodeGeneration.Core": "8.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { + "assemblyVersion": "8.0.7.0", + "fileVersion": "8.0.724.53004" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/8.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.24", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Razor": "6.0.24", + "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "8.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { + "assemblyVersion": "8.0.7.0", + "fileVersion": "8.0.724.53004" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/8.0.7": { + "dependencies": { + "Microsoft.Build": "17.8.3", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.DotNet.Scaffolding.Shared": "8.0.7", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { + "assemblyVersion": "8.0.7.0", + "fileVersion": "8.0.724.53004" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/8.0.7": { + "dependencies": { + "Microsoft.DotNet.Scaffolding.Shared": "8.0.7", + "Microsoft.VisualStudio.Web.CodeGeneration": "8.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { + "assemblyVersion": "8.0.7.0", + "fileVersion": "8.0.724.53004" + } + } + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Mono.TextTemplating/2.3.1": { + "dependencies": { + "System.CodeDom": "5.0.0" + }, + "runtime": { + "lib/netcoreapp3.1/Mono.TextTemplating.dll": { + "assemblyVersion": "2.3.0.0", + "fileVersion": "2.3.1.1" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Npgsql/8.0.5": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.2" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "8.0.5.0", + "fileVersion": "8.0.5.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.10", + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10", + "Microsoft.EntityFrameworkCore.Relational": "8.0.10", + "Npgsql": "8.0.5" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "8.0.10.0", + "fileVersion": "8.0.10.0" + } + } + }, + "NuGet.Common/6.11.0": { + "dependencies": { + "NuGet.Frameworks": "6.11.0" + }, + "runtime": { + "lib/netstandard2.0/NuGet.Common.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, + "NuGet.Configuration/6.11.0": { + "dependencies": { + "NuGet.Common": "6.11.0", + "System.Security.Cryptography.ProtectedData": "7.0.0" + }, + "runtime": { + "lib/netstandard2.0/NuGet.Configuration.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, + "NuGet.DependencyResolver.Core/6.11.0": { + "dependencies": { + "NuGet.Configuration": "6.11.0", + "NuGet.LibraryModel": "6.11.0", + "NuGet.Protocol": "6.11.0" + }, + "runtime": { + "lib/net5.0/NuGet.DependencyResolver.Core.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, + "NuGet.Frameworks/6.11.0": { + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, + "NuGet.LibraryModel/6.11.0": { + "dependencies": { + "NuGet.Common": "6.11.0", + "NuGet.Versioning": "6.11.0" + }, + "runtime": { + "lib/netstandard2.0/NuGet.LibraryModel.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, + "NuGet.Packaging/6.11.0": { + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "NuGet.Configuration": "6.11.0", + "NuGet.Versioning": "6.11.0", + "System.Security.Cryptography.Pkcs": "6.0.4" + }, + "runtime": { + "lib/net5.0/NuGet.Packaging.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, + "NuGet.ProjectModel/6.11.0": { + "dependencies": { + "NuGet.DependencyResolver.Core": "6.11.0" + }, + "runtime": { + "lib/net5.0/NuGet.ProjectModel.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, + "NuGet.Protocol/6.11.0": { + "dependencies": { + "NuGet.Packaging": "6.11.0" + }, + "runtime": { + "lib/net5.0/NuGet.Protocol.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, + "NuGet.Versioning/6.11.0": { + "runtime": { + "lib/netstandard2.0/NuGet.Versioning.dll": { + "assemblyVersion": "6.11.0.119", + "fileVersion": "6.11.0.119" + } + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "System.CodeDom/5.0.0": { + "runtime": { + "lib/netstandard2.0/System.CodeDom.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.51904" + } + } + }, + "System.Collections.Immutable/7.0.0": {}, + "System.Composition/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Convention": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0", + "System.Composition.TypedParts": "7.0.0" + } + }, + "System.Composition.AttributedModel/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Convention/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Convention.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Hosting/7.0.0": { + "dependencies": { + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.Hosting.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.Runtime/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Composition.TypedParts/7.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Configuration.ConfigurationManager/7.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "7.0.0", + "System.Security.Cryptography.ProtectedData": "7.0.0", + "System.Security.Permissions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Data.DataSetExtensions/4.5.0": {}, + "System.Diagnostics.DiagnosticSource/6.0.1": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Diagnostics.EventLog/7.0.0": {}, + "System.Drawing.Common/7.0.0": { + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Formats.Asn1/8.0.1": { + "runtime": { + "lib/net8.0/System.Formats.Asn1.dll": { + "assemblyVersion": "8.0.0.0", + "fileVersion": "8.0.724.31311" + } + } + }, + "System.IdentityModel.Tokens.Jwt/8.3.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.3.1", + "Microsoft.IdentityModel.Tokens": "8.3.1" + }, + "runtime": { + "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.3.1.0", + "fileVersion": "8.3.1.60117" + } + } + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.IO.Pipelines/7.0.0": {}, + "System.Memory/4.5.4": {}, + "System.Memory.Data/1.0.2": { + "dependencies": { + "System.Text.Encodings.Web": "7.0.0", + "System.Text.Json": "7.0.3" + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "assemblyVersion": "1.0.2.0", + "fileVersion": "1.0.221.20802" + } + } + }, + "System.Numerics.Vectors/4.5.0": {}, + "System.Reflection.Metadata/7.0.0": { + "dependencies": { + "System.Collections.Immutable": "7.0.0" + } + }, + "System.Reflection.MetadataLoadContext/7.0.0": { + "dependencies": { + "System.Collections.Immutable": "7.0.0", + "System.Reflection.Metadata": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Reflection.MetadataLoadContext.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Runtime.Caching/6.0.0": { + "dependencies": { + "System.Configuration.ConfigurationManager": "7.0.0" + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "4.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Security.AccessControl/5.0.0": { + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + } + }, + "System.Security.Cryptography.Cng/5.0.0": { + "dependencies": { + "System.Formats.Asn1": "8.0.1" + } + }, + "System.Security.Cryptography.Pkcs/6.0.4": { + "dependencies": { + "System.Formats.Asn1": "8.0.1" + } + }, + "System.Security.Cryptography.ProtectedData/7.0.0": { + "runtime": { + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Security.Permissions/7.0.0": { + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Security.Principal.Windows/5.0.0": {}, + "System.Text.Encoding.CodePages/6.0.0": { + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + } + }, + "System.Text.Encodings.Web/7.0.0": {}, + "System.Text.Json/7.0.3": { + "dependencies": { + "System.Text.Encodings.Web": "7.0.0" + } + }, + "System.Threading.Channels/7.0.0": {}, + "System.Threading.Tasks.Dataflow/7.0.0": {}, + "System.Threading.Tasks.Extensions/4.5.4": {}, + "System.Windows.Extensions/7.0.0": { + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + } + } + }, + "libraries": { + "TCM_API/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Azure.Core/1.35.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hENcx03Jyuqv05F4RBEPbxz29UrM3Nbhnr6Wl6NQpoU9BCIbL3XLentrxDCTrH54NLS11Exxi/o8MYgT/cnKFA==", + "path": "azure.core/1.35.0", + "hashPath": "azure.core.1.35.0.nupkg.sha512" + }, + "Azure.Identity/1.10.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l1Xm2MWOF2Mzcwuarlw8kWQXLZk3UeB55aQXVyjj23aBfDwOZ3gu5GP2kJ6KlmZeZv2TCzw7x4L3V36iNr3gww==", + "path": "azure.identity/1.10.3", + "hashPath": "azure.identity.1.10.3.nupkg.sha512" + }, + "Humanizer/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==", + "path": "humanizer/2.14.1", + "hashPath": "humanizer.2.14.1.nupkg.sha512" + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "path": "humanizer.core/2.14.1", + "hashPath": "humanizer.core.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.af/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==", + "path": "humanizer.core.af/2.14.1", + "hashPath": "humanizer.core.af.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.ar/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==", + "path": "humanizer.core.ar/2.14.1", + "hashPath": "humanizer.core.ar.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.az/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==", + "path": "humanizer.core.az/2.14.1", + "hashPath": "humanizer.core.az.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.bg/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==", + "path": "humanizer.core.bg/2.14.1", + "hashPath": "humanizer.core.bg.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.bn-BD/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==", + "path": "humanizer.core.bn-bd/2.14.1", + "hashPath": "humanizer.core.bn-bd.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.cs/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==", + "path": "humanizer.core.cs/2.14.1", + "hashPath": "humanizer.core.cs.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.da/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==", + "path": "humanizer.core.da/2.14.1", + "hashPath": "humanizer.core.da.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.de/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==", + "path": "humanizer.core.de/2.14.1", + "hashPath": "humanizer.core.de.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.el/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==", + "path": "humanizer.core.el/2.14.1", + "hashPath": "humanizer.core.el.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.es/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==", + "path": "humanizer.core.es/2.14.1", + "hashPath": "humanizer.core.es.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.fa/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==", + "path": "humanizer.core.fa/2.14.1", + "hashPath": "humanizer.core.fa.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.fi-FI/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==", + "path": "humanizer.core.fi-fi/2.14.1", + "hashPath": "humanizer.core.fi-fi.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.fr/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==", + "path": "humanizer.core.fr/2.14.1", + "hashPath": "humanizer.core.fr.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.fr-BE/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==", + "path": "humanizer.core.fr-be/2.14.1", + "hashPath": "humanizer.core.fr-be.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.he/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==", + "path": "humanizer.core.he/2.14.1", + "hashPath": "humanizer.core.he.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.hr/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==", + "path": "humanizer.core.hr/2.14.1", + "hashPath": "humanizer.core.hr.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.hu/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==", + "path": "humanizer.core.hu/2.14.1", + "hashPath": "humanizer.core.hu.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.hy/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==", + "path": "humanizer.core.hy/2.14.1", + "hashPath": "humanizer.core.hy.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.id/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==", + "path": "humanizer.core.id/2.14.1", + "hashPath": "humanizer.core.id.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.is/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==", + "path": "humanizer.core.is/2.14.1", + "hashPath": "humanizer.core.is.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.it/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==", + "path": "humanizer.core.it/2.14.1", + "hashPath": "humanizer.core.it.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.ja/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==", + "path": "humanizer.core.ja/2.14.1", + "hashPath": "humanizer.core.ja.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.ko-KR/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==", + "path": "humanizer.core.ko-kr/2.14.1", + "hashPath": "humanizer.core.ko-kr.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.ku/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==", + "path": "humanizer.core.ku/2.14.1", + "hashPath": "humanizer.core.ku.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.lv/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==", + "path": "humanizer.core.lv/2.14.1", + "hashPath": "humanizer.core.lv.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.ms-MY/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==", + "path": "humanizer.core.ms-my/2.14.1", + "hashPath": "humanizer.core.ms-my.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.mt/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==", + "path": "humanizer.core.mt/2.14.1", + "hashPath": "humanizer.core.mt.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.nb/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==", + "path": "humanizer.core.nb/2.14.1", + "hashPath": "humanizer.core.nb.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.nb-NO/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==", + "path": "humanizer.core.nb-no/2.14.1", + "hashPath": "humanizer.core.nb-no.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.nl/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==", + "path": "humanizer.core.nl/2.14.1", + "hashPath": "humanizer.core.nl.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.pl/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==", + "path": "humanizer.core.pl/2.14.1", + "hashPath": "humanizer.core.pl.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.pt/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==", + "path": "humanizer.core.pt/2.14.1", + "hashPath": "humanizer.core.pt.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.ro/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==", + "path": "humanizer.core.ro/2.14.1", + "hashPath": "humanizer.core.ro.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.ru/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==", + "path": "humanizer.core.ru/2.14.1", + "hashPath": "humanizer.core.ru.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.sk/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==", + "path": "humanizer.core.sk/2.14.1", + "hashPath": "humanizer.core.sk.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.sl/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==", + "path": "humanizer.core.sl/2.14.1", + "hashPath": "humanizer.core.sl.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.sr/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==", + "path": "humanizer.core.sr/2.14.1", + "hashPath": "humanizer.core.sr.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==", + "path": "humanizer.core.sr-latn/2.14.1", + "hashPath": "humanizer.core.sr-latn.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.sv/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==", + "path": "humanizer.core.sv/2.14.1", + "hashPath": "humanizer.core.sv.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.th-TH/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==", + "path": "humanizer.core.th-th/2.14.1", + "hashPath": "humanizer.core.th-th.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.tr/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==", + "path": "humanizer.core.tr/2.14.1", + "hashPath": "humanizer.core.tr.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.uk/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==", + "path": "humanizer.core.uk/2.14.1", + "hashPath": "humanizer.core.uk.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==", + "path": "humanizer.core.uz-cyrl-uz/2.14.1", + "hashPath": "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==", + "path": "humanizer.core.uz-latn-uz/2.14.1", + "hashPath": "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.vi/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==", + "path": "humanizer.core.vi/2.14.1", + "hashPath": "humanizer.core.vi.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.zh-CN/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==", + "path": "humanizer.core.zh-cn/2.14.1", + "hashPath": "humanizer.core.zh-cn.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==", + "path": "humanizer.core.zh-hans/2.14.1", + "hashPath": "humanizer.core.zh-hans.2.14.1.nupkg.sha512" + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==", + "path": "humanizer.core.zh-hant/2.14.1", + "hashPath": "humanizer.core.zh-hant.2.14.1.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rcPXghZCc82IB9U2Px1Ln5Zn3vjV4p83H/Few5T/904hBddjSz03COQ2zOGWBBvdTBY+GciAUJwgBFNWaxLfqw==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/8.0.10", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.8.0.10.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authorization/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mENBehQP1H9oTB4Diu1l7vR1BeZrBNWA9sHZsln4l2oIs7D3qH3fokopU/8FWa9JSxQYNBT1MeYBCwguYOBjMQ==", + "path": "microsoft.aspnetcore.authorization/8.0.10", + "hashPath": "microsoft.aspnetcore.authorization.8.0.10.nupkg.sha512" + }, + "Microsoft.AspNetCore.Metadata/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E9YwEujZjXhMLi1hqJh+7iLk2DzNxa4dB9wYY8lHYpAzZdVqoGjaFsaaIzwCvSZZxd7S7Cds01Trlye2mTqeZA==", + "path": "microsoft.aspnetcore.metadata/8.0.10", + "hashPath": "microsoft.aspnetcore.metadata.8.0.10.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/6.0.24": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kBL6ljTREp/3fk8EKN27mrPy3WTqWUjiqCkKFlCKHUKRO3/9rAasKizX3vPWy4ZTcNsIPmVWUHwjDFmiW4MyNA==", + "path": "microsoft.aspnetcore.razor.language/6.0.24", + "hashPath": "microsoft.aspnetcore.razor.language.6.0.24.nupkg.sha512" + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==", + "path": "microsoft.bcl.asyncinterfaces/7.0.0", + "hashPath": "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512" + }, + "Microsoft.Bcl.Memory/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bTUtGfpGyJnohQzjdXbtc7MqNzkv7CWUSRz54+ucNm0i32rZiIU0VdVPHDBShOl1qhVKRjW8mnEBz3d2vH93tQ==", + "path": "microsoft.bcl.memory/9.0.0", + "hashPath": "microsoft.bcl.memory.9.0.0.nupkg.sha512" + }, + "Microsoft.Build/17.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jOxP2DrBZb2zuDO5M8LfI50SCdXlahgUHJ6mH0jz4OBID0F9o+DVggk0CPAONmcbUPo2SsQCFkMaxmHkKLj99Q==", + "path": "microsoft.build/17.8.3", + "hashPath": "microsoft.build.17.8.3.nupkg.sha512" + }, + "Microsoft.Build.Framework/17.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NrQZJW8TlKVPx72yltGb8SVz3P5mNRk9fNiD/ao8jRSk48WqIIdCn99q4IjlVmPcruuQ+yLdjNQLL8Rb4c916g==", + "path": "microsoft.build.framework/17.8.3", + "hashPath": "microsoft.build.framework.17.8.3.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", + "path": "microsoft.codeanalysis.analyzers/3.3.4", + "hashPath": "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==", + "path": "microsoft.codeanalysis.analyzerutilities/3.3.0", + "hashPath": "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==", + "path": "microsoft.codeanalysis.common/4.8.0", + "hashPath": "microsoft.codeanalysis.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==", + "path": "microsoft.codeanalysis.csharp/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Features/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Gpas3l8PE1xz1VDIJNMkYuoFPXtuALxybP04caXh9avC2a0elsoBdukndkJXVZgdKPwraf0a98s7tjqnEk5QIQ==", + "path": "microsoft.codeanalysis.csharp.features/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.features.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==", + "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Elfie/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-r12elUp4MRjdnRfxEP+xqVSUUfG3yIJTBEJGwbfvF5oU4m0jb9HC0gFG28V/dAkYGMkRmHVi3qvrnBLQSw9X3Q==", + "path": "microsoft.codeanalysis.elfie/1.0.0", + "hashPath": "microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Features/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sCVzMtSETGE16KeScwwlVfxaKRbUMSf/cgRPRPMJuou37SLT7XkIBzJu4e7mlFTzpJbfalV5tOcKpUtLO3eJAg==", + "path": "microsoft.codeanalysis.features/4.8.0", + "hashPath": "microsoft.codeanalysis.features.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Razor/6.0.24": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xIAjR6l/1PO2ILT6/lOGYfe8OzMqfqxh1lxFuM4Exluwc2sQhJw0kS7pEyJ0DE/UMYu6Jcdc53DmjOxQUDT2Pg==", + "path": "microsoft.codeanalysis.razor/6.0.24", + "hashPath": "microsoft.codeanalysis.razor.6.0.24.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Scripting.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ysiNNbAASVhV9wEd5oY2x99EwaVYtB13XZRjHsgWT/R1mQkxZF8jWsf7JWaZxD1+jNoz1QCQ6nbe+vr+6QvlFA==", + "path": "microsoft.codeanalysis.scripting.common/4.8.0", + "hashPath": "microsoft.codeanalysis.scripting.common.4.8.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==", + "path": "microsoft.codeanalysis.workspaces.common/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512" + }, + "Microsoft.Data.SqlClient/5.1.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6kvhQjY5uBCdBccezFD2smfnpQjQ33cZtUZVrNvxlwoBu6uopM5INH6uSgLI7JRLtlQ3bMPwnhMq4kchsXeZ5w==", + "path": "microsoft.data.sqlclient/5.1.5", + "hashPath": "microsoft.data.sqlclient.5.1.5.nupkg.sha512" + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==", + "path": "microsoft.data.sqlclient.sni.runtime/5.1.1", + "hashPath": "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512" + }, + "Microsoft.DiaSymReader/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QcZrCETsBJqy/vQpFtJc+jSXQ0K5sucQ6NUFbTNVHD4vfZZOwjZ/3sBzczkC4DityhD3AVO/+K/+9ioLs1AgRA==", + "path": "microsoft.diasymreader/2.0.0", + "hashPath": "microsoft.diasymreader.2.0.0.nupkg.sha512" + }, + "Microsoft.DotNet.Scaffolding.Shared/8.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-q11ADAFXiDHsiH6YpHDCtu/5JB/k6nBWM1pwoI3yOzq//2ZdnWgNkgs1coZyv/XZluxZbVmeo6f+ZoYGebIj/Q==", + "path": "microsoft.dotnet.scaffolding.shared/8.0.7", + "hashPath": "microsoft.dotnet.scaffolding.shared.8.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==", + "path": "microsoft.entityframeworkcore/8.0.10", + "hashPath": "microsoft.entityframeworkcore.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==", + "path": "microsoft.entityframeworkcore.abstractions/8.0.10", + "hashPath": "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==", + "path": "microsoft.entityframeworkcore.analyzers/8.0.10", + "hashPath": "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==", + "path": "microsoft.entityframeworkcore.design/8.0.10", + "hashPath": "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==", + "path": "microsoft.entityframeworkcore.relational/8.0.10", + "hashPath": "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.SqlServer/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DvhBEk44UjWMebFKwIFDIdEsG8gzbgflWIZljDCpIkZVpId+PKs0ufzJxnTQ94InPO+pS7+wE45cRsPRt9B0Iw==", + "path": "microsoft.entityframeworkcore.sqlserver/8.0.10", + "hashPath": "microsoft.entityframeworkcore.sqlserver.8.0.10.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Tools/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aaimNUjkJDHdZb2hxd6hjwz7OdeankbQHPx8/b+qCfVfaEpOAIW0LTBge4qG+AUKacKfcoK7GJq6ACjenEvPLQ==", + "path": "microsoft.entityframeworkcore.tools/8.0.10", + "hashPath": "microsoft.entityframeworkcore.tools.8.0.10.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", + "path": "microsoft.extensions.caching.memory/8.0.1", + "hashPath": "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", + "path": "microsoft.extensions.dependencyinjection/8.0.1", + "hashPath": "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==", + "path": "microsoft.extensions.dependencymodel/8.0.2", + "hashPath": "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", + "path": "microsoft.extensions.logging/8.0.1", + "hashPath": "microsoft.extensions.logging.8.0.1.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "hashPath": "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Options/8.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", + "path": "microsoft.extensions.options/8.0.2", + "hashPath": "microsoft.extensions.options.8.0.2.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "path": "microsoft.extensions.primitives/8.0.0", + "hashPath": "microsoft.extensions.primitives.8.0.0.nupkg.sha512" + }, + "Microsoft.Identity.Client/4.56.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rr4zbidvHy9r4NvOAs5hdd964Ao2A0pAeFBJKR95u1CJAVzbd1p6tPTXUZ+5ld0cfThiVSGvz6UHwY6JjraTpA==", + "path": "microsoft.identity.client/4.56.0", + "hashPath": "microsoft.identity.client.4.56.0.nupkg.sha512" + }, + "Microsoft.Identity.Client.Extensions.Msal/4.56.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H12YAzEGK55vZ+QpxUzozhW8ZZtgPDuWvgA0JbdIR9UhMUplj29JhIgE2imuH8W2Nw9D8JKygR1uxRFtpSNcrg==", + "path": "microsoft.identity.client.extensions.msal/4.56.0", + "hashPath": "microsoft.identity.client.extensions.msal.4.56.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oXYKRcTS0DTIB5vZenGy9oceD8awhjnXFFabc/IWBwluMA03SGvazCFyUIQ2mJOIOSf9lLyM971nbTj9qZgEJg==", + "path": "microsoft.identitymodel.abstractions/8.3.1", + "hashPath": "microsoft.identitymodel.abstractions.8.3.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-cA622rrXYdaO7inNZ8KY5leZpP6889wT+gHPgvy62PYlAITyxF9PxP5u+ecNBOsPx2PagBH7ZNr39yU/MOPn+w==", + "path": "microsoft.identitymodel.jsonwebtokens/8.3.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.3.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XCwbK7ErgZdrwl4ph+i8X5SCGwAepBFbsNIEceozGzrBFVvZbKKJE1WQOft9QyglP4me+DECdVVL8UnI6OO+sg==", + "path": "microsoft.identitymodel.logging/8.3.1", + "hashPath": "microsoft.identitymodel.logging.8.3.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/7.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SydLwMRFx6EHPWJ+N6+MVaoArN1Htt92b935O3RUWPY1yUF63zEjvd3lBu79eWdZUwedP8TN2I5V9T3nackvIQ==", + "path": "microsoft.identitymodel.protocols/7.1.2", + "hashPath": "microsoft.identitymodel.protocols.7.1.2.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6lHQoLXhnMQ42mGrfDkzbIOR3rzKM1W1tgTeMPLgLCqwwGw0d96xFi/UiX/fYsu7d6cD5MJiL3+4HuI8VU+sVQ==", + "path": "microsoft.identitymodel.protocols.openidconnect/7.1.2", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.7.1.2.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-77GXREJzIDiKAc/RR8YE267bwzrxM4cjMRCzMQa0Xk1MUUdjx/JwjDJpUh00vT4oxcX5rjsMP0KLd8YjgR3N3w==", + "path": "microsoft.identitymodel.tokens/8.3.1", + "hashPath": "microsoft.identitymodel.tokens.8.3.1.nupkg.sha512" + }, + "Microsoft.NET.StringTools/17.8.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-y6DiuacjlIfXH3XVQG5htf+4oheinZAo7sHbITB3z7yCXQec48f9ZhGSXkr+xn1bfl73Yc3ZQEW2peJ5X68AvQ==", + "path": "microsoft.net.stringtools/17.8.3", + "hashPath": "microsoft.net.stringtools.17.8.3.nupkg.sha512" + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "path": "microsoft.netcore.platforms/5.0.0", + "hashPath": "microsoft.netcore.platforms.5.0.0.nupkg.sha512" + }, + "Microsoft.OpenApi/1.2.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", + "path": "microsoft.openapi/1.2.3", + "hashPath": "microsoft.openapi.1.2.3.nupkg.sha512" + }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "path": "microsoft.sqlserver.server/1.0.0", + "hashPath": "microsoft.sqlserver.server.1.0.0.nupkg.sha512" + }, + "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.19.6": { + "type": "package", + "serviceable": true, + "sha512": "sha512-7GOQdMzQcH7o/bPFL/I2kQEgMnq2pYZ+exhGb9nNqs624K9w2jB2zieh4sOH9+a01i/G9iTWfeUI3IGMF7SKNg==", + "path": "microsoft.visualstudio.azure.containers.tools.targets/1.19.6", + "hashPath": "microsoft.visualstudio.azure.containers.tools.targets.1.19.6.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration/8.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8WqtBA1DxiiEq1c2PjgkeFYHPC0WwC5Yl7FuDg41RQ6rvi661mSHCApzz3/rp/cfb8I7DiG1+3d01q5ck+BT1w==", + "path": "microsoft.visualstudio.web.codegeneration/8.0.7", + "hashPath": "microsoft.visualstudio.web.codegeneration.8.0.7.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/8.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kahoV4hImS/uUfn3K9ecU+o1U4pn5sdnabG+DGsK9bf6gL0tw8MnrArz3M9kWYMKDsVd3/j/3ZriTH+hVrPW2w==", + "path": "microsoft.visualstudio.web.codegeneration.core/8.0.7", + "hashPath": "microsoft.visualstudio.web.codegeneration.core.8.0.7.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/8.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qURp+VCwreGNQBofL6z3uUnLmrG3PCap/jN/B8jGqsiMLjhR+FOO7r9R1vcNeXYd5cFORpQvsuZi6GWXxr2dCA==", + "path": "microsoft.visualstudio.web.codegeneration.design/8.0.7", + "hashPath": "microsoft.visualstudio.web.codegeneration.design.8.0.7.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/8.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Cd37PMogJ7sbzbUkbZsqPOLpKg0xbBLypsGuJ8HLX7caTDSg2NIsNT/MJKu0VybfoQ2L4fli8XpJXxVytbx1wA==", + "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/8.0.7", + "hashPath": "microsoft.visualstudio.web.codegeneration.entityframeworkcore.8.0.7.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/8.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uXtCSh13HD7589QSez9cVwQ2xacIgDuf33/ifW8a6DqxC+dF5ium2p+5odUNbzRU8cnCuISjti7F+D4F9kLLVw==", + "path": "microsoft.visualstudio.web.codegeneration.templating/8.0.7", + "hashPath": "microsoft.visualstudio.web.codegeneration.templating.8.0.7.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/8.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2oA20npXOXxH2pmnTtXNrPgow+W3dGREI+SWrCci5IbTgQE6NOhL+5PmbxqAqjhmoyy9CSEbaav9eWTM7jEdQQ==", + "path": "microsoft.visualstudio.web.codegeneration.utils/8.0.7", + "hashPath": "microsoft.visualstudio.web.codegeneration.utils.8.0.7.nupkg.sha512" + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/8.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IN7xeBHZ/WtYN62Ez0rEWqpsiTlpEUbGcjvXLRF2gNO8SdhFn9IhzdixKXTLzHTf89oS9Y5mFIPkWcU4Y99USA==", + "path": "microsoft.visualstudio.web.codegenerators.mvc/8.0.7", + "hashPath": "microsoft.visualstudio.web.codegenerators.mvc.8.0.7.nupkg.sha512" + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "path": "microsoft.win32.systemevents/7.0.0", + "hashPath": "microsoft.win32.systemevents.7.0.0.nupkg.sha512" + }, + "Mono.TextTemplating/2.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-pqYwzNqDL0QK1JFpAjpI/NPqyqLGpHLvVmA5Ec0LaSnbIDtEXxu0td16uunegb7c8xAnlcm4qkbIYUP5FfrFpA==", + "path": "mono.texttemplating/2.3.1", + "hashPath": "mono.texttemplating.2.3.1.nupkg.sha512" + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "path": "newtonsoft.json/13.0.3", + "hashPath": "newtonsoft.json.13.0.3.nupkg.sha512" + }, + "Npgsql/8.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==", + "path": "npgsql/8.0.5", + "hashPath": "npgsql.8.0.5.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-gFPl9Dmxih7Yi4tZ3bITzZFzbxFMBx04gqTqcjoL2r5VEW+O2TA5UVw/wm/XW26NAJ7sg59Je0+9QrwiZt6MPQ==", + "path": "npgsql.entityframeworkcore.postgresql/8.0.10", + "hashPath": "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512" + }, + "NuGet.Common/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-T3bCiKUSx8wdYpcqr6Dbx93zAqFp689ee/oa1tH22XI/xl7EUzQ7No/WlE1FUqvEX1+Mqar3wRNAn2O/yxo94g==", + "path": "nuget.common/6.11.0", + "hashPath": "nuget.common.6.11.0.nupkg.sha512" + }, + "NuGet.Configuration/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-73QprQqmumFrv3Ooi4YWpRYeBj8jZy9gNdOaOCp4pPInpt41SJJAz/aP4je+StwIJvi5HsgPPecLKekDIQEwKg==", + "path": "nuget.configuration/6.11.0", + "hashPath": "nuget.configuration.6.11.0.nupkg.sha512" + }, + "NuGet.DependencyResolver.Core/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SoiPKPooA+IF+iCsX1ykwi3M0e+yBL34QnwIP3ujhQEn1dhlP/N1XsYAnKkJPxV15EZCahuuS4HtnBsZx+CHKA==", + "path": "nuget.dependencyresolver.core/6.11.0", + "hashPath": "nuget.dependencyresolver.core.6.11.0.nupkg.sha512" + }, + "NuGet.Frameworks/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ew/mrfmLF5phsprysHbph2+tdZ10HMHAURavsr/Kx1WhybDG4vmGuoNLbbZMZOqnPRdpyCTc42OKWLoedxpYtA==", + "path": "nuget.frameworks/6.11.0", + "hashPath": "nuget.frameworks.6.11.0.nupkg.sha512" + }, + "NuGet.LibraryModel/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KUV2eeMICMb24OPcICn/wgncNzt6+W+lmFVO5eorTdo1qV4WXxYGyG1NTPiCY+Nrv5H/Ilnv9UaUM2ozqSmnjw==", + "path": "nuget.librarymodel/6.11.0", + "hashPath": "nuget.librarymodel.6.11.0.nupkg.sha512" + }, + "NuGet.Packaging/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-VmUv2LedVuPY1tfNybORO2I9IuqOzeV7I5JBD+PwNvJq2bAqovi4FCw2cYI0g+kjOJXBN2lAJfrfnqtUOlVJdQ==", + "path": "nuget.packaging/6.11.0", + "hashPath": "nuget.packaging.6.11.0.nupkg.sha512" + }, + "NuGet.ProjectModel/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-g0KtmDH6fas97WsN73yV2h1F5JT9o6+Y0wlPK+ij9YLKaAXaF6+1HkSaQMMJ+xh9/jCJG9G6nau6InOlb1g48g==", + "path": "nuget.projectmodel/6.11.0", + "hashPath": "nuget.projectmodel.6.11.0.nupkg.sha512" + }, + "NuGet.Protocol/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-p5B8oNLLnGhUfMbcS16aRiegj11pD6k+LELyRBqvNFR/pE3yR1XT+g1XS33ME9wvoU+xbCGnl4Grztt1jHPinw==", + "path": "nuget.protocol/6.11.0", + "hashPath": "nuget.protocol.6.11.0.nupkg.sha512" + }, + "NuGet.Versioning/6.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v/GGlIj2dd7svplFmASWEueu62veKW0MrMtBaZ7QG8aJTSGv2yE+pgUGhXRcQ4nxNOEq/wLBrz1vkth/1SND7A==", + "path": "nuget.versioning/6.11.0", + "hashPath": "nuget.versioning.6.11.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "path": "swashbuckle.aspnetcore/6.4.0", + "hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + }, + "System.CodeDom/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JPJArwA1kdj8qDAkY2XGjSWoYnqiM7q/3yRNkt6n28Mnn95MuEGkZXUbPBf7qc3IjwrGY5ttQon7yqHZyQJmOQ==", + "path": "system.codedom/5.0.0", + "hashPath": "system.codedom.5.0.0.nupkg.sha512" + }, + "System.Collections.Immutable/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==", + "path": "system.collections.immutable/7.0.0", + "hashPath": "system.collections.immutable.7.0.0.nupkg.sha512" + }, + "System.Composition/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==", + "path": "system.composition/7.0.0", + "hashPath": "system.composition.7.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==", + "path": "system.composition.attributedmodel/7.0.0", + "hashPath": "system.composition.attributedmodel.7.0.0.nupkg.sha512" + }, + "System.Composition.Convention/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==", + "path": "system.composition.convention/7.0.0", + "hashPath": "system.composition.convention.7.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==", + "path": "system.composition.hosting/7.0.0", + "hashPath": "system.composition.hosting.7.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==", + "path": "system.composition.runtime/7.0.0", + "hashPath": "system.composition.runtime.7.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==", + "path": "system.composition.typedparts/7.0.0", + "hashPath": "system.composition.typedparts.7.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WvRUdlL1lB0dTRZSs5XcQOd5q9MYNk90GkbmRmiCvRHThWiojkpGqWdmEDJdXyHbxG/BhE5hmVbMfRLXW9FJVA==", + "path": "system.configuration.configurationmanager/7.0.0", + "hashPath": "system.configuration.configurationmanager.7.0.0.nupkg.sha512" + }, + "System.Data.DataSetExtensions/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==", + "path": "system.data.datasetextensions/4.5.0", + "hashPath": "system.data.datasetextensions.4.5.0.nupkg.sha512" + }, + "System.Diagnostics.DiagnosticSource/6.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==", + "path": "system.diagnostics.diagnosticsource/6.0.1", + "hashPath": "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512" + }, + "System.Diagnostics.EventLog/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eUDP47obqQm3SFJfP6z+Fx2nJ4KKTQbXB4Q9Uesnzw9SbYdhjyoGXuvDn/gEmFY6N5Z3bFFbpAQGA7m6hrYJCw==", + "path": "system.diagnostics.eventlog/7.0.0", + "hashPath": "system.diagnostics.eventlog.7.0.0.nupkg.sha512" + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "path": "system.drawing.common/7.0.0", + "hashPath": "system.drawing.common.7.0.0.nupkg.sha512" + }, + "System.Formats.Asn1/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XqKba7Mm/koKSjKMfW82olQdmfbI5yqeoLV/tidRp7fbh5rmHAQ5raDI/7SU0swTzv+jgqtUGkzmFxuUg0it1A==", + "path": "system.formats.asn1/8.0.1", + "hashPath": "system.formats.asn1.8.0.1.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.3.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SxdCv+SmnKOhUvryKvrpWJnkuVHj3hU8pUwj7R8zthi73TlBUlMyavon9qfuJsjnqY+L7jusp3Zo0fWFX6mwtw==", + "path": "system.identitymodel.tokens.jwt/8.3.1", + "hashPath": "system.identitymodel.tokens.jwt.8.3.1.nupkg.sha512" + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", + "path": "system.io.filesystem.accesscontrol/5.0.0", + "hashPath": "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.IO.Pipelines/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", + "path": "system.io.pipelines/7.0.0", + "hashPath": "system.io.pipelines.7.0.0.nupkg.sha512" + }, + "System.Memory/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "path": "system.memory/4.5.4", + "hashPath": "system.memory.4.5.4.nupkg.sha512" + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", + "path": "system.memory.data/1.0.2", + "hashPath": "system.memory.data.1.0.2.nupkg.sha512" + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "path": "system.numerics.vectors/4.5.0", + "hashPath": "system.numerics.vectors.4.5.0.nupkg.sha512" + }, + "System.Reflection.Metadata/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==", + "path": "system.reflection.metadata/7.0.0", + "hashPath": "system.reflection.metadata.7.0.0.nupkg.sha512" + }, + "System.Reflection.MetadataLoadContext/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-z9PvtMJra5hK8n+g0wmPtaG7HQRZpTmIPRw5Z0LEemlcdQMHuTD5D7OAY/fZuuz1L9db++QOcDF0gJTLpbMtZQ==", + "path": "system.reflection.metadataloadcontext/7.0.0", + "hashPath": "system.reflection.metadataloadcontext.7.0.0.nupkg.sha512" + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "path": "system.runtime.caching/6.0.0", + "hashPath": "system.runtime.caching.6.0.0.nupkg.sha512" + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "hashPath": "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512" + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "path": "system.security.accesscontrol/5.0.0", + "hashPath": "system.security.accesscontrol.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "path": "system.security.cryptography.cng/5.0.0", + "hashPath": "system.security.cryptography.cng.5.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/6.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-LGbXi1oUJ9QgCNGXRO9ndzBL/GZgANcsURpMhNR8uO+rca47SZmciS3RSQUvlQRwK3QHZSHNOXzoMUASKA+Anw==", + "path": "system.security.cryptography.pkcs/6.0.4", + "hashPath": "system.security.cryptography.pkcs.6.0.4.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xSPiLNlHT6wAHtugASbKAJwV5GVqQK351crnILAucUioFqqieDN79evO1rku1ckt/GfjIn+b17UaSskoY03JuA==", + "path": "system.security.cryptography.protecteddata/7.0.0", + "hashPath": "system.security.cryptography.protecteddata.7.0.0.nupkg.sha512" + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "path": "system.security.permissions/7.0.0", + "hashPath": "system.security.permissions.7.0.0.nupkg.sha512" + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "path": "system.security.principal.windows/5.0.0", + "hashPath": "system.security.principal.windows.5.0.0.nupkg.sha512" + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "path": "system.text.encoding.codepages/6.0.0", + "hashPath": "system.text.encoding.codepages.6.0.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", + "path": "system.text.encodings.web/7.0.0", + "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" + }, + "System.Text.Json/7.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AyjhwXN1zTFeIibHimfJn6eAsZ7rTBib79JQpzg8WAuR/HKDu9JGNHTuu3nbbXQ/bgI+U4z6HtZmCHNXB1QXrQ==", + "path": "system.text.json/7.0.3", + "hashPath": "system.text.json.7.0.3.nupkg.sha512" + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "path": "system.threading.channels/7.0.0", + "hashPath": "system.threading.channels.7.0.0.nupkg.sha512" + }, + "System.Threading.Tasks.Dataflow/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BmSJ4b0e2nlplV/RdWVxvH7WECTHACofv06dx/JwOYc0n56eK1jIWdQKNYYsReSO4w8n1QA5stOzSQcfaVBkJg==", + "path": "system.threading.tasks.dataflow/7.0.0", + "hashPath": "system.threading.tasks.dataflow.7.0.0.nupkg.sha512" + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "path": "system.threading.tasks.extensions/4.5.4", + "hashPath": "system.threading.tasks.extensions.4.5.4.nupkg.sha512" + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "path": "system.windows.extensions/7.0.0", + "hashPath": "system.windows.extensions.7.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/TCM_API/TCM_API/bin/Release/net8.0/TCM_API.dll b/TCM_API/TCM_API/bin/Release/net8.0/TCM_API.dll new file mode 100644 index 0000000..3083d10 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/TCM_API.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/TCM_API.exe b/TCM_API/TCM_API/bin/Release/net8.0/TCM_API.exe new file mode 100644 index 0000000..7e5360d Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/TCM_API.exe differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/TCM_API.pdb b/TCM_API/TCM_API/bin/Release/net8.0/TCM_API.pdb new file mode 100644 index 0000000..6f3bcfa Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/TCM_API.pdb differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/TCM_API.runtimeconfig.json b/TCM_API/TCM_API/bin/Release/net8.0/TCM_API.runtimeconfig.json new file mode 100644 index 0000000..ffac358 --- /dev/null +++ b/TCM_API/TCM_API/bin/Release/net8.0/TCM_API.runtimeconfig.json @@ -0,0 +1,21 @@ +{ + "runtimeOptions": { + "tfm": "net8.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "8.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "8.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/TCM_API/TCM_API/bin/Release/net8.0/af/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/af/Humanizer.resources.dll new file mode 100644 index 0000000..e191f5f Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/af/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/appsettings.Development.json b/TCM_API/TCM_API/bin/Release/net8.0/appsettings.Development.json new file mode 100644 index 0000000..0c208ae --- /dev/null +++ b/TCM_API/TCM_API/bin/Release/net8.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/TCM_API/TCM_API/bin/Release/net8.0/appsettings.json b/TCM_API/TCM_API/bin/Release/net8.0/appsettings.json new file mode 100644 index 0000000..467ce11 --- /dev/null +++ b/TCM_API/TCM_API/bin/Release/net8.0/appsettings.json @@ -0,0 +1,12 @@ +{ + "AppSettings": { + "Secret": "TCM token test jwt lamiter local 1234567" + }, + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*" +} diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ar/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ar/Humanizer.resources.dll new file mode 100644 index 0000000..319af06 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ar/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/az/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/az/Humanizer.resources.dll new file mode 100644 index 0000000..f51f16e Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/az/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/bg/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/bg/Humanizer.resources.dll new file mode 100644 index 0000000..c6b47e9 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/bg/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/bn-BD/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/bn-BD/Humanizer.resources.dll new file mode 100644 index 0000000..dead005 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/bn-BD/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/cs/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/cs/Humanizer.resources.dll new file mode 100644 index 0000000..43094ae Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/cs/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..b85668a Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..4e90e20 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..8dcc1bd Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..222dc80 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..c815e8e Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..62b0422 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..180a8d9 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/da/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/da/Humanizer.resources.dll new file mode 100644 index 0000000..25c518a Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/da/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/de/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/de/Humanizer.resources.dll new file mode 100644 index 0000000..eca8773 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/de/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..9e4f329 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..4b7bae7 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..05da79f Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..7bf7965 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..b65f276 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..e128407 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..6a98feb Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/dotnet-aspnet-codegenerator-design.dll b/TCM_API/TCM_API/bin/Release/net8.0/dotnet-aspnet-codegenerator-design.dll new file mode 100644 index 0000000..9c4d756 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/dotnet-aspnet-codegenerator-design.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/el/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/el/Humanizer.resources.dll new file mode 100644 index 0000000..7496654 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/el/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/es/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/es/Humanizer.resources.dll new file mode 100644 index 0000000..a2ccea7 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/es/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..aa74b78 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..8e8ced1 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..970399e Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..36baafe Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..2a65614 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..6cb47ac Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..76ddceb Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/fa/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/fa/Humanizer.resources.dll new file mode 100644 index 0000000..71fb905 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/fa/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/fi-FI/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/fi-FI/Humanizer.resources.dll new file mode 100644 index 0000000..553a14d Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/fi-FI/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/fr-BE/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/fr-BE/Humanizer.resources.dll new file mode 100644 index 0000000..d75e247 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/fr-BE/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/fr/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/fr/Humanizer.resources.dll new file mode 100644 index 0000000..5fb44a9 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/fr/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..f05c95f Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..c41ed4c Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..5fe6dd8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..bf29690 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..623e1ba Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..046c953 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..368bb7b Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/he/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/he/Humanizer.resources.dll new file mode 100644 index 0000000..deb8b6e Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/he/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/hr/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/hr/Humanizer.resources.dll new file mode 100644 index 0000000..4d50733 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/hr/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/hu/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/hu/Humanizer.resources.dll new file mode 100644 index 0000000..f93d556 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/hu/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/hy/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/hy/Humanizer.resources.dll new file mode 100644 index 0000000..a61b5e6 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/hy/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/id/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/id/Humanizer.resources.dll new file mode 100644 index 0000000..e605f23 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/id/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/is/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/is/Humanizer.resources.dll new file mode 100644 index 0000000..40e36d7 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/is/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/it/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/it/Humanizer.resources.dll new file mode 100644 index 0000000..9434487 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/it/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..1590156 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..72bb9d5 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..6051d99 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..7b12155 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..99a1314 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..829ed5d Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..9890df1 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ja/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ja/Humanizer.resources.dll new file mode 100644 index 0000000..f949d63 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ja/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..bc69084 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..eaded8c Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..47f3fd5 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..b99c9b3 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..2c3af4a Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..203cc83 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..208b1d9 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ko-KR/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ko-KR/Humanizer.resources.dll new file mode 100644 index 0000000..6a5f6c7 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ko-KR/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..f7f8af4 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..895ca11 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..c712a37 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..96de54c Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..22c4478 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..4790c29 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..05bc700 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ku/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ku/Humanizer.resources.dll new file mode 100644 index 0000000..606d2b9 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ku/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/lv/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/lv/Humanizer.resources.dll new file mode 100644 index 0000000..463bf2d Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/lv/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ms-MY/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ms-MY/Humanizer.resources.dll new file mode 100644 index 0000000..6494db8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ms-MY/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/mt/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/mt/Humanizer.resources.dll new file mode 100644 index 0000000..7e056c7 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/mt/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/nb-NO/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/nb-NO/Humanizer.resources.dll new file mode 100644 index 0000000..4ff1965 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/nb-NO/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/nb/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/nb/Humanizer.resources.dll new file mode 100644 index 0000000..48d7d6e Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/nb/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/nl/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/nl/Humanizer.resources.dll new file mode 100644 index 0000000..e1bca89 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/nl/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/pl/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/pl/Humanizer.resources.dll new file mode 100644 index 0000000..1b81e27 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/pl/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..848aeb8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..eb61aff Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..ea192cc Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..c624ee3 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..8723ebd Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..fce2d36 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..e142029 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..9c9cc0e Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..7c20209 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..be86033 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..83b88f8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..de7c13c Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..768264c Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..0dc6fae Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/pt/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/pt/Humanizer.resources.dll new file mode 100644 index 0000000..71daa56 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/pt/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ro/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ro/Humanizer.resources.dll new file mode 100644 index 0000000..0aea9b9 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ro/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ru/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ru/Humanizer.resources.dll new file mode 100644 index 0000000..dd2f875 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ru/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..f4069e0 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..85dd902 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..dfd0a6b Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..eb8d3fc Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..3fa2fa8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..cafdf21 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..ace0504 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..2dfb3c3 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..c171a72 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..3f2b452 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..8fde16b Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll new file mode 100644 index 0000000..93fb631 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll new file mode 100644 index 0000000..b804b11 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll new file mode 100644 index 0000000..bdca76d Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net6.0/System.Runtime.Caching.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll new file mode 100644 index 0000000..d40a926 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll new file mode 100644 index 0000000..39493b4 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net7.0/System.Drawing.Common.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll new file mode 100644 index 0000000..a441e38 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net7.0/System.Windows.Extensions.dll b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net7.0/System.Windows.Extensions.dll new file mode 100644 index 0000000..a881c26 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/runtimes/win/lib/net7.0/System.Windows.Extensions.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/sk/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/sk/Humanizer.resources.dll new file mode 100644 index 0000000..4c03f54 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/sk/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/sl/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/sl/Humanizer.resources.dll new file mode 100644 index 0000000..b79bb3c Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/sl/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/sr-Latn/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/sr-Latn/Humanizer.resources.dll new file mode 100644 index 0000000..e846785 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/sr-Latn/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/sr/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/sr/Humanizer.resources.dll new file mode 100644 index 0000000..7e36e26 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/sr/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/sv/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/sv/Humanizer.resources.dll new file mode 100644 index 0000000..70974a5 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/sv/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/th-TH/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/th-TH/Humanizer.resources.dll new file mode 100644 index 0000000..4dcc85d Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/th-TH/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/tr/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/tr/Humanizer.resources.dll new file mode 100644 index 0000000..eff6ad8 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/tr/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..cb60f9f Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..9867f6f Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..2a4742e Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..a964e2b Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..362a18c Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..8012969 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..9a06288 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/uk/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/uk/Humanizer.resources.dll new file mode 100644 index 0000000..d4fb7a2 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/uk/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/uz-Cyrl-UZ/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/uz-Cyrl-UZ/Humanizer.resources.dll new file mode 100644 index 0000000..c76160d Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/uz-Cyrl-UZ/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/uz-Latn-UZ/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/uz-Latn-UZ/Humanizer.resources.dll new file mode 100644 index 0000000..da72030 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/uz-Latn-UZ/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/vi/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/vi/Humanizer.resources.dll new file mode 100644 index 0000000..ff72d7e Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/vi/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/zh-CN/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/zh-CN/Humanizer.resources.dll new file mode 100644 index 0000000..a80799f Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/zh-CN/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Humanizer.resources.dll new file mode 100644 index 0000000..c84c639 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..634b92a Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..e4b3c7a Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..b51ee57 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..ee58ace Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..76106fb Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..e27e8be Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..22b6e95 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Humanizer.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Humanizer.resources.dll new file mode 100644 index 0000000..d0cb506 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Humanizer.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll new file mode 100644 index 0000000..91237eb Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100644 index 0000000..57e4d28 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100644 index 0000000..305dfbf Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll new file mode 100644 index 0000000..62eb03b Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll new file mode 100644 index 0000000..432f584 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100644 index 0000000..cef3ebc Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100644 index 0000000..dce3bc0 Binary files /dev/null and b/TCM_API/TCM_API/bin/Release/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.AssemblyInfo.cs b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.AssemblyInfo.cs index a1340fa..92f5fef 100644 --- a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.AssemblyInfo.cs +++ b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.AssemblyInfo.cs @@ -15,7 +15,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("TCM_API")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+0569fcfd925512aba6f3430de15693fe590b9026")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ece8ee57edb0d2493f481f1c8d50e26c9e16e4c6")] [assembly: System.Reflection.AssemblyProductAttribute("TCM_API")] [assembly: System.Reflection.AssemblyTitleAttribute("TCM_API")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.AssemblyInfoInputs.cache b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.AssemblyInfoInputs.cache index 144be5f..28e3d5a 100644 --- a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.AssemblyInfoInputs.cache +++ b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.AssemblyInfoInputs.cache @@ -1 +1 @@ -33717b32034e407206b022eeef3130c66ad039880d93f7dbd1e903d735b3c0fb +acd3dc0f3a7f727612bb4920a5c232cc324858045ed6a056a0aca5dd3f2cd4ed diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.GeneratedMSBuildEditorConfig.editorconfig b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.GeneratedMSBuildEditorConfig.editorconfig index 2a1f90d..8ca5d5b 100644 --- a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.GeneratedMSBuildEditorConfig.editorconfig +++ b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.GeneratedMSBuildEditorConfig.editorconfig @@ -1,11 +1,19 @@ is_global = true build_property.TargetFramework = net8.0 +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = build_property.TargetPlatformMinVersion = build_property.UsingMicrosoftNETSdkWeb = true +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = build_property.ProjectTypeGuids = build_property.InvariantGlobalization = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = TCM_API build_property.RootNamespace = TCM_API diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.assets.cache b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.assets.cache index 56423ae..395da6f 100644 Binary files a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.assets.cache and b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.assets.cache differ diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.AssemblyReference.cache b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.AssemblyReference.cache index 5c76e1d..d978e75 100644 Binary files a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.AssemblyReference.cache and b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.AssemblyReference.cache differ diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.CoreCompileInputs.cache b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.CoreCompileInputs.cache index a459cf6..7aaf663 100644 --- a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.CoreCompileInputs.cache +++ b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.CoreCompileInputs.cache @@ -1 +1 @@ -028982f786b4456cc6569f0f050ce84a1aadbdc1e17b3ee626eb7b211c9afb00 +352fe6ff8fdd2ac0f26817e99d4262ec0e2c7f64916b3d996d16b14bcc0fb8d4 diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.FileListAbsolute.txt b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.FileListAbsolute.txt index fd66e91..f728117 100644 --- a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.FileListAbsolute.txt +++ b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.csproj.FileListAbsolute.txt @@ -30,3 +30,236 @@ D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\refint\TCM_API.dll D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\TCM_API.pdb D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\TCM_API.genruntimeconfig.cache D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Debug\net8.0\ref\TCM_API.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Azure.Core.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Azure.Identity.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Humanizer.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.AspNetCore.Authorization.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.AspNetCore.Metadata.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.AspNetCore.Razor.Language.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.Bcl.AsyncInterfaces.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.Bcl.Memory.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.Build.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.Build.Framework.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.CodeAnalysis.AnalyzerUtilities.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.CodeAnalysis.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.Features.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.CodeAnalysis.Elfie.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.CodeAnalysis.Features.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.CodeAnalysis.Razor.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.CodeAnalysis.Scripting.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.CodeAnalysis.Workspaces.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.Data.SqlClient.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.DiaSymReader.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.DotNet.Scaffolding.Shared.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Design.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.Relational.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.EntityFrameworkCore.SqlServer.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.Extensions.Caching.Memory.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.Extensions.DependencyModel.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.Extensions.Logging.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.Extensions.Logging.Abstractions.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.Extensions.Options.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.Identity.Client.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.IdentityModel.Abstractions.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.IdentityModel.Logging.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.IdentityModel.Tokens.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.NET.StringTools.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.SqlServer.Server.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.VisualStudio.Web.CodeGeneration.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\dotnet-aspnet-codegenerator-design.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Microsoft.Win32.SystemEvents.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Mono.TextTemplating.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Newtonsoft.Json.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Npgsql.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\NuGet.Common.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\NuGet.Configuration.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\NuGet.DependencyResolver.Core.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\NuGet.Frameworks.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\NuGet.LibraryModel.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\NuGet.Packaging.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\NuGet.ProjectModel.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\NuGet.Protocol.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\NuGet.Versioning.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\System.CodeDom.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\System.Composition.AttributedModel.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\System.Composition.Convention.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\System.Composition.Hosting.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\System.Composition.Runtime.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\System.Composition.TypedParts.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\System.Configuration.ConfigurationManager.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\System.Drawing.Common.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\System.Formats.Asn1.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\System.IdentityModel.Tokens.Jwt.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\System.Memory.Data.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\System.Reflection.MetadataLoadContext.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\System.Runtime.Caching.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\System.Security.Cryptography.ProtectedData.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\System.Security.Permissions.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\System.Windows.Extensions.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\af\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ar\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\az\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\bg\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\bn-BD\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\cs\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\da\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\de\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\el\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\es\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\fa\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\fi-FI\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\fr\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\fr-BE\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\he\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\hr\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\hu\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\hy\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\id\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\is\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\it\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ja\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ko-KR\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ku\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\lv\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ms-MY\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\mt\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\nb\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\nb-NO\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\nl\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\pl\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\pt\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ro\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ru\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\sk\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\sl\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\sr\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\sr-Latn\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\sv\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\th-TH\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\tr\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\uk\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\uz-Cyrl-UZ\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\uz-Latn-UZ\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\vi\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\zh-CN\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\zh-Hans\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\zh-Hant\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\runtimes\unix\lib\net6.0\Microsoft.Data.SqlClient.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\runtimes\win\lib\net6.0\Microsoft.Data.SqlClient.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\runtimes\win\lib\net7.0\Microsoft.Win32.SystemEvents.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\runtimes\win\lib\net7.0\System.Drawing.Common.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\runtimes\win\lib\net7.0\System.Security.Cryptography.ProtectedData.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Debug\net8.0\runtimes\win\lib\net7.0\System.Windows.Extensions.dll diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.dll b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.dll index 5138982..ba78c83 100644 Binary files a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.dll and b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.dll differ diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.genruntimeconfig.cache b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.genruntimeconfig.cache index dd4b8f4..52d4b48 100644 --- a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.genruntimeconfig.cache +++ b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.genruntimeconfig.cache @@ -1 +1 @@ -aad3036ebf0979a73a3abdcc0f35cad8978ee55bcfa12e9ced35126867139ad7 +446f0b1245afcc218254623445a1afe0a346a6b49f655fec4748a980b17b4679 diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.pdb b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.pdb index 0c2ab9b..519a804 100644 Binary files a/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.pdb and b/TCM_API/TCM_API/obj/Debug/net8.0/TCM_API.pdb differ diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/apphost.exe b/TCM_API/TCM_API/obj/Debug/net8.0/apphost.exe index 3f7a847..7e5360d 100644 Binary files a/TCM_API/TCM_API/obj/Debug/net8.0/apphost.exe and b/TCM_API/TCM_API/obj/Debug/net8.0/apphost.exe differ diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/ref/TCM_API.dll b/TCM_API/TCM_API/obj/Debug/net8.0/ref/TCM_API.dll index 68663ef..b742637 100644 Binary files a/TCM_API/TCM_API/obj/Debug/net8.0/ref/TCM_API.dll and b/TCM_API/TCM_API/obj/Debug/net8.0/ref/TCM_API.dll differ diff --git a/TCM_API/TCM_API/obj/Debug/net8.0/refint/TCM_API.dll b/TCM_API/TCM_API/obj/Debug/net8.0/refint/TCM_API.dll index 68663ef..b742637 100644 Binary files a/TCM_API/TCM_API/obj/Debug/net8.0/refint/TCM_API.dll and b/TCM_API/TCM_API/obj/Debug/net8.0/refint/TCM_API.dll differ diff --git a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.AssemblyInfo.cs b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.AssemblyInfo.cs index 2cf1f5f..cb3ff8c 100644 --- a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.AssemblyInfo.cs +++ b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.AssemblyInfo.cs @@ -15,7 +15,7 @@ using System.Reflection; [assembly: System.Reflection.AssemblyCompanyAttribute("TCM_API")] [assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] [assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] -[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+0569fcfd925512aba6f3430de15693fe590b9026")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+ece8ee57edb0d2493f481f1c8d50e26c9e16e4c6")] [assembly: System.Reflection.AssemblyProductAttribute("TCM_API")] [assembly: System.Reflection.AssemblyTitleAttribute("TCM_API")] [assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] diff --git a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.AssemblyInfoInputs.cache b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.AssemblyInfoInputs.cache index c2f4f2d..58761cd 100644 --- a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.AssemblyInfoInputs.cache +++ b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.AssemblyInfoInputs.cache @@ -1 +1 @@ -504c3d30ea64ae9ac5e870b2275d2b6c416752c032a903f1ee868ad7e0046a9d +67ba2fdcf3d9cd68d72b04e093aa3069eeed8893ad28042789943e1d36b9d86c diff --git a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.GeneratedMSBuildEditorConfig.editorconfig b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.GeneratedMSBuildEditorConfig.editorconfig index 2a1f90d..8ca5d5b 100644 --- a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.GeneratedMSBuildEditorConfig.editorconfig +++ b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.GeneratedMSBuildEditorConfig.editorconfig @@ -1,11 +1,19 @@ is_global = true build_property.TargetFramework = net8.0 +build_property.TargetFramework = net8.0 +build_property.TargetPlatformMinVersion = build_property.TargetPlatformMinVersion = build_property.UsingMicrosoftNETSdkWeb = true +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = build_property.ProjectTypeGuids = build_property.InvariantGlobalization = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = build_property.PlatformNeutralAssembly = build_property.EnforceExtendedAnalyzerRules = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows build_property._SupportedPlatformList = Linux,macOS,Windows build_property.RootNamespace = TCM_API build_property.RootNamespace = TCM_API diff --git a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.MvcApplicationPartsAssemblyInfo.cache b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.MvcApplicationPartsAssemblyInfo.cs b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..d1ab61a --- /dev/null +++ b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// 這段程式碼是由工具產生的。 +// 執行階段版本:4.0.30319.42000 +// +// 對這個檔案所做的變更可能會造成錯誤的行為,而且如果重新產生程式碼, +// 變更將會遺失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// 由 MSBuild WriteCodeFragment 類別產生。 + diff --git a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.assets.cache b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.assets.cache index f4a0455..89ff86a 100644 Binary files a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.assets.cache and b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.assets.cache differ diff --git a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.csproj.AssemblyReference.cache b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.csproj.AssemblyReference.cache index 5c76e1d..d978e75 100644 Binary files a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.csproj.AssemblyReference.cache and b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.csproj.AssemblyReference.cache differ diff --git a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.csproj.BuildWithSkipAnalyzers b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.csproj.CoreCompileInputs.cache b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..ad3e081 --- /dev/null +++ b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +81c588ae7623599729723df1cf13301dec5ec668390972803ff5affc4d8b0145 diff --git a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.csproj.FileListAbsolute.txt b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..3c1f94c --- /dev/null +++ b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.csproj.FileListAbsolute.txt @@ -0,0 +1,265 @@ +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\TCM_API.csproj.AssemblyReference.cache +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\TCM_API.GeneratedMSBuildEditorConfig.editorconfig +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\TCM_API.AssemblyInfoInputs.cache +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\TCM_API.AssemblyInfo.cs +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\TCM_API.csproj.CoreCompileInputs.cache +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\TCM_API.MvcApplicationPartsAssemblyInfo.cs +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\TCM_API.MvcApplicationPartsAssemblyInfo.cache +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\appsettings.Development.json +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\appsettings.json +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\TCM_API.exe +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\TCM_API.deps.json +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\TCM_API.runtimeconfig.json +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\TCM_API.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\TCM_API.pdb +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Azure.Core.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Azure.Identity.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Humanizer.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.AspNetCore.Authorization.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.AspNetCore.Metadata.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.AspNetCore.Razor.Language.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.Bcl.AsyncInterfaces.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.Bcl.Memory.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.Build.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.Build.Framework.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.CodeAnalysis.AnalyzerUtilities.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.CodeAnalysis.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.CodeAnalysis.CSharp.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.CodeAnalysis.CSharp.Features.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.CodeAnalysis.CSharp.Workspaces.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.CodeAnalysis.Elfie.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.CodeAnalysis.Features.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.CodeAnalysis.Razor.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.CodeAnalysis.Scripting.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.CodeAnalysis.Workspaces.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.Data.SqlClient.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.DiaSymReader.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.DotNet.Scaffolding.Shared.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.EntityFrameworkCore.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.EntityFrameworkCore.Abstractions.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.EntityFrameworkCore.Design.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.EntityFrameworkCore.Relational.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.EntityFrameworkCore.SqlServer.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.Extensions.Caching.Memory.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.Extensions.DependencyInjection.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.Extensions.DependencyInjection.Abstractions.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.Extensions.DependencyModel.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.Extensions.Logging.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.Extensions.Logging.Abstractions.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.Extensions.Options.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.Identity.Client.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.Identity.Client.Extensions.Msal.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.IdentityModel.Abstractions.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.IdentityModel.JsonWebTokens.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.IdentityModel.Logging.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.IdentityModel.Protocols.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.IdentityModel.Tokens.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.NET.StringTools.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.OpenApi.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.SqlServer.Server.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.VisualStudio.Web.CodeGeneration.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.VisualStudio.Web.CodeGeneration.Core.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\dotnet-aspnet-codegenerator-design.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Microsoft.Win32.SystemEvents.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Mono.TextTemplating.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Newtonsoft.Json.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Npgsql.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Npgsql.EntityFrameworkCore.PostgreSQL.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\NuGet.Common.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\NuGet.Configuration.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\NuGet.DependencyResolver.Core.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\NuGet.Frameworks.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\NuGet.LibraryModel.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\NuGet.Packaging.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\NuGet.ProjectModel.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\NuGet.Protocol.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\NuGet.Versioning.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Swashbuckle.AspNetCore.Swagger.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Swashbuckle.AspNetCore.SwaggerGen.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\Swashbuckle.AspNetCore.SwaggerUI.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\System.CodeDom.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\System.Composition.AttributedModel.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\System.Composition.Convention.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\System.Composition.Hosting.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\System.Composition.Runtime.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\System.Composition.TypedParts.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\System.Configuration.ConfigurationManager.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\System.Drawing.Common.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\System.Formats.Asn1.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\System.IdentityModel.Tokens.Jwt.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\System.Memory.Data.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\System.Reflection.MetadataLoadContext.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\System.Runtime.Caching.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\System.Security.Cryptography.ProtectedData.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\System.Security.Permissions.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\System.Windows.Extensions.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\af\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ar\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\az\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\bg\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\bn-BD\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\cs\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\da\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\de\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\el\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\es\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\fa\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\fi-FI\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\fr\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\fr-BE\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\he\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\hr\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\hu\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\hy\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\id\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\is\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\it\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ja\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ko-KR\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ku\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\lv\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ms-MY\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\mt\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\nb\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\nb-NO\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\nl\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\pl\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\pt\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ro\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ru\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\sk\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\sl\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\sr\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\sr-Latn\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\sv\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\th-TH\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\tr\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\uk\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\uz-Cyrl-UZ\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\uz-Latn-UZ\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\vi\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\zh-CN\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\zh-Hans\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\zh-Hant\Humanizer.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\cs\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\de\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\es\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\fr\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\it\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ja\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ko\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\pl\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\pt-BR\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ru\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\tr\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\zh-Hans\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\zh-Hant\Microsoft.CodeAnalysis.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\cs\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\de\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\es\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\fr\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\it\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ja\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ko\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\pl\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ru\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\tr\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\cs\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\de\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\es\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\fr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\it\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ja\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ko\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\pl\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ru\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\tr\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\cs\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\de\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\es\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\fr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\it\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ja\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ko\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\pl\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\pt-BR\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ru\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\tr\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\zh-Hans\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\zh-Hant\Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\cs\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\de\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\es\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\fr\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\it\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ja\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ko\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\pl\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\pt-BR\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ru\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\tr\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\zh-Hans\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\zh-Hant\Microsoft.CodeAnalysis.Features.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\cs\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\de\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\es\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\fr\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\it\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ja\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ko\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\pl\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\pt-BR\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ru\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\tr\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\zh-Hans\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\zh-Hant\Microsoft.CodeAnalysis.Scripting.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\cs\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\de\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\es\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\fr\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\it\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ja\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ko\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\pl\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\pt-BR\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\ru\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\tr\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\zh-Hans\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\zh-Hant\Microsoft.CodeAnalysis.Workspaces.resources.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\runtimes\unix\lib\net6.0\Microsoft.Data.SqlClient.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\runtimes\win\lib\net6.0\Microsoft.Data.SqlClient.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\runtimes\win-arm\native\Microsoft.Data.SqlClient.SNI.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\runtimes\win-arm64\native\Microsoft.Data.SqlClient.SNI.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\runtimes\win-x64\native\Microsoft.Data.SqlClient.SNI.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\runtimes\win-x86\native\Microsoft.Data.SqlClient.SNI.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\runtimes\win\lib\net7.0\Microsoft.Win32.SystemEvents.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\runtimes\win\lib\net7.0\System.Drawing.Common.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\runtimes\win\lib\net6.0\System.Runtime.Caching.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\runtimes\win\lib\net7.0\System.Security.Cryptography.ProtectedData.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\bin\Release\net8.0\runtimes\win\lib\net7.0\System.Windows.Extensions.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\staticwebassets.build.json +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\staticwebassets.development.json +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\staticwebassets\msbuild.TCM_API.Microsoft.AspNetCore.StaticWebAssets.props +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\staticwebassets\msbuild.build.TCM_API.props +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\staticwebassets\msbuild.buildMultiTargeting.TCM_API.props +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\staticwebassets\msbuild.buildTransitive.TCM_API.props +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\staticwebassets.pack.json +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\scopedcss\bundle\TCM_API.styles.css +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\TCM_API.csproj.Up2Date +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\TCM_API.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\refint\TCM_API.dll +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\TCM_API.pdb +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\TCM_API.genruntimeconfig.cache +D:\Code\Project\TCM\Backend\TCM_API\TCM_API\obj\Release\net8.0\ref\TCM_API.dll diff --git a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.csproj.Up2Date b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.dll b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.dll new file mode 100644 index 0000000..3083d10 Binary files /dev/null and b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.dll differ diff --git a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.genruntimeconfig.cache b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.genruntimeconfig.cache new file mode 100644 index 0000000..d609c46 --- /dev/null +++ b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.genruntimeconfig.cache @@ -0,0 +1 @@ +b26da88d7c57b409be4cbff708e91cddaa716dd82eea233a660b45e264387d0a diff --git a/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.pdb b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.pdb new file mode 100644 index 0000000..6f3bcfa Binary files /dev/null and b/TCM_API/TCM_API/obj/Release/net8.0/TCM_API.pdb differ diff --git a/TCM_API/TCM_API/obj/Release/net8.0/apphost.exe b/TCM_API/TCM_API/obj/Release/net8.0/apphost.exe new file mode 100644 index 0000000..7e5360d Binary files /dev/null and b/TCM_API/TCM_API/obj/Release/net8.0/apphost.exe differ diff --git a/TCM_API/TCM_API/obj/Release/net8.0/ref/TCM_API.dll b/TCM_API/TCM_API/obj/Release/net8.0/ref/TCM_API.dll new file mode 100644 index 0000000..d035d95 Binary files /dev/null and b/TCM_API/TCM_API/obj/Release/net8.0/ref/TCM_API.dll differ diff --git a/TCM_API/TCM_API/obj/Release/net8.0/refint/TCM_API.dll b/TCM_API/TCM_API/obj/Release/net8.0/refint/TCM_API.dll new file mode 100644 index 0000000..d035d95 Binary files /dev/null and b/TCM_API/TCM_API/obj/Release/net8.0/refint/TCM_API.dll differ diff --git a/TCM_API/TCM_API/obj/Release/net8.0/staticwebassets.build.json b/TCM_API/TCM_API/obj/Release/net8.0/staticwebassets.build.json new file mode 100644 index 0000000..29d2fac --- /dev/null +++ b/TCM_API/TCM_API/obj/Release/net8.0/staticwebassets.build.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "HGrw+IZkjRyKa3+VM487wmOPJHbtFr1RkF2O61RLy7M=", + "Source": "TCM_API", + "BasePath": "_content/TCM_API", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/TCM_API/TCM_API/obj/Release/net8.0/staticwebassets/msbuild.build.TCM_API.props b/TCM_API/TCM_API/obj/Release/net8.0/staticwebassets/msbuild.build.TCM_API.props new file mode 100644 index 0000000..5a6032a --- /dev/null +++ b/TCM_API/TCM_API/obj/Release/net8.0/staticwebassets/msbuild.build.TCM_API.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/TCM_API/TCM_API/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.TCM_API.props b/TCM_API/TCM_API/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.TCM_API.props new file mode 100644 index 0000000..a039015 --- /dev/null +++ b/TCM_API/TCM_API/obj/Release/net8.0/staticwebassets/msbuild.buildMultiTargeting.TCM_API.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/TCM_API/TCM_API/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.TCM_API.props b/TCM_API/TCM_API/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.TCM_API.props new file mode 100644 index 0000000..f826b10 --- /dev/null +++ b/TCM_API/TCM_API/obj/Release/net8.0/staticwebassets/msbuild.buildTransitive.TCM_API.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.dgspec.json b/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.dgspec.json index 276c584..bb4069c 100644 --- a/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.dgspec.json +++ b/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.dgspec.json @@ -50,13 +50,43 @@ "net8.0": { "targetAlias": "net8.0", "dependencies": { + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Microsoft.AspNetCore.Authorization": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Microsoft.EntityFrameworkCore.SqlServer": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[8.0.10, )" + }, "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": { "target": "Package", "version": "[1.19.6, )" }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design": { + "target": "Package", + "version": "[8.0.7, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[8.0.10, )" + }, "Swashbuckle.AspNetCore": { "target": "Package", "version": "[6.4.0, )" + }, + "System.IdentityModel.Tokens.Jwt": { + "target": "Package", + "version": "[8.3.1, )" } }, "imports": [ diff --git a/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.g.props b/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.g.props index aba8ef2..208f78c 100644 --- a/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.g.props +++ b/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.g.props @@ -16,10 +16,16 @@ + + + C:\Users\Leo\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5 + C:\Users\Leo\.nuget\packages\microsoft.codeanalysis.analyzers\3.3.4 + C:\Users\Leo\.nuget\packages\microsoft.codeanalysis.analyzerutilities\3.3.0 C:\Users\Leo\.nuget\packages\microsoft.visualstudio.azure.containers.tools.targets\1.19.6 + C:\Users\Leo\.nuget\packages\microsoft.entityframeworkcore.tools\8.0.10 \ No newline at end of file diff --git a/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.g.targets b/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.g.targets index ded1a87..07001c2 100644 --- a/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.g.targets +++ b/TCM_API/TCM_API/obj/TCM_API.csproj.nuget.g.targets @@ -1,7 +1,11 @@  + + + + \ No newline at end of file diff --git a/TCM_API/TCM_API/obj/project.assets.json b/TCM_API/TCM_API/obj/project.assets.json index 35de33c..d373725 100644 --- a/TCM_API/TCM_API/obj/project.assets.json +++ b/TCM_API/TCM_API/obj/project.assets.json @@ -2,6 +2,1443 @@ "version": 3, "targets": { "net8.0": { + "Azure.Core/1.35.0": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.AsyncInterfaces": "1.1.1", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Memory.Data": "1.0.2", + "System.Numerics.Vectors": "4.5.0", + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Azure.Core.dll": { + "related": ".xml" + } + } + }, + "Azure.Identity/1.10.3": { + "type": "package", + "dependencies": { + "Azure.Core": "1.35.0", + "Microsoft.Identity.Client": "4.56.0", + "Microsoft.Identity.Client.Extensions.Msal": "4.56.0", + "System.Memory": "4.5.4", + "System.Security.Cryptography.ProtectedData": "4.7.0", + "System.Text.Json": "4.7.2", + "System.Threading.Tasks.Extensions": "4.5.4" + }, + "compile": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Azure.Identity.dll": { + "related": ".xml" + } + } + }, + "Humanizer/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core.af": "2.14.1", + "Humanizer.Core.ar": "2.14.1", + "Humanizer.Core.az": "2.14.1", + "Humanizer.Core.bg": "2.14.1", + "Humanizer.Core.bn-BD": "2.14.1", + "Humanizer.Core.cs": "2.14.1", + "Humanizer.Core.da": "2.14.1", + "Humanizer.Core.de": "2.14.1", + "Humanizer.Core.el": "2.14.1", + "Humanizer.Core.es": "2.14.1", + "Humanizer.Core.fa": "2.14.1", + "Humanizer.Core.fi-FI": "2.14.1", + "Humanizer.Core.fr": "2.14.1", + "Humanizer.Core.fr-BE": "2.14.1", + "Humanizer.Core.he": "2.14.1", + "Humanizer.Core.hr": "2.14.1", + "Humanizer.Core.hu": "2.14.1", + "Humanizer.Core.hy": "2.14.1", + "Humanizer.Core.id": "2.14.1", + "Humanizer.Core.is": "2.14.1", + "Humanizer.Core.it": "2.14.1", + "Humanizer.Core.ja": "2.14.1", + "Humanizer.Core.ko-KR": "2.14.1", + "Humanizer.Core.ku": "2.14.1", + "Humanizer.Core.lv": "2.14.1", + "Humanizer.Core.ms-MY": "2.14.1", + "Humanizer.Core.mt": "2.14.1", + "Humanizer.Core.nb": "2.14.1", + "Humanizer.Core.nb-NO": "2.14.1", + "Humanizer.Core.nl": "2.14.1", + "Humanizer.Core.pl": "2.14.1", + "Humanizer.Core.pt": "2.14.1", + "Humanizer.Core.ro": "2.14.1", + "Humanizer.Core.ru": "2.14.1", + "Humanizer.Core.sk": "2.14.1", + "Humanizer.Core.sl": "2.14.1", + "Humanizer.Core.sr": "2.14.1", + "Humanizer.Core.sr-Latn": "2.14.1", + "Humanizer.Core.sv": "2.14.1", + "Humanizer.Core.th-TH": "2.14.1", + "Humanizer.Core.tr": "2.14.1", + "Humanizer.Core.uk": "2.14.1", + "Humanizer.Core.uz-Cyrl-UZ": "2.14.1", + "Humanizer.Core.uz-Latn-UZ": "2.14.1", + "Humanizer.Core.vi": "2.14.1", + "Humanizer.Core.zh-CN": "2.14.1", + "Humanizer.Core.zh-Hans": "2.14.1", + "Humanizer.Core.zh-Hant": "2.14.1" + } + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "Humanizer.Core.af/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/af/Humanizer.resources.dll": { + "locale": "af" + } + } + }, + "Humanizer.Core.ar/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ar/Humanizer.resources.dll": { + "locale": "ar" + } + } + }, + "Humanizer.Core.az/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/az/Humanizer.resources.dll": { + "locale": "az" + } + } + }, + "Humanizer.Core.bg/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/bg/Humanizer.resources.dll": { + "locale": "bg" + } + } + }, + "Humanizer.Core.bn-BD/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/bn-BD/Humanizer.resources.dll": { + "locale": "bn-BD" + } + } + }, + "Humanizer.Core.cs/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/cs/Humanizer.resources.dll": { + "locale": "cs" + } + } + }, + "Humanizer.Core.da/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/da/Humanizer.resources.dll": { + "locale": "da" + } + } + }, + "Humanizer.Core.de/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/de/Humanizer.resources.dll": { + "locale": "de" + } + } + }, + "Humanizer.Core.el/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/el/Humanizer.resources.dll": { + "locale": "el" + } + } + }, + "Humanizer.Core.es/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/es/Humanizer.resources.dll": { + "locale": "es" + } + } + }, + "Humanizer.Core.fa/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fa/Humanizer.resources.dll": { + "locale": "fa" + } + } + }, + "Humanizer.Core.fi-FI/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fi-FI/Humanizer.resources.dll": { + "locale": "fi-FI" + } + } + }, + "Humanizer.Core.fr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fr/Humanizer.resources.dll": { + "locale": "fr" + } + } + }, + "Humanizer.Core.fr-BE/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/fr-BE/Humanizer.resources.dll": { + "locale": "fr-BE" + } + } + }, + "Humanizer.Core.he/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/he/Humanizer.resources.dll": { + "locale": "he" + } + } + }, + "Humanizer.Core.hr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hr/Humanizer.resources.dll": { + "locale": "hr" + } + } + }, + "Humanizer.Core.hu/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hu/Humanizer.resources.dll": { + "locale": "hu" + } + } + }, + "Humanizer.Core.hy/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/hy/Humanizer.resources.dll": { + "locale": "hy" + } + } + }, + "Humanizer.Core.id/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/id/Humanizer.resources.dll": { + "locale": "id" + } + } + }, + "Humanizer.Core.is/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/is/Humanizer.resources.dll": { + "locale": "is" + } + } + }, + "Humanizer.Core.it/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/it/Humanizer.resources.dll": { + "locale": "it" + } + } + }, + "Humanizer.Core.ja/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ja/Humanizer.resources.dll": { + "locale": "ja" + } + } + }, + "Humanizer.Core.ko-KR/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/ko-KR/Humanizer.resources.dll": { + "locale": "ko-KR" + } + } + }, + "Humanizer.Core.ku/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ku/Humanizer.resources.dll": { + "locale": "ku" + } + } + }, + "Humanizer.Core.lv/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/lv/Humanizer.resources.dll": { + "locale": "lv" + } + } + }, + "Humanizer.Core.ms-MY/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/ms-MY/Humanizer.resources.dll": { + "locale": "ms-MY" + } + } + }, + "Humanizer.Core.mt/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/mt/Humanizer.resources.dll": { + "locale": "mt" + } + } + }, + "Humanizer.Core.nb/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nb/Humanizer.resources.dll": { + "locale": "nb" + } + } + }, + "Humanizer.Core.nb-NO/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nb-NO/Humanizer.resources.dll": { + "locale": "nb-NO" + } + } + }, + "Humanizer.Core.nl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/nl/Humanizer.resources.dll": { + "locale": "nl" + } + } + }, + "Humanizer.Core.pl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/pl/Humanizer.resources.dll": { + "locale": "pl" + } + } + }, + "Humanizer.Core.pt/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/pt/Humanizer.resources.dll": { + "locale": "pt" + } + } + }, + "Humanizer.Core.ro/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ro/Humanizer.resources.dll": { + "locale": "ro" + } + } + }, + "Humanizer.Core.ru/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/ru/Humanizer.resources.dll": { + "locale": "ru" + } + } + }, + "Humanizer.Core.sk/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sk/Humanizer.resources.dll": { + "locale": "sk" + } + } + }, + "Humanizer.Core.sl/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sl/Humanizer.resources.dll": { + "locale": "sl" + } + } + }, + "Humanizer.Core.sr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sr/Humanizer.resources.dll": { + "locale": "sr" + } + } + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sr-Latn/Humanizer.resources.dll": { + "locale": "sr-Latn" + } + } + }, + "Humanizer.Core.sv/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/sv/Humanizer.resources.dll": { + "locale": "sv" + } + } + }, + "Humanizer.Core.th-TH/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/netstandard2.0/th-TH/Humanizer.resources.dll": { + "locale": "th-TH" + } + } + }, + "Humanizer.Core.tr/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/tr/Humanizer.resources.dll": { + "locale": "tr" + } + } + }, + "Humanizer.Core.uk/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uk/Humanizer.resources.dll": { + "locale": "uk" + } + } + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll": { + "locale": "uz-Cyrl-UZ" + } + } + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll": { + "locale": "uz-Latn-UZ" + } + } + }, + "Humanizer.Core.vi/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/vi/Humanizer.resources.dll": { + "locale": "vi" + } + } + }, + "Humanizer.Core.zh-CN/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-CN/Humanizer.resources.dll": { + "locale": "zh-CN" + } + } + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-Hans/Humanizer.resources.dll": { + "locale": "zh-Hans" + } + } + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "type": "package", + "dependencies": { + "Humanizer.Core": "[2.14.1]" + }, + "resource": { + "lib/net6.0/zh-Hant/Humanizer.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "7.1.2" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Authorization/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Metadata": "8.0.10", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Authorization.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Metadata/8.0.10": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.AspNetCore.Metadata.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Razor.Language/6.0.24": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Bcl.Memory/9.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Bcl.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Bcl.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Build/17.8.3": { + "type": "package", + "dependencies": { + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.NET.StringTools": "17.8.3", + "System.Collections.Immutable": "7.0.0", + "System.Configuration.ConfigurationManager": "7.0.0", + "System.Reflection.Metadata": "7.0.0", + "System.Reflection.MetadataLoadContext": "7.0.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Threading.Tasks.Dataflow": "7.0.0" + }, + "compile": { + "ref/net8.0/Microsoft.Build.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Build.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Build.Framework/17.8.3": { + "type": "package", + "compile": { + "ref/net8.0/Microsoft.Build.Framework.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Build.Framework.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { + "type": "package", + "build": { + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props": {}, + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets": {} + } + }, + "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll": { + "related": ".xml" + } + } + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.3.4", + "System.Collections.Immutable": "7.0.0", + "System.Reflection.Metadata": "7.0.0", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[4.8.0]" + }, + "compile": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Features/4.8.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "[4.8.0]", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "[4.8.0]", + "Microsoft.CodeAnalysis.Common": "[4.8.0]", + "Microsoft.CodeAnalysis.Features": "[4.8.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0]" + }, + "compile": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "[4.8.0]", + "Microsoft.CodeAnalysis.Common": "[4.8.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0]" + }, + "compile": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Elfie/1.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "4.5.0", + "System.Data.DataSetExtensions": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll": {} + } + }, + "Microsoft.CodeAnalysis.Features/4.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.AnalyzerUtilities": "3.3.0", + "Microsoft.CodeAnalysis.Common": "[4.8.0]", + "Microsoft.CodeAnalysis.Elfie": "1.0.0", + "Microsoft.CodeAnalysis.Scripting.Common": "[4.8.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[4.8.0]", + "Microsoft.DiaSymReader": "2.0.0", + "System.Text.Json": "7.0.3" + }, + "compile": { + "lib/net7.0/Microsoft.CodeAnalysis.Features.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Features.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Razor/6.0.24": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.24", + "Microsoft.CodeAnalysis.CSharp": "4.0.0", + "Microsoft.CodeAnalysis.Common": "4.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "Microsoft.CodeAnalysis.Scripting.Common/4.8.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Common": "[4.8.0]" + }, + "compile": { + "lib/net7.0/Microsoft.CodeAnalysis.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Scripting.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Bcl.AsyncInterfaces": "7.0.0", + "Microsoft.CodeAnalysis.Common": "[4.8.0]", + "System.Composition": "7.0.0", + "System.IO.Pipelines": "7.0.0", + "System.Threading.Channels": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Data.SqlClient/5.1.5": { + "type": "package", + "dependencies": { + "Azure.Identity": "1.10.3", + "Microsoft.Data.SqlClient.SNI.runtime": "5.1.1", + "Microsoft.Identity.Client": "4.56.0", + "Microsoft.IdentityModel.JsonWebTokens": "6.35.0", + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.35.0", + "Microsoft.SqlServer.Server": "1.0.0", + "System.Configuration.ConfigurationManager": "6.0.1", + "System.Diagnostics.DiagnosticSource": "6.0.1", + "System.Runtime.Caching": "6.0.0", + "System.Security.Cryptography.Cng": "5.0.0", + "System.Security.Principal.Windows": "5.0.0", + "System.Text.Encoding.CodePages": "6.0.0", + "System.Text.Encodings.Web": "6.0.0" + }, + "compile": { + "ref/net6.0/Microsoft.Data.SqlClient.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Data.SqlClient.dll": { + "related": ".pdb;.xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { + "type": "package", + "runtimeTargets": { + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "Microsoft.DiaSymReader/2.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.DiaSymReader.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.DiaSymReader.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.DotNet.Scaffolding.Shared/8.0.7": { + "type": "package", + "dependencies": { + "Humanizer": "2.14.1", + "Microsoft.CodeAnalysis.CSharp.Features": "4.8.0", + "Microsoft.Extensions.DependencyModel": "8.0.2", + "Mono.TextTemplating": "2.3.1", + "Newtonsoft.Json": "13.0.3", + "NuGet.ProjectModel": "6.11.0", + "System.Formats.Asn1": "8.0.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10", + "Microsoft.EntityFrameworkCore.Analyzers": "8.0.10", + "Microsoft.Extensions.Caching.Memory": "8.0.1", + "Microsoft.Extensions.Logging": "8.0.1" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Design/8.0.10": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.5.0", + "Microsoft.EntityFrameworkCore.Relational": "8.0.10", + "Microsoft.Extensions.DependencyModel": "8.0.2", + "Mono.TextTemplating": "2.2.1" + }, + "compile": { + "lib/net8.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "related": ".xml" + } + }, + "build": { + "build/net8.0/Microsoft.EntityFrameworkCore.Design.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.10", + "Microsoft.Extensions.Configuration.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.SqlServer/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.Data.SqlClient": "5.1.5", + "Microsoft.EntityFrameworkCore.Relational": "8.0.10" + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Tools/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "8.0.10" + }, + "compile": { + "lib/net8.0/_._": {} + }, + "runtime": { + "lib/net8.0/_._": {} + } + }, "Microsoft.Extensions.ApiDescription.Server/6.0.5": { "type": "package", "build": { @@ -13,6 +1450,347 @@ "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} } }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "8.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.Extensions.Logging.Abstractions": "8.0.2", + "Microsoft.Extensions.Options": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.2" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/8.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "8.0.0", + "Microsoft.Extensions.Primitives": "8.0.0" + }, + "compile": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Identity.Client/4.56.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "6.22.0" + }, + "compile": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Identity.Client.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Identity.Client.Extensions.Msal/4.56.0": { + "type": "package", + "dependencies": { + "Microsoft.Identity.Client": "4.56.0", + "System.IO.FileSystem.AccessControl": "5.0.0", + "System.Security.Cryptography.ProtectedData": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.3.1": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.3.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.3.1" + }, + "compile": { + "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/8.3.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.3.1" + }, + "compile": { + "lib/net8.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/7.1.2": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "7.1.2", + "Microsoft.IdentityModel.Tokens": "7.1.2" + }, + "compile": { + "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "7.1.2", + "System.IdentityModel.Tokens.Jwt": "7.1.2" + }, + "compile": { + "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.3.1": { + "type": "package", + "dependencies": { + "Microsoft.Bcl.Memory": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.IdentityModel.Logging": "8.3.1" + }, + "compile": { + "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NET.StringTools/17.8.3": { + "type": "package", + "compile": { + "ref/net8.0/Microsoft.NET.StringTools.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.NET.StringTools.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard1.0/_._": {} + }, + "runtime": { + "lib/netstandard1.0/_._": {} + } + }, "Microsoft.OpenApi/1.2.3": { "type": "package", "compile": { @@ -26,6 +1804,19 @@ } } }, + "Microsoft.SqlServer.Server/1.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll": { + "related": ".pdb;.xml" + } + } + }, "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.19.6": { "type": "package", "build": { @@ -33,6 +1824,321 @@ "build/Microsoft.VisualStudio.Azure.Containers.Tools.Targets.targets": {} } }, + "Microsoft.VisualStudio.Web.CodeGeneration/8.0.7": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore": "8.0.7" + }, + "compile": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll": { + "related": ".xml" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/8.0.7": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "8.0.1", + "Microsoft.VisualStudio.Web.CodeGeneration.Templating": "8.0.7", + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll": { + "related": ".xml" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/8.0.7": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.Scaffolding.Shared": "8.0.7", + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc": "8.0.7" + }, + "compile": { + "lib/net8.0/dotnet-aspnet-codegenerator-design.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/dotnet-aspnet-codegenerator-design.dll": { + "related": ".xml" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/8.0.7": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.Scaffolding.Shared": "8.0.7", + "Microsoft.VisualStudio.Web.CodeGeneration.Core": "8.0.7" + }, + "compile": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { + "related": ".runtimeconfig.json;.xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll": { + "related": ".runtimeconfig.json;.xml" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/8.0.7": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "6.0.24", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Razor": "6.0.24", + "Microsoft.VisualStudio.Web.CodeGeneration.Utils": "8.0.7" + }, + "compile": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll": { + "related": ".xml" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/8.0.7": { + "type": "package", + "dependencies": { + "Microsoft.Build": "17.8.3", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.DotNet.Scaffolding.Shared": "8.0.7", + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll": { + "related": ".xml" + } + } + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/8.0.7": { + "type": "package", + "dependencies": { + "Microsoft.DotNet.Scaffolding.Shared": "8.0.7", + "Microsoft.VisualStudio.Web.CodeGeneration": "8.0.7" + }, + "compile": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Mono.TextTemplating/2.3.1": { + "type": "package", + "dependencies": { + "System.CodeDom": "5.0.0" + }, + "compile": { + "lib/netcoreapp3.1/Mono.TextTemplating.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Mono.TextTemplating.dll": {} + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Npgsql/8.0.5": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.0" + }, + "compile": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "8.0.10", + "Microsoft.EntityFrameworkCore.Abstractions": "8.0.10", + "Microsoft.EntityFrameworkCore.Relational": "8.0.10", + "Npgsql": "8.0.5" + }, + "compile": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + } + }, + "NuGet.Common/6.11.0": { + "type": "package", + "dependencies": { + "NuGet.Frameworks": "6.11.0" + }, + "compile": { + "lib/netstandard2.0/NuGet.Common.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NuGet.Common.dll": {} + } + }, + "NuGet.Configuration/6.11.0": { + "type": "package", + "dependencies": { + "NuGet.Common": "6.11.0", + "System.Security.Cryptography.ProtectedData": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/NuGet.Configuration.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NuGet.Configuration.dll": {} + } + }, + "NuGet.DependencyResolver.Core/6.11.0": { + "type": "package", + "dependencies": { + "NuGet.Configuration": "6.11.0", + "NuGet.LibraryModel": "6.11.0", + "NuGet.Protocol": "6.11.0" + }, + "compile": { + "lib/net5.0/NuGet.DependencyResolver.Core.dll": {} + }, + "runtime": { + "lib/net5.0/NuGet.DependencyResolver.Core.dll": {} + } + }, + "NuGet.Frameworks/6.11.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/NuGet.Frameworks.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NuGet.Frameworks.dll": {} + } + }, + "NuGet.LibraryModel/6.11.0": { + "type": "package", + "dependencies": { + "NuGet.Common": "6.11.0", + "NuGet.Versioning": "6.11.0" + }, + "compile": { + "lib/netstandard2.0/NuGet.LibraryModel.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NuGet.LibraryModel.dll": {} + } + }, + "NuGet.Packaging/6.11.0": { + "type": "package", + "dependencies": { + "Newtonsoft.Json": "13.0.3", + "NuGet.Configuration": "6.11.0", + "NuGet.Versioning": "6.11.0", + "System.Security.Cryptography.Pkcs": "6.0.4" + }, + "compile": { + "lib/net5.0/NuGet.Packaging.dll": {} + }, + "runtime": { + "lib/net5.0/NuGet.Packaging.dll": {} + } + }, + "NuGet.ProjectModel/6.11.0": { + "type": "package", + "dependencies": { + "NuGet.DependencyResolver.Core": "6.11.0" + }, + "compile": { + "lib/net5.0/NuGet.ProjectModel.dll": {} + }, + "runtime": { + "lib/net5.0/NuGet.ProjectModel.dll": {} + } + }, + "NuGet.Protocol/6.11.0": { + "type": "package", + "dependencies": { + "NuGet.Packaging": "6.11.0" + }, + "compile": { + "lib/net5.0/NuGet.Protocol.dll": {} + }, + "runtime": { + "lib/net5.0/NuGet.Protocol.dll": {} + } + }, + "NuGet.Versioning/6.11.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/NuGet.Versioning.dll": {} + }, + "runtime": { + "lib/netstandard2.0/NuGet.Versioning.dll": {} + } + }, "Swashbuckle.AspNetCore/6.4.0": { "type": "package", "dependencies": { @@ -95,10 +2201,2955 @@ "frameworkReferences": [ "Microsoft.AspNetCore.App" ] + }, + "System.CodeDom/5.0.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.CodeDom.dll": { + "related": ".xml" + } + } + }, + "System.Collections.Immutable/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Collections.Immutable.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition/7.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Convention": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0", + "System.Composition.TypedParts": "7.0.0" + }, + "compile": { + "lib/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.AttributedModel/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Composition.AttributedModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.AttributedModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.Convention/7.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Composition.Convention.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.Convention.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.Hosting/7.0.0": { + "type": "package", + "dependencies": { + "System.Composition.Runtime": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Composition.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.Runtime/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Composition.Runtime.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.Runtime.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Composition.TypedParts/7.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "7.0.0", + "System.Composition.Hosting": "7.0.0", + "System.Composition.Runtime": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Composition.TypedParts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Composition.TypedParts.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Configuration.ConfigurationManager/7.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "7.0.0", + "System.Security.Cryptography.ProtectedData": "7.0.0", + "System.Security.Permissions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Data.DataSetExtensions/4.5.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/System.Data.DataSetExtensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/System.Data.DataSetExtensions.dll": {} + } + }, + "System.Diagnostics.DiagnosticSource/6.0.1": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Diagnostics.EventLog/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Drawing.Common/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Win32.SystemEvents": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Drawing.Common.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Drawing.Common.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Formats.Asn1/8.0.1": { + "type": "package", + "compile": { + "lib/net8.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.Formats.Asn1.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.IdentityModel.Tokens.Jwt/8.3.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.3.1", + "Microsoft.IdentityModel.Tokens": "8.3.1" + }, + "compile": { + "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "System.Security.AccessControl": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.IO.Pipelines/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.IO.Pipelines.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Memory/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Memory.Data/1.0.2": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "4.7.2", + "System.Text.Json": "4.6.0" + }, + "compile": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Memory.Data.dll": { + "related": ".xml" + } + } + }, + "System.Numerics.Vectors/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "System.Reflection.Metadata/7.0.0": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Reflection.MetadataLoadContext/7.0.0": { + "type": "package", + "dependencies": { + "System.Collections.Immutable": "7.0.0", + "System.Reflection.Metadata": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Reflection.MetadataLoadContext.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Reflection.MetadataLoadContext.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Runtime.Caching/6.0.0": { + "type": "package", + "dependencies": { + "System.Configuration.ConfigurationManager": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.Caching.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "type": "package", + "compile": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + } + }, + "System.Security.AccessControl/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.NETCore.Platforms": "5.0.0", + "System.Security.Principal.Windows": "5.0.0" + }, + "compile": { + "ref/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.AccessControl.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Cng/5.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "5.0.0" + }, + "compile": { + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.Pkcs/6.0.4": { + "type": "package", + "dependencies": { + "System.Formats.Asn1": "6.0.0" + }, + "compile": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Permissions/7.0.0": { + "type": "package", + "dependencies": { + "System.Windows.Extensions": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Security.Principal.Windows/5.0.0": { + "type": "package", + "compile": { + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Security.Principal.Windows.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "unix" + }, + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encoding.CodePages/6.0.0": { + "type": "package", + "dependencies": { + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/System.Text.Encoding.CodePages.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/netcoreapp3.1/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/7.0.3": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/System.Text.Json.targets": {} + } + }, + "System.Threading.Channels/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Threading.Channels.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Threading.Tasks.Dataflow/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Threading.Tasks.Dataflow.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Threading.Tasks.Dataflow.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Windows.Extensions/7.0.0": { + "type": "package", + "dependencies": { + "System.Drawing.Common": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } } } }, "libraries": { + "Azure.Core/1.35.0": { + "sha512": "hENcx03Jyuqv05F4RBEPbxz29UrM3Nbhnr6Wl6NQpoU9BCIbL3XLentrxDCTrH54NLS11Exxi/o8MYgT/cnKFA==", + "type": "package", + "path": "azure.core/1.35.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.core.1.35.0.nupkg.sha512", + "azure.core.nuspec", + "azureicon.png", + "lib/net461/Azure.Core.dll", + "lib/net461/Azure.Core.xml", + "lib/net472/Azure.Core.dll", + "lib/net472/Azure.Core.xml", + "lib/net5.0/Azure.Core.dll", + "lib/net5.0/Azure.Core.xml", + "lib/net6.0/Azure.Core.dll", + "lib/net6.0/Azure.Core.xml", + "lib/netcoreapp2.1/Azure.Core.dll", + "lib/netcoreapp2.1/Azure.Core.xml", + "lib/netstandard2.0/Azure.Core.dll", + "lib/netstandard2.0/Azure.Core.xml" + ] + }, + "Azure.Identity/1.10.3": { + "sha512": "l1Xm2MWOF2Mzcwuarlw8kWQXLZk3UeB55aQXVyjj23aBfDwOZ3gu5GP2kJ6KlmZeZv2TCzw7x4L3V36iNr3gww==", + "type": "package", + "path": "azure.identity/1.10.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "README.md", + "azure.identity.1.10.3.nupkg.sha512", + "azure.identity.nuspec", + "azureicon.png", + "lib/netstandard2.0/Azure.Identity.dll", + "lib/netstandard2.0/Azure.Identity.xml" + ] + }, + "Humanizer/2.14.1": { + "sha512": "/FUTD3cEceAAmJSCPN9+J+VhGwmL/C12jvwlyM1DFXShEMsBzvLzLqSrJ2rb+k/W2znKw7JyflZgZpyE+tI7lA==", + "type": "package", + "path": "humanizer/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.2.14.1.nupkg.sha512", + "humanizer.nuspec", + "logo.png" + ] + }, + "Humanizer.Core/2.14.1": { + "sha512": "lQKvtaTDOXnoVJ20ibTuSIOf2i0uO0MPbDhd1jm238I+U/2ZnRENj0cktKZhtchBMtCUSRQ5v4xBCUbKNmyVMw==", + "type": "package", + "path": "humanizer.core/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.2.14.1.nupkg.sha512", + "humanizer.core.nuspec", + "lib/net6.0/Humanizer.dll", + "lib/net6.0/Humanizer.xml", + "lib/netstandard1.0/Humanizer.dll", + "lib/netstandard1.0/Humanizer.xml", + "lib/netstandard2.0/Humanizer.dll", + "lib/netstandard2.0/Humanizer.xml", + "logo.png" + ] + }, + "Humanizer.Core.af/2.14.1": { + "sha512": "BoQHyu5le+xxKOw+/AUM7CLXneM/Bh3++0qh1u0+D95n6f9eGt9kNc8LcAHLIOwId7Sd5hiAaaav0Nimj3peNw==", + "type": "package", + "path": "humanizer.core.af/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.af.2.14.1.nupkg.sha512", + "humanizer.core.af.nuspec", + "lib/net6.0/af/Humanizer.resources.dll", + "lib/netstandard1.0/af/Humanizer.resources.dll", + "lib/netstandard2.0/af/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ar/2.14.1": { + "sha512": "3d1V10LDtmqg5bZjWkA/EkmGFeSfNBcyCH+TiHcHP+HGQQmRq3eBaLcLnOJbVQVn3Z6Ak8GOte4RX4kVCxQlFA==", + "type": "package", + "path": "humanizer.core.ar/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ar.2.14.1.nupkg.sha512", + "humanizer.core.ar.nuspec", + "lib/net6.0/ar/Humanizer.resources.dll", + "lib/netstandard1.0/ar/Humanizer.resources.dll", + "lib/netstandard2.0/ar/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.az/2.14.1": { + "sha512": "8Z/tp9PdHr/K2Stve2Qs/7uqWPWLUK9D8sOZDNzyv42e20bSoJkHFn7SFoxhmaoVLJwku2jp6P7HuwrfkrP18Q==", + "type": "package", + "path": "humanizer.core.az/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.az.2.14.1.nupkg.sha512", + "humanizer.core.az.nuspec", + "lib/net6.0/az/Humanizer.resources.dll", + "lib/netstandard1.0/az/Humanizer.resources.dll", + "lib/netstandard2.0/az/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.bg/2.14.1": { + "sha512": "S+hIEHicrOcbV2TBtyoPp1AVIGsBzlarOGThhQYCnP6QzEYo/5imtok6LMmhZeTnBFoKhM8yJqRfvJ5yqVQKSQ==", + "type": "package", + "path": "humanizer.core.bg/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.bg.2.14.1.nupkg.sha512", + "humanizer.core.bg.nuspec", + "lib/net6.0/bg/Humanizer.resources.dll", + "lib/netstandard1.0/bg/Humanizer.resources.dll", + "lib/netstandard2.0/bg/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.bn-BD/2.14.1": { + "sha512": "U3bfj90tnUDRKlL1ZFlzhCHoVgpTcqUlTQxjvGCaFKb+734TTu3nkHUWVZltA1E/swTvimo/aXLtkxnLFrc0EQ==", + "type": "package", + "path": "humanizer.core.bn-bd/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.bn-bd.2.14.1.nupkg.sha512", + "humanizer.core.bn-bd.nuspec", + "lib/net6.0/bn-BD/Humanizer.resources.dll", + "lib/netstandard1.0/bn-BD/Humanizer.resources.dll", + "lib/netstandard2.0/bn-BD/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.cs/2.14.1": { + "sha512": "jWrQkiCTy3L2u1T86cFkgijX6k7hoB0pdcFMWYaSZnm6rvG/XJE40tfhYyKhYYgIc1x9P2GO5AC7xXvFnFdqMQ==", + "type": "package", + "path": "humanizer.core.cs/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.cs.2.14.1.nupkg.sha512", + "humanizer.core.cs.nuspec", + "lib/net6.0/cs/Humanizer.resources.dll", + "lib/netstandard1.0/cs/Humanizer.resources.dll", + "lib/netstandard2.0/cs/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.da/2.14.1": { + "sha512": "5o0rJyE/2wWUUphC79rgYDnif/21MKTTx9LIzRVz9cjCIVFrJ2bDyR2gapvI9D6fjoyvD1NAfkN18SHBsO8S9g==", + "type": "package", + "path": "humanizer.core.da/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.da.2.14.1.nupkg.sha512", + "humanizer.core.da.nuspec", + "lib/net6.0/da/Humanizer.resources.dll", + "lib/netstandard1.0/da/Humanizer.resources.dll", + "lib/netstandard2.0/da/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.de/2.14.1": { + "sha512": "9JD/p+rqjb8f5RdZ3aEJqbjMYkbk4VFii2QDnnOdNo6ywEfg/A5YeOQ55CaBJmy7KvV4tOK4+qHJnX/tg3Z54A==", + "type": "package", + "path": "humanizer.core.de/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.de.2.14.1.nupkg.sha512", + "humanizer.core.de.nuspec", + "lib/net6.0/de/Humanizer.resources.dll", + "lib/netstandard1.0/de/Humanizer.resources.dll", + "lib/netstandard2.0/de/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.el/2.14.1": { + "sha512": "Xmv6sTL5mqjOWGGpqY7bvbfK5RngaUHSa8fYDGSLyxY9mGdNbDcasnRnMOvi0SxJS9gAqBCn21Xi90n2SHZbFA==", + "type": "package", + "path": "humanizer.core.el/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.el.2.14.1.nupkg.sha512", + "humanizer.core.el.nuspec", + "lib/net6.0/el/Humanizer.resources.dll", + "lib/netstandard1.0/el/Humanizer.resources.dll", + "lib/netstandard2.0/el/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.es/2.14.1": { + "sha512": "e//OIAeMB7pjBV1HqqI4pM2Bcw3Jwgpyz9G5Fi4c+RJvhqFwztoWxW57PzTnNJE2lbhGGLQZihFZjsbTUsbczA==", + "type": "package", + "path": "humanizer.core.es/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.es.2.14.1.nupkg.sha512", + "humanizer.core.es.nuspec", + "lib/net6.0/es/Humanizer.resources.dll", + "lib/netstandard1.0/es/Humanizer.resources.dll", + "lib/netstandard2.0/es/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fa/2.14.1": { + "sha512": "nzDOj1x0NgjXMjsQxrET21t1FbdoRYujzbmZoR8u8ou5CBWY1UNca0j6n/PEJR/iUbt4IxstpszRy41wL/BrpA==", + "type": "package", + "path": "humanizer.core.fa/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fa.2.14.1.nupkg.sha512", + "humanizer.core.fa.nuspec", + "lib/net6.0/fa/Humanizer.resources.dll", + "lib/netstandard1.0/fa/Humanizer.resources.dll", + "lib/netstandard2.0/fa/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fi-FI/2.14.1": { + "sha512": "Vnxxx4LUhp3AzowYi6lZLAA9Lh8UqkdwRh4IE2qDXiVpbo08rSbokATaEzFS+o+/jCNZBmoyyyph3vgmcSzhhQ==", + "type": "package", + "path": "humanizer.core.fi-fi/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fi-fi.2.14.1.nupkg.sha512", + "humanizer.core.fi-fi.nuspec", + "lib/net6.0/fi-FI/Humanizer.resources.dll", + "lib/netstandard1.0/fi-FI/Humanizer.resources.dll", + "lib/netstandard2.0/fi-FI/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fr/2.14.1": { + "sha512": "2p4g0BYNzFS3u9SOIDByp2VClYKO0K1ecDV4BkB9EYdEPWfFODYnF+8CH8LpUrpxL2TuWo2fiFx/4Jcmrnkbpg==", + "type": "package", + "path": "humanizer.core.fr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fr.2.14.1.nupkg.sha512", + "humanizer.core.fr.nuspec", + "lib/net6.0/fr/Humanizer.resources.dll", + "lib/netstandard1.0/fr/Humanizer.resources.dll", + "lib/netstandard2.0/fr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.fr-BE/2.14.1": { + "sha512": "o6R3SerxCRn5Ij8nCihDNMGXlaJ/1AqefteAssgmU2qXYlSAGdhxmnrQAXZUDlE4YWt/XQ6VkNLtH7oMqsSPFQ==", + "type": "package", + "path": "humanizer.core.fr-be/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.fr-be.2.14.1.nupkg.sha512", + "humanizer.core.fr-be.nuspec", + "lib/net6.0/fr-BE/Humanizer.resources.dll", + "lib/netstandard1.0/fr-BE/Humanizer.resources.dll", + "lib/netstandard2.0/fr-BE/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.he/2.14.1": { + "sha512": "FPsAhy7Iw6hb+ZitLgYC26xNcgGAHXb0V823yFAzcyoL5ozM+DCJtYfDPYiOpsJhEZmKFTM9No0jUn1M89WGvg==", + "type": "package", + "path": "humanizer.core.he/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.he.2.14.1.nupkg.sha512", + "humanizer.core.he.nuspec", + "lib/net6.0/he/Humanizer.resources.dll", + "lib/netstandard1.0/he/Humanizer.resources.dll", + "lib/netstandard2.0/he/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hr/2.14.1": { + "sha512": "chnaD89yOlST142AMkAKLuzRcV5df3yyhDyRU5rypDiqrq2HN8y1UR3h1IicEAEtXLoOEQyjSAkAQ6QuXkn7aw==", + "type": "package", + "path": "humanizer.core.hr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hr.2.14.1.nupkg.sha512", + "humanizer.core.hr.nuspec", + "lib/net6.0/hr/Humanizer.resources.dll", + "lib/netstandard1.0/hr/Humanizer.resources.dll", + "lib/netstandard2.0/hr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hu/2.14.1": { + "sha512": "hAfnaoF9LTGU/CmFdbnvugN4tIs8ppevVMe3e5bD24+tuKsggMc5hYta9aiydI8JH9JnuVmxvNI4DJee1tK05A==", + "type": "package", + "path": "humanizer.core.hu/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hu.2.14.1.nupkg.sha512", + "humanizer.core.hu.nuspec", + "lib/net6.0/hu/Humanizer.resources.dll", + "lib/netstandard1.0/hu/Humanizer.resources.dll", + "lib/netstandard2.0/hu/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.hy/2.14.1": { + "sha512": "sVIKxOiSBUb4gStRHo9XwwAg9w7TNvAXbjy176gyTtaTiZkcjr9aCPziUlYAF07oNz6SdwdC2mwJBGgvZ0Sl2g==", + "type": "package", + "path": "humanizer.core.hy/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.hy.2.14.1.nupkg.sha512", + "humanizer.core.hy.nuspec", + "lib/net6.0/hy/Humanizer.resources.dll", + "lib/netstandard1.0/hy/Humanizer.resources.dll", + "lib/netstandard2.0/hy/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.id/2.14.1": { + "sha512": "4Zl3GTvk3a49Ia/WDNQ97eCupjjQRs2iCIZEQdmkiqyaLWttfb+cYXDMGthP42nufUL0SRsvBctN67oSpnXtsg==", + "type": "package", + "path": "humanizer.core.id/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.id.2.14.1.nupkg.sha512", + "humanizer.core.id.nuspec", + "lib/net6.0/id/Humanizer.resources.dll", + "lib/netstandard1.0/id/Humanizer.resources.dll", + "lib/netstandard2.0/id/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.is/2.14.1": { + "sha512": "R67A9j/nNgcWzU7gZy1AJ07ABSLvogRbqOWvfRDn4q6hNdbg/mjGjZBp4qCTPnB2mHQQTCKo3oeCUayBCNIBCw==", + "type": "package", + "path": "humanizer.core.is/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.is.2.14.1.nupkg.sha512", + "humanizer.core.is.nuspec", + "lib/net6.0/is/Humanizer.resources.dll", + "lib/netstandard1.0/is/Humanizer.resources.dll", + "lib/netstandard2.0/is/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.it/2.14.1": { + "sha512": "jYxGeN4XIKHVND02FZ+Woir3CUTyBhLsqxu9iqR/9BISArkMf1Px6i5pRZnvq4fc5Zn1qw71GKKoCaHDJBsLFw==", + "type": "package", + "path": "humanizer.core.it/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.it.2.14.1.nupkg.sha512", + "humanizer.core.it.nuspec", + "lib/net6.0/it/Humanizer.resources.dll", + "lib/netstandard1.0/it/Humanizer.resources.dll", + "lib/netstandard2.0/it/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ja/2.14.1": { + "sha512": "TM3ablFNoYx4cYJybmRgpDioHpiKSD7q0QtMrmpsqwtiiEsdW5zz/q4PolwAczFnvrKpN6nBXdjnPPKVet93ng==", + "type": "package", + "path": "humanizer.core.ja/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ja.2.14.1.nupkg.sha512", + "humanizer.core.ja.nuspec", + "lib/net6.0/ja/Humanizer.resources.dll", + "lib/netstandard1.0/ja/Humanizer.resources.dll", + "lib/netstandard2.0/ja/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ko-KR/2.14.1": { + "sha512": "CtvwvK941k/U0r8PGdEuBEMdW6jv/rBiA9tUhakC7Zd2rA/HCnDcbr1DiNZ+/tRshnhzxy/qwmpY8h4qcAYCtQ==", + "type": "package", + "path": "humanizer.core.ko-kr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ko-kr.2.14.1.nupkg.sha512", + "humanizer.core.ko-kr.nuspec", + "lib/netstandard1.0/ko-KR/Humanizer.resources.dll", + "lib/netstandard2.0/ko-KR/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ku/2.14.1": { + "sha512": "vHmzXcVMe+LNrF9txpdHzpG7XJX65SiN9GQd/Zkt6gsGIIEeECHrkwCN5Jnlkddw2M/b0HS4SNxdR1GrSn7uCA==", + "type": "package", + "path": "humanizer.core.ku/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ku.2.14.1.nupkg.sha512", + "humanizer.core.ku.nuspec", + "lib/net6.0/ku/Humanizer.resources.dll", + "lib/netstandard1.0/ku/Humanizer.resources.dll", + "lib/netstandard2.0/ku/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.lv/2.14.1": { + "sha512": "E1/KUVnYBS1bdOTMNDD7LV/jdoZv/fbWTLPtvwdMtSdqLyRTllv6PGM9xVQoFDYlpvVGtEl/09glCojPHw8ffA==", + "type": "package", + "path": "humanizer.core.lv/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.lv.2.14.1.nupkg.sha512", + "humanizer.core.lv.nuspec", + "lib/net6.0/lv/Humanizer.resources.dll", + "lib/netstandard1.0/lv/Humanizer.resources.dll", + "lib/netstandard2.0/lv/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ms-MY/2.14.1": { + "sha512": "vX8oq9HnYmAF7bek4aGgGFJficHDRTLgp/EOiPv9mBZq0i4SA96qVMYSjJ2YTaxs7Eljqit7pfpE2nmBhY5Fnw==", + "type": "package", + "path": "humanizer.core.ms-my/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ms-my.2.14.1.nupkg.sha512", + "humanizer.core.ms-my.nuspec", + "lib/netstandard1.0/ms-MY/Humanizer.resources.dll", + "lib/netstandard2.0/ms-MY/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.mt/2.14.1": { + "sha512": "pEgTBzUI9hzemF7xrIZigl44LidTUhNu4x/P6M9sAwZjkUF0mMkbpxKkaasOql7lLafKrnszs0xFfaxQyzeuZQ==", + "type": "package", + "path": "humanizer.core.mt/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.mt.2.14.1.nupkg.sha512", + "humanizer.core.mt.nuspec", + "lib/netstandard1.0/mt/Humanizer.resources.dll", + "lib/netstandard2.0/mt/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nb/2.14.1": { + "sha512": "mbs3m6JJq53ssLqVPxNfqSdTxAcZN3njlG8yhJVx83XVedpTe1ECK9aCa8FKVOXv93Gl+yRHF82Hw9T9LWv2hw==", + "type": "package", + "path": "humanizer.core.nb/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nb.2.14.1.nupkg.sha512", + "humanizer.core.nb.nuspec", + "lib/net6.0/nb/Humanizer.resources.dll", + "lib/netstandard1.0/nb/Humanizer.resources.dll", + "lib/netstandard2.0/nb/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nb-NO/2.14.1": { + "sha512": "AsJxrrVYmIMbKDGe8W6Z6//wKv9dhWH7RsTcEHSr4tQt/80pcNvLi0hgD3fqfTtg0tWKtgch2cLf4prorEV+5A==", + "type": "package", + "path": "humanizer.core.nb-no/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nb-no.2.14.1.nupkg.sha512", + "humanizer.core.nb-no.nuspec", + "lib/net6.0/nb-NO/Humanizer.resources.dll", + "lib/netstandard1.0/nb-NO/Humanizer.resources.dll", + "lib/netstandard2.0/nb-NO/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.nl/2.14.1": { + "sha512": "24b0OUdzJxfoqiHPCtYnR5Y4l/s4Oh7KW7uDp+qX25NMAHLCGog2eRfA7p2kRJp8LvnynwwQxm2p534V9m55wQ==", + "type": "package", + "path": "humanizer.core.nl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.nl.2.14.1.nupkg.sha512", + "humanizer.core.nl.nuspec", + "lib/net6.0/nl/Humanizer.resources.dll", + "lib/netstandard1.0/nl/Humanizer.resources.dll", + "lib/netstandard2.0/nl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.pl/2.14.1": { + "sha512": "17mJNYaBssENVZyQHduiq+bvdXS0nhZJGEXtPKoMhKv3GD//WO0mEfd9wjEBsWCSmWI7bjRqhCidxzN+YtJmsg==", + "type": "package", + "path": "humanizer.core.pl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.pl.2.14.1.nupkg.sha512", + "humanizer.core.pl.nuspec", + "lib/net6.0/pl/Humanizer.resources.dll", + "lib/netstandard1.0/pl/Humanizer.resources.dll", + "lib/netstandard2.0/pl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.pt/2.14.1": { + "sha512": "8HB8qavcVp2la1GJX6t+G9nDYtylPKzyhxr9LAooIei9MnQvNsjEiIE4QvHoeDZ4weuQ9CsPg1c211XUMVEZ4A==", + "type": "package", + "path": "humanizer.core.pt/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.pt.2.14.1.nupkg.sha512", + "humanizer.core.pt.nuspec", + "lib/net6.0/pt/Humanizer.resources.dll", + "lib/netstandard1.0/pt/Humanizer.resources.dll", + "lib/netstandard2.0/pt/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ro/2.14.1": { + "sha512": "psXNOcA6R8fSHoQYhpBTtTTYiOk8OBoN3PKCEDgsJKIyeY5xuK81IBdGi77qGZMu/OwBRQjQCBMtPJb0f4O1+A==", + "type": "package", + "path": "humanizer.core.ro/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ro.2.14.1.nupkg.sha512", + "humanizer.core.ro.nuspec", + "lib/net6.0/ro/Humanizer.resources.dll", + "lib/netstandard1.0/ro/Humanizer.resources.dll", + "lib/netstandard2.0/ro/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.ru/2.14.1": { + "sha512": "zm245xUWrajSN2t9H7BTf84/2APbUkKlUJpcdgsvTdAysr1ag9fi1APu6JEok39RRBXDfNRVZHawQ/U8X0pSvQ==", + "type": "package", + "path": "humanizer.core.ru/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.ru.2.14.1.nupkg.sha512", + "humanizer.core.ru.nuspec", + "lib/net6.0/ru/Humanizer.resources.dll", + "lib/netstandard1.0/ru/Humanizer.resources.dll", + "lib/netstandard2.0/ru/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sk/2.14.1": { + "sha512": "Ncw24Vf3ioRnbU4MsMFHafkyYi8JOnTqvK741GftlQvAbULBoTz2+e7JByOaasqeSi0KfTXeegJO+5Wk1c0Mbw==", + "type": "package", + "path": "humanizer.core.sk/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sk.2.14.1.nupkg.sha512", + "humanizer.core.sk.nuspec", + "lib/net6.0/sk/Humanizer.resources.dll", + "lib/netstandard1.0/sk/Humanizer.resources.dll", + "lib/netstandard2.0/sk/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sl/2.14.1": { + "sha512": "l8sUy4ciAIbVThWNL0atzTS2HWtv8qJrsGWNlqrEKmPwA4SdKolSqnTes9V89fyZTc2Q43jK8fgzVE2C7t009A==", + "type": "package", + "path": "humanizer.core.sl/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sl.2.14.1.nupkg.sha512", + "humanizer.core.sl.nuspec", + "lib/net6.0/sl/Humanizer.resources.dll", + "lib/netstandard1.0/sl/Humanizer.resources.dll", + "lib/netstandard2.0/sl/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sr/2.14.1": { + "sha512": "rnNvhpkOrWEymy7R/MiFv7uef8YO5HuXDyvojZ7JpijHWA5dXuVXooCOiA/3E93fYa3pxDuG2OQe4M/olXbQ7w==", + "type": "package", + "path": "humanizer.core.sr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sr.2.14.1.nupkg.sha512", + "humanizer.core.sr.nuspec", + "lib/net6.0/sr/Humanizer.resources.dll", + "lib/netstandard1.0/sr/Humanizer.resources.dll", + "lib/netstandard2.0/sr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sr-Latn/2.14.1": { + "sha512": "nuy/ykpk974F8ItoQMS00kJPr2dFNjOSjgzCwfysbu7+gjqHmbLcYs7G4kshLwdA4AsVncxp99LYeJgoh1JF5g==", + "type": "package", + "path": "humanizer.core.sr-latn/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sr-latn.2.14.1.nupkg.sha512", + "humanizer.core.sr-latn.nuspec", + "lib/net6.0/sr-Latn/Humanizer.resources.dll", + "lib/netstandard1.0/sr-Latn/Humanizer.resources.dll", + "lib/netstandard2.0/sr-Latn/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.sv/2.14.1": { + "sha512": "E53+tpAG0RCp+cSSI7TfBPC+NnsEqUuoSV0sU+rWRXWr9MbRWx1+Zj02XMojqjGzHjjOrBFBBio6m74seFl0AA==", + "type": "package", + "path": "humanizer.core.sv/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.sv.2.14.1.nupkg.sha512", + "humanizer.core.sv.nuspec", + "lib/net6.0/sv/Humanizer.resources.dll", + "lib/netstandard1.0/sv/Humanizer.resources.dll", + "lib/netstandard2.0/sv/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.th-TH/2.14.1": { + "sha512": "eSevlJtvs1r4vQarNPfZ2kKDp/xMhuD00tVVzRXkSh1IAZbBJI/x2ydxUOwfK9bEwEp+YjvL1Djx2+kw7ziu7g==", + "type": "package", + "path": "humanizer.core.th-th/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.th-th.2.14.1.nupkg.sha512", + "humanizer.core.th-th.nuspec", + "lib/netstandard1.0/th-TH/Humanizer.resources.dll", + "lib/netstandard2.0/th-TH/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.tr/2.14.1": { + "sha512": "rQ8N+o7yFcFqdbtu1mmbrXFi8TQ+uy+fVH9OPI0CI3Cu1om5hUU/GOMC3hXsTCI6d79y4XX+0HbnD7FT5khegA==", + "type": "package", + "path": "humanizer.core.tr/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.tr.2.14.1.nupkg.sha512", + "humanizer.core.tr.nuspec", + "lib/net6.0/tr/Humanizer.resources.dll", + "lib/netstandard1.0/tr/Humanizer.resources.dll", + "lib/netstandard2.0/tr/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uk/2.14.1": { + "sha512": "2uEfujwXKNm6bdpukaLtEJD+04uUtQD65nSGCetA1fYNizItEaIBUboNfr3GzJxSMQotNwGVM3+nSn8jTd0VSg==", + "type": "package", + "path": "humanizer.core.uk/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uk.2.14.1.nupkg.sha512", + "humanizer.core.uk.nuspec", + "lib/net6.0/uk/Humanizer.resources.dll", + "lib/netstandard1.0/uk/Humanizer.resources.dll", + "lib/netstandard2.0/uk/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uz-Cyrl-UZ/2.14.1": { + "sha512": "TD3ME2sprAvFqk9tkWrvSKx5XxEMlAn1sjk+cYClSWZlIMhQQ2Bp/w0VjX1Kc5oeKjxRAnR7vFcLUFLiZIDk9Q==", + "type": "package", + "path": "humanizer.core.uz-cyrl-uz/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512", + "humanizer.core.uz-cyrl-uz.nuspec", + "lib/net6.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "lib/netstandard1.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "lib/netstandard2.0/uz-Cyrl-UZ/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.uz-Latn-UZ/2.14.1": { + "sha512": "/kHAoF4g0GahnugZiEMpaHlxb+W6jCEbWIdsq9/I1k48ULOsl/J0pxZj93lXC3omGzVF1BTVIeAtv5fW06Phsg==", + "type": "package", + "path": "humanizer.core.uz-latn-uz/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512", + "humanizer.core.uz-latn-uz.nuspec", + "lib/net6.0/uz-Latn-UZ/Humanizer.resources.dll", + "lib/netstandard1.0/uz-Latn-UZ/Humanizer.resources.dll", + "lib/netstandard2.0/uz-Latn-UZ/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.vi/2.14.1": { + "sha512": "rsQNh9rmHMBtnsUUlJbShMsIMGflZtPmrMM6JNDw20nhsvqfrdcoDD8cMnLAbuSovtc3dP+swRmLQzKmXDTVPA==", + "type": "package", + "path": "humanizer.core.vi/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.vi.2.14.1.nupkg.sha512", + "humanizer.core.vi.nuspec", + "lib/net6.0/vi/Humanizer.resources.dll", + "lib/netstandard1.0/vi/Humanizer.resources.dll", + "lib/netstandard2.0/vi/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-CN/2.14.1": { + "sha512": "uH2dWhrgugkCjDmduLdAFO9w1Mo0q07EuvM0QiIZCVm6FMCu/lGv2fpMu4GX+4HLZ6h5T2Pg9FIdDLCPN2a67w==", + "type": "package", + "path": "humanizer.core.zh-cn/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-cn.2.14.1.nupkg.sha512", + "humanizer.core.zh-cn.nuspec", + "lib/net6.0/zh-CN/Humanizer.resources.dll", + "lib/netstandard1.0/zh-CN/Humanizer.resources.dll", + "lib/netstandard2.0/zh-CN/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-Hans/2.14.1": { + "sha512": "WH6IhJ8V1UBG7rZXQk3dZUoP2gsi8a0WkL8xL0sN6WGiv695s8nVcmab9tWz20ySQbuzp0UkSxUQFi5jJHIpOQ==", + "type": "package", + "path": "humanizer.core.zh-hans/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-hans.2.14.1.nupkg.sha512", + "humanizer.core.zh-hans.nuspec", + "lib/net6.0/zh-Hans/Humanizer.resources.dll", + "lib/netstandard1.0/zh-Hans/Humanizer.resources.dll", + "lib/netstandard2.0/zh-Hans/Humanizer.resources.dll", + "logo.png" + ] + }, + "Humanizer.Core.zh-Hant/2.14.1": { + "sha512": "VIXB7HCUC34OoaGnO3HJVtSv2/wljPhjV7eKH4+TFPgQdJj2lvHNKY41Dtg0Bphu7X5UaXFR4zrYYyo+GNOjbA==", + "type": "package", + "path": "humanizer.core.zh-hant/2.14.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "humanizer.core.zh-hant.2.14.1.nupkg.sha512", + "humanizer.core.zh-hant.nuspec", + "lib/net6.0/zh-Hant/Humanizer.resources.dll", + "lib/netstandard1.0/zh-Hant/Humanizer.resources.dll", + "lib/netstandard2.0/zh-Hant/Humanizer.resources.dll", + "logo.png" + ] + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/8.0.10": { + "sha512": "rcPXghZCc82IB9U2Px1Ln5Zn3vjV4p83H/Few5T/904hBddjSz03COQ2zOGWBBvdTBY+GciAUJwgBFNWaxLfqw==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.jwtbearer/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll", + "lib/net8.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml", + "microsoft.aspnetcore.authentication.jwtbearer.8.0.10.nupkg.sha512", + "microsoft.aspnetcore.authentication.jwtbearer.nuspec" + ] + }, + "Microsoft.AspNetCore.Authorization/8.0.10": { + "sha512": "mENBehQP1H9oTB4Diu1l7vR1BeZrBNWA9sHZsln4l2oIs7D3qH3fokopU/8FWa9JSxQYNBT1MeYBCwguYOBjMQ==", + "type": "package", + "path": "microsoft.aspnetcore.authorization/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Authorization.dll", + "lib/net462/Microsoft.AspNetCore.Authorization.xml", + "lib/net8.0/Microsoft.AspNetCore.Authorization.dll", + "lib/net8.0/Microsoft.AspNetCore.Authorization.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Authorization.xml", + "microsoft.aspnetcore.authorization.8.0.10.nupkg.sha512", + "microsoft.aspnetcore.authorization.nuspec" + ] + }, + "Microsoft.AspNetCore.Metadata/8.0.10": { + "sha512": "E9YwEujZjXhMLi1hqJh+7iLk2DzNxa4dB9wYY8lHYpAzZdVqoGjaFsaaIzwCvSZZxd7S7Cds01Trlye2mTqeZA==", + "type": "package", + "path": "microsoft.aspnetcore.metadata/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net462/Microsoft.AspNetCore.Metadata.dll", + "lib/net462/Microsoft.AspNetCore.Metadata.xml", + "lib/net8.0/Microsoft.AspNetCore.Metadata.dll", + "lib/net8.0/Microsoft.AspNetCore.Metadata.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Metadata.xml", + "microsoft.aspnetcore.metadata.8.0.10.nupkg.sha512", + "microsoft.aspnetcore.metadata.nuspec" + ] + }, + "Microsoft.AspNetCore.Razor.Language/6.0.24": { + "sha512": "kBL6ljTREp/3fk8EKN27mrPy3WTqWUjiqCkKFlCKHUKRO3/9rAasKizX3vPWy4ZTcNsIPmVWUHwjDFmiW4MyNA==", + "type": "package", + "path": "microsoft.aspnetcore.razor.language/6.0.24", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll", + "microsoft.aspnetcore.razor.language.6.0.24.nupkg.sha512", + "microsoft.aspnetcore.razor.language.nuspec" + ] + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "sha512": "3aeMZ1N0lJoSyzqiP03hqemtb1BijhsJADdobn/4nsMJ8V1H+CrpuduUe4hlRdx+ikBQju1VGjMD1GJ3Sk05Eg==", + "type": "package", + "path": "microsoft.bcl.asyncinterfaces/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.AsyncInterfaces.targets", + "buildTransitive/net462/_._", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/net462/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.xml", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll", + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.xml", + "microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512", + "microsoft.bcl.asyncinterfaces.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Bcl.Memory/9.0.0": { + "sha512": "bTUtGfpGyJnohQzjdXbtc7MqNzkv7CWUSRz54+ucNm0i32rZiIU0VdVPHDBShOl1qhVKRjW8mnEBz3d2vH93tQ==", + "type": "package", + "path": "microsoft.bcl.memory/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Bcl.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Bcl.Memory.targets", + "lib/net462/Microsoft.Bcl.Memory.dll", + "lib/net462/Microsoft.Bcl.Memory.xml", + "lib/net8.0/Microsoft.Bcl.Memory.dll", + "lib/net8.0/Microsoft.Bcl.Memory.xml", + "lib/net9.0/Microsoft.Bcl.Memory.dll", + "lib/net9.0/Microsoft.Bcl.Memory.xml", + "lib/netstandard2.0/Microsoft.Bcl.Memory.dll", + "lib/netstandard2.0/Microsoft.Bcl.Memory.xml", + "lib/netstandard2.1/Microsoft.Bcl.Memory.dll", + "lib/netstandard2.1/Microsoft.Bcl.Memory.xml", + "microsoft.bcl.memory.9.0.0.nupkg.sha512", + "microsoft.bcl.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Build/17.8.3": { + "sha512": "jOxP2DrBZb2zuDO5M8LfI50SCdXlahgUHJ6mH0jz4OBID0F9o+DVggk0CPAONmcbUPo2SsQCFkMaxmHkKLj99Q==", + "type": "package", + "path": "microsoft.build/17.8.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MSBuild-NuGet-Icon.png", + "README.md", + "lib/net472/Microsoft.Build.dll", + "lib/net472/Microsoft.Build.pdb", + "lib/net472/Microsoft.Build.xml", + "lib/net8.0/Microsoft.Build.dll", + "lib/net8.0/Microsoft.Build.pdb", + "lib/net8.0/Microsoft.Build.xml", + "microsoft.build.17.8.3.nupkg.sha512", + "microsoft.build.nuspec", + "notices/THIRDPARTYNOTICES.txt", + "ref/net472/Microsoft.Build.dll", + "ref/net472/Microsoft.Build.xml", + "ref/net8.0/Microsoft.Build.dll", + "ref/net8.0/Microsoft.Build.xml" + ] + }, + "Microsoft.Build.Framework/17.8.3": { + "sha512": "NrQZJW8TlKVPx72yltGb8SVz3P5mNRk9fNiD/ao8jRSk48WqIIdCn99q4IjlVmPcruuQ+yLdjNQLL8Rb4c916g==", + "type": "package", + "path": "microsoft.build.framework/17.8.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MSBuild-NuGet-Icon.png", + "README.md", + "lib/net472/Microsoft.Build.Framework.dll", + "lib/net472/Microsoft.Build.Framework.pdb", + "lib/net472/Microsoft.Build.Framework.xml", + "lib/net8.0/Microsoft.Build.Framework.dll", + "lib/net8.0/Microsoft.Build.Framework.pdb", + "lib/net8.0/Microsoft.Build.Framework.xml", + "microsoft.build.framework.17.8.3.nupkg.sha512", + "microsoft.build.framework.nuspec", + "notices/THIRDPARTYNOTICES.txt", + "ref/net472/Microsoft.Build.Framework.dll", + "ref/net472/Microsoft.Build.Framework.xml", + "ref/net8.0/Microsoft.Build.Framework.dll", + "ref/net8.0/Microsoft.Build.Framework.xml", + "ref/netstandard2.0/Microsoft.Build.Framework.dll", + "ref/netstandard2.0/Microsoft.Build.Framework.xml" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": { + "sha512": "AxkxcPR+rheX0SmvpLVIGLhOUXAKG56a64kV9VQZ4y9gR9ZmPXnqZvHJnmwLSwzrEP6junUF11vuc+aqo5r68g==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.3.4", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.txt", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/cs/Microsoft.CodeAnalysis.CSharp.Analyzers.dll", + "analyzers/dotnet/cs/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/cs/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.Analyzers.dll", + "analyzers/dotnet/vb/Microsoft.CodeAnalysis.VisualBasic.Analyzers.dll", + "analyzers/dotnet/vb/cs/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/de/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/es/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/fr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/it/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ja/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ko/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pl/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/pt-BR/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/ru/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/tr/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hans/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "analyzers/dotnet/vb/zh-Hant/Microsoft.CodeAnalysis.Analyzers.resources.dll", + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props", + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets", + "buildTransitive/config/analysislevel_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevel_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_all.globalconfig", + "buildTransitive/config/analysislevel_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_default.globalconfig", + "buildTransitive/config/analysislevel_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_none.globalconfig", + "buildTransitive/config/analysislevel_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_all.globalconfig", + "buildTransitive/config/analysislevel_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_default.globalconfig", + "buildTransitive/config/analysislevel_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevel_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_none.globalconfig", + "buildTransitive/config/analysislevel_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevel_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_all.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_default.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_none.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_4_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_2_9_8_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_recommended_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_4_3_recommended_warnaserror.globalconfig", + "documentation/Analyzer Configuration.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.md", + "documentation/Microsoft.CodeAnalysis.Analyzers.sarif", + "editorconfig/AllRulesDefault/.editorconfig", + "editorconfig/AllRulesDisabled/.editorconfig", + "editorconfig/AllRulesEnabled/.editorconfig", + "editorconfig/CorrectnessRulesDefault/.editorconfig", + "editorconfig/CorrectnessRulesEnabled/.editorconfig", + "editorconfig/DataflowRulesDefault/.editorconfig", + "editorconfig/DataflowRulesEnabled/.editorconfig", + "editorconfig/LibraryRulesDefault/.editorconfig", + "editorconfig/LibraryRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCompatibilityRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisCorrectnessRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDesignRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisDocumentationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisLocalizationRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisPerformanceRulesEnabled/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesDefault/.editorconfig", + "editorconfig/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled/.editorconfig", + "editorconfig/PortedFromFxCopRulesDefault/.editorconfig", + "editorconfig/PortedFromFxCopRulesEnabled/.editorconfig", + "microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", + "microsoft.codeanalysis.analyzers.nuspec", + "rulesets/AllRulesDefault.ruleset", + "rulesets/AllRulesDisabled.ruleset", + "rulesets/AllRulesEnabled.ruleset", + "rulesets/CorrectnessRulesDefault.ruleset", + "rulesets/CorrectnessRulesEnabled.ruleset", + "rulesets/DataflowRulesDefault.ruleset", + "rulesets/DataflowRulesEnabled.ruleset", + "rulesets/LibraryRulesDefault.ruleset", + "rulesets/LibraryRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCompatibilityRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisCorrectnessRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDesignRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisDocumentationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisLocalizationRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisPerformanceRulesEnabled.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesDefault.ruleset", + "rulesets/MicrosoftCodeAnalysisReleaseTrackingRulesEnabled.ruleset", + "rulesets/PortedFromFxCopRulesDefault.ruleset", + "rulesets/PortedFromFxCopRulesEnabled.ruleset", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.AnalyzerUtilities/3.3.0": { + "sha512": "gyQ70pJ4T7hu/s0+QnEaXtYfeG/JrttGnxHJlrhpxsQjRIUGuRhVwNBtkHHYOrUAZ/l47L98/NiJX6QmTwAyrg==", + "type": "package", + "path": "microsoft.codeanalysis.analyzerutilities/3.3.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "EULA.rtf", + "ThirdPartyNotices.rtf", + "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.AnalyzerUtilities.xml", + "microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512", + "microsoft.codeanalysis.analyzerutilities.nuspec", + "tools/install.ps1", + "tools/uninstall.ps1" + ] + }, + "Microsoft.CodeAnalysis.Common/4.8.0": { + "sha512": "/jR+e/9aT+BApoQJABlVCKnnggGQbvGh7BKq2/wI1LamxC+LbzhcLj4Vj7gXCofl1n4E521YfF9w0WcASGg/KA==", + "type": "package", + "path": "microsoft.codeanalysis.common/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net6.0/Microsoft.CodeAnalysis.dll", + "lib/net6.0/Microsoft.CodeAnalysis.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.xml", + "lib/net6.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.dll", + "lib/net7.0/Microsoft.CodeAnalysis.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "microsoft.codeanalysis.common.4.8.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/4.8.0": { + "sha512": "+3+qfdb/aaGD8PZRCrsdobbzGs1m9u119SkkJt8e/mk3xLJz/udLtS2T6nY27OTXxBBw10HzAbC8Z9w08VyP/g==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp.Features/4.8.0": { + "sha512": "Gpas3l8PE1xz1VDIJNMkYuoFPXtuALxybP04caXh9avC2a0elsoBdukndkJXVZgdKPwraf0a98s7tjqnEk5QIQ==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.features/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Features.dll", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Features.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Features.xml", + "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.dll", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Features.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Features.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Features.resources.dll", + "microsoft.codeanalysis.csharp.features.4.8.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.features.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.8.0": { + "sha512": "3amm4tq4Lo8/BGvg9p3BJh3S9nKq2wqCXfS7138i69TUpo/bD+XvD0hNurpEBtcNZhi1FyutiomKJqVF39ugYA==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.workspaces/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net6.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.workspaces.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Elfie/1.0.0": { + "sha512": "r12elUp4MRjdnRfxEP+xqVSUUfG3yIJTBEJGwbfvF5oU4m0jb9HC0gFG28V/dAkYGMkRmHVi3qvrnBLQSw9X3Q==", + "type": "package", + "path": "microsoft.codeanalysis.elfie/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.CodeAnalysis.Elfie.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Elfie.dll", + "microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512", + "microsoft.codeanalysis.elfie.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Features/4.8.0": { + "sha512": "sCVzMtSETGE16KeScwwlVfxaKRbUMSf/cgRPRPMJuou37SLT7XkIBzJu4e7mlFTzpJbfalV5tOcKpUtLO3eJAg==", + "type": "package", + "path": "microsoft.codeanalysis.features/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net6.0/Microsoft.CodeAnalysis.Features.dll", + "lib/net6.0/Microsoft.CodeAnalysis.Features.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.Features.xml", + "lib/net6.0/cs/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net6.0/de/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net6.0/es/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net6.0/fr/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net6.0/it/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net6.0/ja/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net6.0/ko/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net6.0/pl/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net6.0/ru/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net6.0/tr/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.Features.dll", + "lib/net7.0/Microsoft.CodeAnalysis.Features.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.Features.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Features.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Features.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Features.resources.dll", + "microsoft.codeanalysis.features.4.8.0.nupkg.sha512", + "microsoft.codeanalysis.features.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Razor/6.0.24": { + "sha512": "xIAjR6l/1PO2ILT6/lOGYfe8OzMqfqxh1lxFuM4Exluwc2sQhJw0kS7pEyJ0DE/UMYu6Jcdc53DmjOxQUDT2Pg==", + "type": "package", + "path": "microsoft.codeanalysis.razor/6.0.24", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll", + "microsoft.codeanalysis.razor.6.0.24.nupkg.sha512", + "microsoft.codeanalysis.razor.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Scripting.Common/4.8.0": { + "sha512": "ysiNNbAASVhV9wEd5oY2x99EwaVYtB13XZRjHsgWT/R1mQkxZF8jWsf7JWaZxD1+jNoz1QCQ6nbe+vr+6QvlFA==", + "type": "package", + "path": "microsoft.codeanalysis.scripting.common/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net6.0/Microsoft.CodeAnalysis.Scripting.dll", + "lib/net6.0/Microsoft.CodeAnalysis.Scripting.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.Scripting.xml", + "lib/net6.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net6.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net6.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net6.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net6.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net6.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net6.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net6.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net6.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net6.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.Scripting.dll", + "lib/net7.0/Microsoft.CodeAnalysis.Scripting.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.Scripting.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Scripting.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Scripting.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Scripting.resources.dll", + "microsoft.codeanalysis.scripting.common.4.8.0.nupkg.sha512", + "microsoft.codeanalysis.scripting.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.8.0": { + "sha512": "LXyV+MJKsKRu3FGJA3OmSk40OUIa/dQCFLOnm5X8MNcujx7hzGu8o+zjXlb/cy5xUdZK2UKYb9YaQ2E8m9QehQ==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.common/4.8.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net6.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net6.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net6.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/netstandard2.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.common.nuspec" + ] + }, + "Microsoft.Data.SqlClient/5.1.5": { + "sha512": "6kvhQjY5uBCdBccezFD2smfnpQjQ33cZtUZVrNvxlwoBu6uopM5INH6uSgLI7JRLtlQ3bMPwnhMq4kchsXeZ5w==", + "type": "package", + "path": "microsoft.data.sqlclient/5.1.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net462/Microsoft.Data.SqlClient.dll", + "lib/net462/Microsoft.Data.SqlClient.pdb", + "lib/net462/Microsoft.Data.SqlClient.xml", + "lib/net462/de/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/es/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/fr/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/it/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ja/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ko/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/pt-BR/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/ru/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hans/Microsoft.Data.SqlClient.resources.dll", + "lib/net462/zh-Hant/Microsoft.Data.SqlClient.resources.dll", + "lib/net6.0/Microsoft.Data.SqlClient.dll", + "lib/net6.0/Microsoft.Data.SqlClient.pdb", + "lib/net6.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.0/Microsoft.Data.SqlClient.xml", + "lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "lib/netstandard2.1/Microsoft.Data.SqlClient.xml", + "microsoft.data.sqlclient.5.1.5.nupkg.sha512", + "microsoft.data.sqlclient.nuspec", + "ref/net462/Microsoft.Data.SqlClient.dll", + "ref/net462/Microsoft.Data.SqlClient.pdb", + "ref/net462/Microsoft.Data.SqlClient.xml", + "ref/net6.0/Microsoft.Data.SqlClient.dll", + "ref/net6.0/Microsoft.Data.SqlClient.pdb", + "ref/net6.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.0/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.0/Microsoft.Data.SqlClient.xml", + "ref/netstandard2.1/Microsoft.Data.SqlClient.dll", + "ref/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "ref/netstandard2.1/Microsoft.Data.SqlClient.xml", + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/net6.0/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/unix/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/net462/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net462/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/net6.0/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.0/Microsoft.Data.SqlClient.pdb", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.dll", + "runtimes/win/lib/netstandard2.1/Microsoft.Data.SqlClient.pdb" + ] + }, + "Microsoft.Data.SqlClient.SNI.runtime/5.1.1": { + "sha512": "wNGM5ZTQCa2blc9ikXQouybGiyMd6IHPVJvAlBEPtr6JepZEOYeDxGyprYvFVeOxlCXs7avridZQ0nYkHzQWCQ==", + "type": "package", + "path": "microsoft.data.sqlclient.sni.runtime/5.1.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt", + "dotnet.png", + "microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512", + "microsoft.data.sqlclient.sni.runtime.nuspec", + "runtimes/win-arm/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-arm64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x64/native/Microsoft.Data.SqlClient.SNI.dll", + "runtimes/win-x86/native/Microsoft.Data.SqlClient.SNI.dll" + ] + }, + "Microsoft.DiaSymReader/2.0.0": { + "sha512": "QcZrCETsBJqy/vQpFtJc+jSXQ0K5sucQ6NUFbTNVHD4vfZZOwjZ/3sBzczkC4DityhD3AVO/+K/+9ioLs1AgRA==", + "type": "package", + "path": "microsoft.diasymreader/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/netstandard2.0/Microsoft.DiaSymReader.dll", + "lib/netstandard2.0/Microsoft.DiaSymReader.pdb", + "lib/netstandard2.0/Microsoft.DiaSymReader.xml", + "microsoft.diasymreader.2.0.0.nupkg.sha512", + "microsoft.diasymreader.nuspec" + ] + }, + "Microsoft.DotNet.Scaffolding.Shared/8.0.7": { + "sha512": "q11ADAFXiDHsiH6YpHDCtu/5JB/k6nBWM1pwoI3yOzq//2ZdnWgNkgs1coZyv/XZluxZbVmeo6f+ZoYGebIj/Q==", + "type": "package", + "path": "microsoft.dotnet.scaffolding.shared/8.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "NOTICE.txt", + "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.dll", + "lib/netstandard2.0/Microsoft.DotNet.Scaffolding.Shared.xml", + "microsoft.dotnet.scaffolding.shared.8.0.7.nupkg.sha512", + "microsoft.dotnet.scaffolding.shared.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore/8.0.10": { + "sha512": "PPkQdIqfR1nU3n6YgGGDk8G+eaYbaAKM1AzIQtlPNTKf10Osg3N9T+iK9AlnSA/ujsK00flPpFHVfJrbuBFS1A==", + "type": "package", + "path": "microsoft.entityframeworkcore/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net8.0/Microsoft.EntityFrameworkCore.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.8.0.10.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/8.0.10": { + "sha512": "FV0QlcX9INY4kAD2o72uPtyOh0nZut2jB11Jf9mNYBtHay8gDLe+x4AbXFwuQg+eSvofjT7naV82e827zGfyMg==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/8.0.10": { + "sha512": "51KkPIc0EMv/gVXhPIUi6cwJE9Mvh+PLr4Lap4naLcsoGZ0lF2SvOPgUUprwRV3MnN7nyD1XPhT5RJ/p+xFAXw==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Design/8.0.10": { + "sha512": "uGNjfKvAsql2KHRqxlK5wHo8mMC60G/FecrFKEjJgeIxtUAbSXGOgKGw/gD9flO5Fzzt1C7uxfIcr6ZsMmFkeg==", + "type": "package", + "path": "microsoft.entityframeworkcore.design/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "build/net8.0/Microsoft.EntityFrameworkCore.Design.props", + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.xml", + "microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512", + "microsoft.entityframeworkcore.design.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/8.0.10": { + "sha512": "OefBEE47kGKPRPV3OT+FAW6o5BFgLk2D9EoeWVy7NbOepzUneayLQxbVE098FfedTyMwxvZQoDD9LrvZc3MadA==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.SqlServer/8.0.10": { + "sha512": "DvhBEk44UjWMebFKwIFDIdEsG8gzbgflWIZljDCpIkZVpId+PKs0ufzJxnTQ94InPO+pS7+wE45cRsPRt9B0Iw==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlserver/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.dll", + "lib/net8.0/Microsoft.EntityFrameworkCore.SqlServer.xml", + "microsoft.entityframeworkcore.sqlserver.8.0.10.nupkg.sha512", + "microsoft.entityframeworkcore.sqlserver.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Tools/8.0.10": { + "sha512": "aaimNUjkJDHdZb2hxd6hjwz7OdeankbQHPx8/b+qCfVfaEpOAIW0LTBge4qG+AUKacKfcoK7GJq6ACjenEvPLQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.tools/8.0.10", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "docs/PACKAGE.md", + "lib/net8.0/_._", + "microsoft.entityframeworkcore.tools.8.0.10.nupkg.sha512", + "microsoft.entityframeworkcore.tools.nuspec", + "tools/EntityFrameworkCore.PS2.psd1", + "tools/EntityFrameworkCore.PS2.psm1", + "tools/EntityFrameworkCore.psd1", + "tools/EntityFrameworkCore.psm1", + "tools/about_EntityFrameworkCore.help.txt", + "tools/init.ps1", + "tools/net461/any/ef.exe", + "tools/net461/win-arm64/ef.exe", + "tools/net461/win-x86/ef.exe", + "tools/netcoreapp2.0/any/ef.dll", + "tools/netcoreapp2.0/any/ef.runtimeconfig.json" + ] + }, "Microsoft.Extensions.ApiDescription.Server/6.0.5": { "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", "type": "package", @@ -330,6 +5381,610 @@ "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll" ] }, + "Microsoft.Extensions.Caching.Abstractions/8.0.0": { + "sha512": "3KuSxeHoNYdxVYfg2IRZCThcrlJ1XJqIXkAWikCsbm5C/bCjv7G0WoKDyuR98Q+T607QT2Zl5GsbGRkENcV2yQ==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/8.0.1": { + "sha512": "HFDnhYLccngrzyGgHkjEDU5FMLn4MpOsr5ElgsBMC4yx6lJh4jeWO7fHS8+TXPq+dgxCmUa/Trl8svObmwW4QA==", + "type": "package", + "path": "microsoft.extensions.caching.memory/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.8.0.1.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/8.0.0": { + "sha512": "3lE/iLSutpgX1CC0NOW70FJoGARRHbyKmG7dc0klnUZ9Dd9hS6N/POPWhKhMLCEuNN5nXEY5agmlFtH562vqhQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/8.0.1": { + "sha512": "BmANAnR5Xd4Oqw7yQ75xOAYODybZQRzdeNucg7kS5wWKd2PNnMdYtJ2Vciy0QLylRmv42DGl5+AFL9izA6F1Rw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.xml", + "microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/8.0.2": { + "sha512": "3iE7UF7MQkCv1cxzCahz+Y/guQbTqieyxyaWKhrRO91itI9cOKO76OHeQDahqG4MmW5umr3CcCvGmK92lWNlbg==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/netstandard2.1/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/8.0.2": { + "sha512": "mUBDZZRgZrSyFOsJ2qJJ9fXfqd/kXJwf3AiDoqLD9m6TjY5OO/vLNOb9fb4juC0487eq4hcGN/M2Rh/CKS7QYw==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/8.0.1": { + "sha512": "4x+pzsQEbqxhNf1QYRr5TDkLP9UsLT3A6MdRKDDEgrW7h1ljiEPgTNhKYUhNCCAaVpQECVQ+onA91PTPnIp6Lw==", + "type": "package", + "path": "microsoft.extensions.logging/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.xml", + "lib/netstandard2.1/Microsoft.Extensions.Logging.dll", + "lib/netstandard2.1/Microsoft.Extensions.Logging.xml", + "microsoft.extensions.logging.8.0.1.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/8.0.2": { + "sha512": "nroMDjS7hNBPtkZqVBbSiQaQjWRDxITI8Y7XnDs97rqG3EbzVTNLZQf7bIeUJcaHOV8bca47s1Uxq94+2oGdxA==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/8.0.2": { + "sha512": "dWGKvhFybsaZpGmzkGCbNNwBD1rVlWzrZKANLW/CcbFJpCEceMCGzT7zZwHOGBCbwM0SzBuceMj5HN1LKV1QqA==", + "type": "package", + "path": "microsoft.extensions.options/8.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Options.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Options.SourceGeneration.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/Microsoft.Extensions.Options.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.0/Microsoft.Extensions.Options.dll", + "lib/netstandard2.0/Microsoft.Extensions.Options.xml", + "lib/netstandard2.1/Microsoft.Extensions.Options.dll", + "lib/netstandard2.1/Microsoft.Extensions.Options.xml", + "microsoft.extensions.options.8.0.2.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/8.0.0": { + "sha512": "bXJEZrW9ny8vjMF1JV253WeLhpEVzFo1lyaZu1vQ4ZxWUlVvknZ/+ftFgVheLubb4eZPSwwxBeqS1JkCOjxd8g==", + "type": "package", + "path": "microsoft.extensions.primitives/8.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Identity.Client/4.56.0": { + "sha512": "rr4zbidvHy9r4NvOAs5hdd964Ao2A0pAeFBJKR95u1CJAVzbd1p6tPTXUZ+5ld0cfThiVSGvz6UHwY6JjraTpA==", + "type": "package", + "path": "microsoft.identity.client/4.56.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid10.0/Microsoft.Identity.Client.dll", + "lib/monoandroid10.0/Microsoft.Identity.Client.xml", + "lib/monoandroid90/Microsoft.Identity.Client.dll", + "lib/monoandroid90/Microsoft.Identity.Client.xml", + "lib/net45/Microsoft.Identity.Client.dll", + "lib/net45/Microsoft.Identity.Client.xml", + "lib/net461/Microsoft.Identity.Client.dll", + "lib/net461/Microsoft.Identity.Client.xml", + "lib/net6.0-android31.0/Microsoft.Identity.Client.dll", + "lib/net6.0-android31.0/Microsoft.Identity.Client.xml", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.dll", + "lib/net6.0-ios15.4/Microsoft.Identity.Client.xml", + "lib/net6.0-windows7.0/Microsoft.Identity.Client.dll", + "lib/net6.0-windows7.0/Microsoft.Identity.Client.xml", + "lib/net6.0/Microsoft.Identity.Client.dll", + "lib/net6.0/Microsoft.Identity.Client.xml", + "lib/netcoreapp2.1/Microsoft.Identity.Client.dll", + "lib/netcoreapp2.1/Microsoft.Identity.Client.xml", + "lib/netstandard2.0/Microsoft.Identity.Client.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.xml", + "lib/uap10.0.17763/Microsoft.Identity.Client.dll", + "lib/uap10.0.17763/Microsoft.Identity.Client.pri", + "lib/uap10.0.17763/Microsoft.Identity.Client.xml", + "lib/xamarinios10/Microsoft.Identity.Client.dll", + "lib/xamarinios10/Microsoft.Identity.Client.xml", + "microsoft.identity.client.4.56.0.nupkg.sha512", + "microsoft.identity.client.nuspec" + ] + }, + "Microsoft.Identity.Client.Extensions.Msal/4.56.0": { + "sha512": "H12YAzEGK55vZ+QpxUzozhW8ZZtgPDuWvgA0JbdIR9UhMUplj29JhIgE2imuH8W2Nw9D8JKygR1uxRFtpSNcrg==", + "type": "package", + "path": "microsoft.identity.client.extensions.msal/4.56.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.dll", + "lib/netstandard2.0/Microsoft.Identity.Client.Extensions.Msal.xml", + "microsoft.identity.client.extensions.msal.4.56.0.nupkg.sha512", + "microsoft.identity.client.extensions.msal.nuspec" + ] + }, + "Microsoft.IdentityModel.Abstractions/8.3.1": { + "sha512": "oXYKRcTS0DTIB5vZenGy9oceD8awhjnXFFabc/IWBwluMA03SGvazCFyUIQ2mJOIOSf9lLyM971nbTj9qZgEJg==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/8.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Microsoft.IdentityModel.Abstractions.dll", + "lib/net462/Microsoft.IdentityModel.Abstractions.xml", + "lib/net472/Microsoft.IdentityModel.Abstractions.dll", + "lib/net472/Microsoft.IdentityModel.Abstractions.xml", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net6.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/net8.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net8.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/net9.0/Microsoft.IdentityModel.Abstractions.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Abstractions.xml", + "microsoft.identitymodel.abstractions.8.3.1.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/8.3.1": { + "sha512": "cA622rrXYdaO7inNZ8KY5leZpP6889wT+gHPgvy62PYlAITyxF9PxP5u+ecNBOsPx2PagBH7ZNr39yU/MOPn+w==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/8.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net462/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net6.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net8.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.8.3.1.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/8.3.1": { + "sha512": "XCwbK7ErgZdrwl4ph+i8X5SCGwAepBFbsNIEceozGzrBFVvZbKKJE1WQOft9QyglP4me+DECdVVL8UnI6OO+sg==", + "type": "package", + "path": "microsoft.identitymodel.logging/8.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Microsoft.IdentityModel.Logging.dll", + "lib/net462/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/net6.0/Microsoft.IdentityModel.Logging.dll", + "lib/net6.0/Microsoft.IdentityModel.Logging.xml", + "lib/net8.0/Microsoft.IdentityModel.Logging.dll", + "lib/net8.0/Microsoft.IdentityModel.Logging.xml", + "lib/net9.0/Microsoft.IdentityModel.Logging.dll", + "lib/net9.0/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.8.3.1.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/7.1.2": { + "sha512": "SydLwMRFx6EHPWJ+N6+MVaoArN1Htt92b935O3RUWPY1yUF63zEjvd3lBu79eWdZUwedP8TN2I5V9T3nackvIQ==", + "type": "package", + "path": "microsoft.identitymodel.protocols/7.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.xml", + "lib/net8.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net8.0/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.7.1.2.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/7.1.2": { + "sha512": "6lHQoLXhnMQ42mGrfDkzbIOR3rzKM1W1tgTeMPLgLCqwwGw0d96xFi/UiX/fYsu7d6cD5MJiL3+4HuI8VU+sVQ==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/7.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net462/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net6.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net8.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "microsoft.identitymodel.protocols.openidconnect.7.1.2.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/8.3.1": { + "sha512": "77GXREJzIDiKAc/RR8YE267bwzrxM4cjMRCzMQa0Xk1MUUdjx/JwjDJpUh00vT4oxcX5rjsMP0KLd8YjgR3N3w==", + "type": "package", + "path": "microsoft.identitymodel.tokens/8.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/Microsoft.IdentityModel.Tokens.dll", + "lib/net462/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/net6.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net6.0/Microsoft.IdentityModel.Tokens.xml", + "lib/net8.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net8.0/Microsoft.IdentityModel.Tokens.xml", + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll", + "lib/net9.0/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.8.3.1.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NET.StringTools/17.8.3": { + "sha512": "y6DiuacjlIfXH3XVQG5htf+4oheinZAo7sHbITB3z7yCXQec48f9ZhGSXkr+xn1bfl73Yc3ZQEW2peJ5X68AvQ==", + "type": "package", + "path": "microsoft.net.stringtools/17.8.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MSBuild-NuGet-Icon.png", + "README.md", + "lib/net472/Microsoft.NET.StringTools.dll", + "lib/net472/Microsoft.NET.StringTools.pdb", + "lib/net472/Microsoft.NET.StringTools.xml", + "lib/net8.0/Microsoft.NET.StringTools.dll", + "lib/net8.0/Microsoft.NET.StringTools.pdb", + "lib/net8.0/Microsoft.NET.StringTools.xml", + "lib/netstandard2.0/Microsoft.NET.StringTools.dll", + "lib/netstandard2.0/Microsoft.NET.StringTools.pdb", + "lib/netstandard2.0/Microsoft.NET.StringTools.xml", + "microsoft.net.stringtools.17.8.3.nupkg.sha512", + "microsoft.net.stringtools.nuspec", + "notices/THIRDPARTYNOTICES.txt", + "ref/net472/Microsoft.NET.StringTools.dll", + "ref/net472/Microsoft.NET.StringTools.xml", + "ref/net8.0/Microsoft.NET.StringTools.dll", + "ref/net8.0/Microsoft.NET.StringTools.xml", + "ref/netstandard2.0/Microsoft.NET.StringTools.dll", + "ref/netstandard2.0/Microsoft.NET.StringTools.xml" + ] + }, + "Microsoft.NETCore.Platforms/5.0.0": { + "sha512": "VyPlqzH2wavqquTcYpkIIAQ6WdenuKoFN0BdYBbCWsclXacSOHNQn66Gt4z5NBqEYW0FAPm5rlvki9ZiCij5xQ==", + "type": "package", + "path": "microsoft.netcore.platforms/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.0/_._", + "microsoft.netcore.platforms.5.0.0.nupkg.sha512", + "microsoft.netcore.platforms.nuspec", + "runtime.json", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, "Microsoft.OpenApi/1.2.3": { "sha512": "Nug3rO+7Kl5/SBAadzSMAVgqDlfGjJZ0GenQrLywJ84XGKO0uRqkunz5Wyl0SDwcR71bAATXvSdbdzPrYRYKGw==", "type": "package", @@ -347,6 +6002,24 @@ "microsoft.openapi.nuspec" ] }, + "Microsoft.SqlServer.Server/1.0.0": { + "sha512": "N4KeF3cpcm1PUHym1RmakkzfkEv3GRMyofVv40uXsQhCQeglr2OHNcUk2WOG51AKpGO8ynGpo9M/kFXSzghwug==", + "type": "package", + "path": "microsoft.sqlserver.server/1.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "dotnet.png", + "lib/net46/Microsoft.SqlServer.Server.dll", + "lib/net46/Microsoft.SqlServer.Server.pdb", + "lib/net46/Microsoft.SqlServer.Server.xml", + "lib/netstandard2.0/Microsoft.SqlServer.Server.dll", + "lib/netstandard2.0/Microsoft.SqlServer.Server.pdb", + "lib/netstandard2.0/Microsoft.SqlServer.Server.xml", + "microsoft.sqlserver.server.1.0.0.nupkg.sha512", + "microsoft.sqlserver.server.nuspec" + ] + }, "Microsoft.VisualStudio.Azure.Containers.Tools.Targets/1.19.6": { "sha512": "7GOQdMzQcH7o/bPFL/I2kQEgMnq2pYZ+exhGb9nNqs624K9w2jB2zieh4sOH9+a01i/G9iTWfeUI3IGMF7SKNg==", "type": "package", @@ -428,6 +6101,748 @@ "tools/zh-Hant/Microsoft.VisualStudio.Containers.Tools.Tasks.resources.dll" ] }, + "Microsoft.VisualStudio.Web.CodeGeneration/8.0.7": { + "sha512": "8WqtBA1DxiiEq1c2PjgkeFYHPC0WwC5Yl7FuDg41RQ6rvi661mSHCApzz3/rp/cfb8I7DiG1+3d01q5ck+BT1w==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration/8.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "NOTICE.txt", + "README.md", + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.dll", + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.xml", + "microsoft.visualstudio.web.codegeneration.8.0.7.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Core/8.0.7": { + "sha512": "kahoV4hImS/uUfn3K9ecU+o1U4pn5sdnabG+DGsK9bf6gL0tw8MnrArz3M9kWYMKDsVd3/j/3ZriTH+hVrPW2w==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.core/8.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "NOTICE.txt", + "README.md", + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.dll", + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Core.xml", + "microsoft.visualstudio.web.codegeneration.core.8.0.7.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.core.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design/8.0.7": { + "sha512": "qURp+VCwreGNQBofL6z3uUnLmrG3PCap/jN/B8jGqsiMLjhR+FOO7r9R1vcNeXYd5cFORpQvsuZi6GWXxr2dCA==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.design/8.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "NOTICE.txt", + "README.md", + "lib/net8.0/dotnet-aspnet-codegenerator-design.dll", + "lib/net8.0/dotnet-aspnet-codegenerator-design.xml", + "microsoft.visualstudio.web.codegeneration.design.8.0.7.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.design.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore/8.0.7": { + "sha512": "Cd37PMogJ7sbzbUkbZsqPOLpKg0xbBLypsGuJ8HLX7caTDSg2NIsNT/MJKu0VybfoQ2L4fli8XpJXxVytbx1wA==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.entityframeworkcore/8.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "NOTICE.txt", + "README.md", + "Templates/DbContext/NewLocalDbContext.cshtml", + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.dll", + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.runtimeconfig.json", + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.EntityFrameworkCore.xml", + "microsoft.visualstudio.web.codegeneration.entityframeworkcore.8.0.7.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.entityframeworkcore.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Templating/8.0.7": { + "sha512": "uXtCSh13HD7589QSez9cVwQ2xacIgDuf33/ifW8a6DqxC+dF5ium2p+5odUNbzRU8cnCuISjti7F+D4F9kLLVw==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.templating/8.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "NOTICE.txt", + "README.md", + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.dll", + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Templating.xml", + "microsoft.visualstudio.web.codegeneration.templating.8.0.7.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.templating.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGeneration.Utils/8.0.7": { + "sha512": "2oA20npXOXxH2pmnTtXNrPgow+W3dGREI+SWrCci5IbTgQE6NOhL+5PmbxqAqjhmoyy9CSEbaav9eWTM7jEdQQ==", + "type": "package", + "path": "microsoft.visualstudio.web.codegeneration.utils/8.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "NOTICE.txt", + "README.md", + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.dll", + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGeneration.Utils.xml", + "microsoft.visualstudio.web.codegeneration.utils.8.0.7.nupkg.sha512", + "microsoft.visualstudio.web.codegeneration.utils.nuspec" + ] + }, + "Microsoft.VisualStudio.Web.CodeGenerators.Mvc/8.0.7": { + "sha512": "IN7xeBHZ/WtYN62Ez0rEWqpsiTlpEUbGcjvXLRF2gNO8SdhFn9IhzdixKXTLzHTf89oS9Y5mFIPkWcU4Y99USA==", + "type": "package", + "path": "microsoft.visualstudio.web.codegenerators.mvc/8.0.7", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Generators/ParameterDefinitions/area.json", + "Generators/ParameterDefinitions/blazor-identity.json", + "Generators/ParameterDefinitions/blazor.json", + "Generators/ParameterDefinitions/controller.json", + "Generators/ParameterDefinitions/identity.json", + "Generators/ParameterDefinitions/minimalapi.json", + "Generators/ParameterDefinitions/razorpage.json", + "Generators/ParameterDefinitions/view.json", + "Icon.png", + "NOTICE.txt", + "README.md", + "Templates/Blazor/Create.tt", + "Templates/Blazor/Delete.tt", + "Templates/Blazor/Details.tt", + "Templates/Blazor/Edit.tt", + "Templates/Blazor/Index.tt", + "Templates/BlazorIdentity/IdentityComponentsEndpointRouteBuilderExtensions.tt", + "Templates/BlazorIdentity/IdentityNoOpEmailSender.tt", + "Templates/BlazorIdentity/IdentityRedirectManager.tt", + "Templates/BlazorIdentity/IdentityRevalidatingAuthenticationStateProvider.tt", + "Templates/BlazorIdentity/IdentityUserAccessor.tt", + "Templates/BlazorIdentity/Pages/ConfirmEmail.tt", + "Templates/BlazorIdentity/Pages/ConfirmEmailChange.tt", + "Templates/BlazorIdentity/Pages/ExternalLogin.tt", + "Templates/BlazorIdentity/Pages/ForgotPassword.tt", + "Templates/BlazorIdentity/Pages/ForgotPasswordConfirmation.tt", + "Templates/BlazorIdentity/Pages/InvalidPasswordReset.tt", + "Templates/BlazorIdentity/Pages/InvalidUser.tt", + "Templates/BlazorIdentity/Pages/Lockout.tt", + "Templates/BlazorIdentity/Pages/Login.tt", + "Templates/BlazorIdentity/Pages/LoginWith2fa.tt", + "Templates/BlazorIdentity/Pages/LoginWithRecoveryCode.tt", + "Templates/BlazorIdentity/Pages/Manage/ChangePassword.tt", + "Templates/BlazorIdentity/Pages/Manage/DeletePersonalData.tt", + "Templates/BlazorIdentity/Pages/Manage/Disable2fa.tt", + "Templates/BlazorIdentity/Pages/Manage/Email.tt", + "Templates/BlazorIdentity/Pages/Manage/EnableAuthenticator.tt", + "Templates/BlazorIdentity/Pages/Manage/ExternalLogins.tt", + "Templates/BlazorIdentity/Pages/Manage/GenerateRecoveryCodes.tt", + "Templates/BlazorIdentity/Pages/Manage/Index.tt", + "Templates/BlazorIdentity/Pages/Manage/PersonalData.tt", + "Templates/BlazorIdentity/Pages/Manage/ResetAuthenticator.tt", + "Templates/BlazorIdentity/Pages/Manage/SetPassword.tt", + "Templates/BlazorIdentity/Pages/Manage/TwoFactorAuthentication.tt", + "Templates/BlazorIdentity/Pages/Manage/_Imports.tt", + "Templates/BlazorIdentity/Pages/Register.tt", + "Templates/BlazorIdentity/Pages/RegisterConfirmation.tt", + "Templates/BlazorIdentity/Pages/ResendEmailConfirmation.tt", + "Templates/BlazorIdentity/Pages/ResetPassword.tt", + "Templates/BlazorIdentity/Pages/ResetPasswordConfirmation.tt", + "Templates/BlazorIdentity/Pages/_Imports.tt", + "Templates/BlazorIdentity/Shared/AccountLayout.tt", + "Templates/BlazorIdentity/Shared/ExternalLoginPicker.tt", + "Templates/BlazorIdentity/Shared/ManageLayout.tt", + "Templates/BlazorIdentity/Shared/ManageNavMenu.tt", + "Templates/BlazorIdentity/Shared/RedirectToLogin.tt", + "Templates/BlazorIdentity/Shared/ShowRecoveryCodes.tt", + "Templates/BlazorIdentity/Shared/StatusMessage.tt", + "Templates/ControllerGenerator/ApiControllerWithContext.cshtml", + "Templates/ControllerGenerator/MvcControllerWithContext.cshtml", + "Templates/General/IdentityApplicationUser.Interfaces.cs", + "Templates/General/IdentityApplicationUser.cs", + "Templates/General/IdentityApplicationUser.tt", + "Templates/General/IdentityApplicationUserModel.cs", + "Templates/General/IdentityDbContext.Interfaces.cs", + "Templates/General/IdentityDbContext.cs", + "Templates/General/IdentityDbContext.tt", + "Templates/General/IdentityDbContextModel.cs", + "Templates/Identity/Data/ApplicationDbContext.cshtml", + "Templates/Identity/Data/ApplicationUser.cshtml", + "Templates/Identity/IdentityHostingStartup.cshtml", + "Templates/Identity/Pages/Account/Account.AccessDenied.cs.cshtml", + "Templates/Identity/Pages/Account/Account.AccessDenied.cshtml", + "Templates/Identity/Pages/Account/Account.ConfirmEmail.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ConfirmEmail.cshtml", + "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ConfirmEmailChange.cshtml", + "Templates/Identity/Pages/Account/Account.ExternalLogin.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ExternalLogin.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPassword.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPassword.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", + "Templates/Identity/Pages/Account/Account.Lockout.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Lockout.cshtml", + "Templates/Identity/Pages/Account/Account.Login.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Login.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWith2fa.cs.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWith2fa.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", + "Templates/Identity/Pages/Account/Account.LoginWithRecoveryCode.cshtml", + "Templates/Identity/Pages/Account/Account.Logout.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Logout.cshtml", + "Templates/Identity/Pages/Account/Account.Register.cs.cshtml", + "Templates/Identity/Pages/Account/Account.Register.cshtml", + "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cs.cshtml", + "Templates/Identity/Pages/Account/Account.RegisterConfirmation.cshtml", + "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ResendEmailConfirmation.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPassword.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPassword.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", + "Templates/Identity/Pages/Account/Account.ResetPasswordConfirmation.cshtml", + "Templates/Identity/Pages/Account/Account._StatusMessage.cshtml", + "Templates/Identity/Pages/Account/Account._ViewImports.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Email.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.Index.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._Layout.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", + "Templates/Identity/Pages/Account/Manage/Account.Manage._ViewStart.cshtml", + "Templates/Identity/Pages/Error.cs.cshtml", + "Templates/Identity/Pages/Error.cshtml", + "Templates/Identity/Pages/_Layout.cshtml", + "Templates/Identity/Pages/_ValidationScriptsPartial.cshtml", + "Templates/Identity/Pages/_ViewImports.cshtml", + "Templates/Identity/Pages/_ViewStart.cshtml", + "Templates/Identity/ScaffoldingReadme.cshtml", + "Templates/Identity/SupportPages._CookieConsentPartial.cshtml", + "Templates/Identity/SupportPages._ViewImports.cshtml", + "Templates/Identity/SupportPages._ViewStart.cshtml", + "Templates/Identity/_LoginPartial.cshtml", + "Templates/Identity/wwwroot/css/site.css", + "Templates/Identity/wwwroot/favicon.ico", + "Templates/Identity/wwwroot/js/site.js", + "Templates/Identity/wwwroot/lib/bootstrap/LICENSE", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.rtl.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.rtl.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap-utilities.rtl.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css", + "Templates/Identity/wwwroot/lib/bootstrap/dist/css/bootstrap.rtl.min.css.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.js.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.esm.min.js.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", + "Templates/Identity/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map", + "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", + "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", + "Templates/Identity/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", + "Templates/Identity/wwwroot/lib/jquery-validation/LICENSE.md", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.js", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.js", + "Templates/Identity/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", + "Templates/Identity/wwwroot/lib/jquery/LICENSE.txt", + "Templates/Identity/wwwroot/lib/jquery/dist/jquery.js", + "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.js", + "Templates/Identity/wwwroot/lib/jquery/dist/jquery.min.map", + "Templates/Identity_Versioned/Bootstrap4/Data/ApplicationDbContext.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Data/ApplicationUser.cshtml", + "Templates/Identity_Versioned/Bootstrap4/IdentityHostingStartup.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.AccessDenied.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.AccessDenied.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmail.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmail.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmailChange.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ConfirmEmailChange.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ExternalLogin.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ExternalLogin.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPassword.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPasswordConfirmation.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ForgotPasswordConfirmation.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Lockout.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Lockout.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Login.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Login.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWith2fa.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWith2fa.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWithRecoveryCode.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.LoginWithRecoveryCode.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Logout.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Logout.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Register.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.Register.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.RegisterConfirmation.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.RegisterConfirmation.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResendEmailConfirmation.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResendEmailConfirmation.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPassword.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPasswordConfirmation.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account.ResetPasswordConfirmation.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account._StatusMessage.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Account._ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ChangePassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ChangePassword.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DeletePersonalData.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DeletePersonalData.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Disable2fa.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Disable2fa.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.DownloadPersonalData.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Email.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Email.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.EnableAuthenticator.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ExternalLogins.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ExternalLogins.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.GenerateRecoveryCodes.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Index.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.Index.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ManageNavPages.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.PersonalData.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.PersonalData.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ResetAuthenticator.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.SetPassword.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.SetPassword.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.ShowRecoveryCodes.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage.TwoFactorAuthentication.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._Layout.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._ManageNav.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._StatusMessage.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Account/Manage/Account.Manage._ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Error.cs.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/Error.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/_Layout.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/_ValidationScriptsPartial.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/_ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap4/Pages/_ViewStart.cshtml", + "Templates/Identity_Versioned/Bootstrap4/ScaffoldingReadme.cshtml", + "Templates/Identity_Versioned/Bootstrap4/SupportPages._CookieConsentPartial.cshtml", + "Templates/Identity_Versioned/Bootstrap4/SupportPages._ViewImports.cshtml", + "Templates/Identity_Versioned/Bootstrap4/SupportPages._ViewStart.cshtml", + "Templates/Identity_Versioned/Bootstrap4/_LoginPartial.cshtml", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/css/site.css", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/favicon.ico", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/js/site.js", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/LICENSE", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.css.map", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-grid.min.css.map", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.css.map", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap-reboot.min.css.map", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.css", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.css.map", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/css/bootstrap.min.css.map", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.js.map", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.bundle.min.js.map", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.js", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.js.map", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/bootstrap/dist/js/bootstrap.min.js.map", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/LICENSE.txt", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.js", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation-unobtrusive/jquery.validate.unobtrusive.min.js", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/LICENSE.md", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/additional-methods.js", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/additional-methods.min.js", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/jquery.validate.js", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery-validation/dist/jquery.validate.min.js", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/LICENSE.txt", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.js", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.min.js", + "Templates/Identity_Versioned/Bootstrap4/wwwroot/lib/jquery/dist/jquery.min.map", + "Templates/MinimalApi/MinimalApi.cshtml", + "Templates/MinimalApi/MinimalApiEf.cshtml", + "Templates/MinimalApi/MinimalApiEfNoClass.cshtml", + "Templates/MinimalApi/MinimalApiNoClass.cshtml", + "Templates/MvcLayout/Error.cshtml", + "Templates/MvcLayout/_Layout.cshtml", + "Templates/RazorPageGenerator/Create.cshtml", + "Templates/RazorPageGenerator/CreatePageModel.cshtml", + "Templates/RazorPageGenerator/Delete.cshtml", + "Templates/RazorPageGenerator/DeletePageModel.cshtml", + "Templates/RazorPageGenerator/Details.cshtml", + "Templates/RazorPageGenerator/DetailsPageModel.cshtml", + "Templates/RazorPageGenerator/Edit.cshtml", + "Templates/RazorPageGenerator/EditPageModel.cshtml", + "Templates/RazorPageGenerator/List.cshtml", + "Templates/RazorPageGenerator/ListPageModel.cshtml", + "Templates/RazorPageGenerator/_ValidationScriptsPartial.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap4/Create.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap4/CreatePageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap4/Delete.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap4/DeletePageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap4/Details.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap4/DetailsPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap4/Edit.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap4/EditPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap4/List.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap4/ListPageModel.cshtml", + "Templates/RazorPageGenerator_Versioned/Bootstrap4/_ValidationScriptsPartial.cshtml", + "Templates/Startup/ReadMe.cshtml", + "Templates/Startup/Startup.cshtml", + "Templates/ViewGenerator/Create.cshtml", + "Templates/ViewGenerator/Delete.cshtml", + "Templates/ViewGenerator/Details.cshtml", + "Templates/ViewGenerator/Edit.cshtml", + "Templates/ViewGenerator/Empty.cshtml", + "Templates/ViewGenerator/List.cshtml", + "Templates/ViewGenerator/_ValidationScriptsPartial.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap4/Create.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap4/Delete.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap4/Details.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap4/Edit.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap4/Empty.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap4/List.cshtml", + "Templates/ViewGenerator_Versioned/Bootstrap4/_ValidationScriptsPartial.cshtml", + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.dll", + "lib/net8.0/Microsoft.VisualStudio.Web.CodeGenerators.Mvc.xml", + "lib/net8.0/blazorIdentityChanges.json", + "lib/net8.0/blazorWebCrudChanges.json", + "lib/net8.0/bootstrap4_identitygeneratorfilesconfig.json", + "lib/net8.0/bootstrap5_identitygeneratorfilesconfig.json", + "lib/net8.0/identityMinimalHostingChanges.json", + "lib/net8.0/minimalApiChanges.json", + "microsoft.visualstudio.web.codegenerators.mvc.8.0.7.nupkg.sha512", + "microsoft.visualstudio.web.codegenerators.mvc.nuspec" + ] + }, + "Microsoft.Win32.SystemEvents/7.0.0": { + "sha512": "2nXPrhdAyAzir0gLl8Yy8S5Mnm/uBSQQA7jEsILOS1MTyS7DbmV1NgViMtvV1sfCD1ebITpNwb1NIinKeJgUVQ==", + "type": "package", + "path": "microsoft.win32.systemevents/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Win32.SystemEvents.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Win32.SystemEvents.targets", + "lib/net462/Microsoft.Win32.SystemEvents.dll", + "lib/net462/Microsoft.Win32.SystemEvents.xml", + "lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.dll", + "lib/netstandard2.0/Microsoft.Win32.SystemEvents.xml", + "microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "microsoft.win32.systemevents.nuspec", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net6.0/Microsoft.Win32.SystemEvents.xml", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.dll", + "runtimes/win/lib/net7.0/Microsoft.Win32.SystemEvents.xml", + "useSharedDesignerContext.txt" + ] + }, + "Mono.TextTemplating/2.3.1": { + "sha512": "pqYwzNqDL0QK1JFpAjpI/NPqyqLGpHLvVmA5Ec0LaSnbIDtEXxu0td16uunegb7c8xAnlcm4qkbIYUP5FfrFpA==", + "type": "package", + "path": "mono.texttemplating/2.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net472/Mono.TextTemplating.dll", + "lib/netcoreapp2.1/Mono.TextTemplating.dll", + "lib/netcoreapp3.1/Mono.TextTemplating.dll", + "lib/netstandard2.0/Mono.TextTemplating.dll", + "mono.texttemplating.2.3.1.nupkg.sha512", + "mono.texttemplating.nuspec", + "readme.md" + ] + }, + "Newtonsoft.Json/13.0.3": { + "sha512": "HrC5BXdl00IP9zeV+0Z848QWPAoCr9P3bDEZguI+gkLcBKAOxix/tLEAAHC+UvDNPv4a2d18lOReHMOagPa+zQ==", + "type": "package", + "path": "newtonsoft.json/13.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.md", + "README.md", + "lib/net20/Newtonsoft.Json.dll", + "lib/net20/Newtonsoft.Json.xml", + "lib/net35/Newtonsoft.Json.dll", + "lib/net35/Newtonsoft.Json.xml", + "lib/net40/Newtonsoft.Json.dll", + "lib/net40/Newtonsoft.Json.xml", + "lib/net45/Newtonsoft.Json.dll", + "lib/net45/Newtonsoft.Json.xml", + "lib/net6.0/Newtonsoft.Json.dll", + "lib/net6.0/Newtonsoft.Json.xml", + "lib/netstandard1.0/Newtonsoft.Json.dll", + "lib/netstandard1.0/Newtonsoft.Json.xml", + "lib/netstandard1.3/Newtonsoft.Json.dll", + "lib/netstandard1.3/Newtonsoft.Json.xml", + "lib/netstandard2.0/Newtonsoft.Json.dll", + "lib/netstandard2.0/Newtonsoft.Json.xml", + "newtonsoft.json.13.0.3.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "Npgsql/8.0.5": { + "sha512": "zRG5V8cyeZLpzJlKzFKjEwkRMYIYnHWJvEor2lWXeccS2E1G2nIWYYhnukB51iz5XsWSVEtqg3AxTWM0QJ6vfg==", + "type": "package", + "path": "npgsql/8.0.5", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net6.0/Npgsql.dll", + "lib/net6.0/Npgsql.xml", + "lib/net7.0/Npgsql.dll", + "lib/net7.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "lib/netstandard2.0/Npgsql.dll", + "lib/netstandard2.0/Npgsql.xml", + "lib/netstandard2.1/Npgsql.dll", + "lib/netstandard2.1/Npgsql.xml", + "npgsql.8.0.5.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/8.0.10": { + "sha512": "gFPl9Dmxih7Yi4tZ3bITzZFzbxFMBx04gqTqcjoL2r5VEW+O2TA5UVw/wm/XW26NAJ7sg59Je0+9QrwiZt6MPQ==", + "type": "package", + "path": "npgsql.entityframeworkcore.postgresql/8.0.10", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", + "npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512", + "npgsql.entityframeworkcore.postgresql.nuspec", + "postgresql.png" + ] + }, + "NuGet.Common/6.11.0": { + "sha512": "T3bCiKUSx8wdYpcqr6Dbx93zAqFp689ee/oa1tH22XI/xl7EUzQ7No/WlE1FUqvEX1+Mqar3wRNAn2O/yxo94g==", + "type": "package", + "path": "nuget.common/6.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net472/NuGet.Common.dll", + "lib/netstandard2.0/NuGet.Common.dll", + "nuget.common.6.11.0.nupkg.sha512", + "nuget.common.nuspec" + ] + }, + "NuGet.Configuration/6.11.0": { + "sha512": "73QprQqmumFrv3Ooi4YWpRYeBj8jZy9gNdOaOCp4pPInpt41SJJAz/aP4je+StwIJvi5HsgPPecLKekDIQEwKg==", + "type": "package", + "path": "nuget.configuration/6.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net472/NuGet.Configuration.dll", + "lib/netstandard2.0/NuGet.Configuration.dll", + "nuget.configuration.6.11.0.nupkg.sha512", + "nuget.configuration.nuspec" + ] + }, + "NuGet.DependencyResolver.Core/6.11.0": { + "sha512": "SoiPKPooA+IF+iCsX1ykwi3M0e+yBL34QnwIP3ujhQEn1dhlP/N1XsYAnKkJPxV15EZCahuuS4HtnBsZx+CHKA==", + "type": "package", + "path": "nuget.dependencyresolver.core/6.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net472/NuGet.DependencyResolver.Core.dll", + "lib/net5.0/NuGet.DependencyResolver.Core.dll", + "lib/netstandard2.0/NuGet.DependencyResolver.Core.dll", + "nuget.dependencyresolver.core.6.11.0.nupkg.sha512", + "nuget.dependencyresolver.core.nuspec" + ] + }, + "NuGet.Frameworks/6.11.0": { + "sha512": "Ew/mrfmLF5phsprysHbph2+tdZ10HMHAURavsr/Kx1WhybDG4vmGuoNLbbZMZOqnPRdpyCTc42OKWLoedxpYtA==", + "type": "package", + "path": "nuget.frameworks/6.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net472/NuGet.Frameworks.dll", + "lib/netstandard2.0/NuGet.Frameworks.dll", + "nuget.frameworks.6.11.0.nupkg.sha512", + "nuget.frameworks.nuspec" + ] + }, + "NuGet.LibraryModel/6.11.0": { + "sha512": "KUV2eeMICMb24OPcICn/wgncNzt6+W+lmFVO5eorTdo1qV4WXxYGyG1NTPiCY+Nrv5H/Ilnv9UaUM2ozqSmnjw==", + "type": "package", + "path": "nuget.librarymodel/6.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net472/NuGet.LibraryModel.dll", + "lib/netstandard2.0/NuGet.LibraryModel.dll", + "nuget.librarymodel.6.11.0.nupkg.sha512", + "nuget.librarymodel.nuspec" + ] + }, + "NuGet.Packaging/6.11.0": { + "sha512": "VmUv2LedVuPY1tfNybORO2I9IuqOzeV7I5JBD+PwNvJq2bAqovi4FCw2cYI0g+kjOJXBN2lAJfrfnqtUOlVJdQ==", + "type": "package", + "path": "nuget.packaging/6.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net472/NuGet.Packaging.dll", + "lib/net5.0/NuGet.Packaging.dll", + "lib/netstandard2.0/NuGet.Packaging.dll", + "nuget.packaging.6.11.0.nupkg.sha512", + "nuget.packaging.nuspec" + ] + }, + "NuGet.ProjectModel/6.11.0": { + "sha512": "g0KtmDH6fas97WsN73yV2h1F5JT9o6+Y0wlPK+ij9YLKaAXaF6+1HkSaQMMJ+xh9/jCJG9G6nau6InOlb1g48g==", + "type": "package", + "path": "nuget.projectmodel/6.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net472/NuGet.ProjectModel.dll", + "lib/net5.0/NuGet.ProjectModel.dll", + "lib/netstandard2.0/NuGet.ProjectModel.dll", + "nuget.projectmodel.6.11.0.nupkg.sha512", + "nuget.projectmodel.nuspec" + ] + }, + "NuGet.Protocol/6.11.0": { + "sha512": "p5B8oNLLnGhUfMbcS16aRiegj11pD6k+LELyRBqvNFR/pE3yR1XT+g1XS33ME9wvoU+xbCGnl4Grztt1jHPinw==", + "type": "package", + "path": "nuget.protocol/6.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net472/NuGet.Protocol.dll", + "lib/net5.0/NuGet.Protocol.dll", + "lib/netstandard2.0/NuGet.Protocol.dll", + "nuget.protocol.6.11.0.nupkg.sha512", + "nuget.protocol.nuspec" + ] + }, + "NuGet.Versioning/6.11.0": { + "sha512": "v/GGlIj2dd7svplFmASWEueu62veKW0MrMtBaZ7QG8aJTSGv2yE+pgUGhXRcQ4nxNOEq/wLBrz1vkth/1SND7A==", + "type": "package", + "path": "nuget.versioning/6.11.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net472/NuGet.Versioning.dll", + "lib/netstandard2.0/NuGet.Versioning.dll", + "nuget.versioning.6.11.0.nupkg.sha512", + "nuget.versioning.nuspec" + ] + }, "Swashbuckle.AspNetCore/6.4.0": { "sha512": "eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", "type": "package", @@ -508,12 +6923,1242 @@ "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512", "swashbuckle.aspnetcore.swaggerui.nuspec" ] + }, + "System.CodeDom/5.0.0": { + "sha512": "JPJArwA1kdj8qDAkY2XGjSWoYnqiM7q/3yRNkt6n28Mnn95MuEGkZXUbPBf7qc3IjwrGY5ttQon7yqHZyQJmOQ==", + "type": "package", + "path": "system.codedom/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.CodeDom.dll", + "lib/net461/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "ref/net461/System.CodeDom.dll", + "ref/net461/System.CodeDom.xml", + "ref/netstandard2.0/System.CodeDom.dll", + "ref/netstandard2.0/System.CodeDom.xml", + "system.codedom.5.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Collections.Immutable/7.0.0": { + "sha512": "dQPcs0U1IKnBdRDBkrCTi1FoajSTBzLcVTpjO4MBCMC7f4pDOIPzgBoX8JjG7X6uZRJ8EBxsi8+DR1JuwjnzOQ==", + "type": "package", + "path": "system.collections.immutable/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Collections.Immutable.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Collections.Immutable.targets", + "lib/net462/System.Collections.Immutable.dll", + "lib/net462/System.Collections.Immutable.xml", + "lib/net6.0/System.Collections.Immutable.dll", + "lib/net6.0/System.Collections.Immutable.xml", + "lib/net7.0/System.Collections.Immutable.dll", + "lib/net7.0/System.Collections.Immutable.xml", + "lib/netstandard2.0/System.Collections.Immutable.dll", + "lib/netstandard2.0/System.Collections.Immutable.xml", + "system.collections.immutable.7.0.0.nupkg.sha512", + "system.collections.immutable.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition/7.0.0": { + "sha512": "tRwgcAkDd85O8Aq6zHDANzQaq380cek9lbMg5Qma46u5BZXq/G+XvIYmu+UI+BIIZ9zssXLYrkTykEqxxvhcmg==", + "type": "package", + "path": "system.composition/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.targets", + "lib/net461/_._", + "lib/netcoreapp2.0/_._", + "lib/netstandard2.0/_._", + "system.composition.7.0.0.nupkg.sha512", + "system.composition.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.AttributedModel/7.0.0": { + "sha512": "2QzClqjElKxgI1jK1Jztnq44/8DmSuTSGGahXqQ4TdEV0h9s2KikQZIgcEqVzR7OuWDFPGLHIprBJGQEPr8fAQ==", + "type": "package", + "path": "system.composition.attributedmodel/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.AttributedModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets", + "lib/net462/System.Composition.AttributedModel.dll", + "lib/net462/System.Composition.AttributedModel.xml", + "lib/net6.0/System.Composition.AttributedModel.dll", + "lib/net6.0/System.Composition.AttributedModel.xml", + "lib/net7.0/System.Composition.AttributedModel.dll", + "lib/net7.0/System.Composition.AttributedModel.xml", + "lib/netstandard2.0/System.Composition.AttributedModel.dll", + "lib/netstandard2.0/System.Composition.AttributedModel.xml", + "system.composition.attributedmodel.7.0.0.nupkg.sha512", + "system.composition.attributedmodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Convention/7.0.0": { + "sha512": "IMhTlpCs4HmlD8B+J8/kWfwX7vrBBOs6xyjSTzBlYSs7W4OET4tlkR/Sg9NG8jkdJH9Mymq0qGdYS1VPqRTBnQ==", + "type": "package", + "path": "system.composition.convention/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Convention.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets", + "lib/net462/System.Composition.Convention.dll", + "lib/net462/System.Composition.Convention.xml", + "lib/net6.0/System.Composition.Convention.dll", + "lib/net6.0/System.Composition.Convention.xml", + "lib/net7.0/System.Composition.Convention.dll", + "lib/net7.0/System.Composition.Convention.xml", + "lib/netstandard2.0/System.Composition.Convention.dll", + "lib/netstandard2.0/System.Composition.Convention.xml", + "system.composition.convention.7.0.0.nupkg.sha512", + "system.composition.convention.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Hosting/7.0.0": { + "sha512": "eB6gwN9S+54jCTBJ5bpwMOVerKeUfGGTYCzz3QgDr1P55Gg/Wb27ShfPIhLMjmZ3MoAKu8uUSv6fcCdYJTN7Bg==", + "type": "package", + "path": "system.composition.hosting/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Hosting.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets", + "lib/net462/System.Composition.Hosting.dll", + "lib/net462/System.Composition.Hosting.xml", + "lib/net6.0/System.Composition.Hosting.dll", + "lib/net6.0/System.Composition.Hosting.xml", + "lib/net7.0/System.Composition.Hosting.dll", + "lib/net7.0/System.Composition.Hosting.xml", + "lib/netstandard2.0/System.Composition.Hosting.dll", + "lib/netstandard2.0/System.Composition.Hosting.xml", + "system.composition.hosting.7.0.0.nupkg.sha512", + "system.composition.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Runtime/7.0.0": { + "sha512": "aZJ1Zr5Txe925rbo4742XifEyW0MIni1eiUebmcrP3HwLXZ3IbXUj4MFMUH/RmnJOAQiS401leg/2Sz1MkApDw==", + "type": "package", + "path": "system.composition.runtime/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Runtime.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets", + "lib/net462/System.Composition.Runtime.dll", + "lib/net462/System.Composition.Runtime.xml", + "lib/net6.0/System.Composition.Runtime.dll", + "lib/net6.0/System.Composition.Runtime.xml", + "lib/net7.0/System.Composition.Runtime.dll", + "lib/net7.0/System.Composition.Runtime.xml", + "lib/netstandard2.0/System.Composition.Runtime.dll", + "lib/netstandard2.0/System.Composition.Runtime.xml", + "system.composition.runtime.7.0.0.nupkg.sha512", + "system.composition.runtime.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.TypedParts/7.0.0": { + "sha512": "ZK0KNPfbtxVceTwh+oHNGUOYV2WNOHReX2AXipuvkURC7s/jPwoWfsu3SnDBDgofqbiWr96geofdQ2erm/KTHg==", + "type": "package", + "path": "system.composition.typedparts/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.TypedParts.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets", + "lib/net462/System.Composition.TypedParts.dll", + "lib/net462/System.Composition.TypedParts.xml", + "lib/net6.0/System.Composition.TypedParts.dll", + "lib/net6.0/System.Composition.TypedParts.xml", + "lib/net7.0/System.Composition.TypedParts.dll", + "lib/net7.0/System.Composition.TypedParts.xml", + "lib/netstandard2.0/System.Composition.TypedParts.dll", + "lib/netstandard2.0/System.Composition.TypedParts.xml", + "system.composition.typedparts.7.0.0.nupkg.sha512", + "system.composition.typedparts.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Configuration.ConfigurationManager/7.0.0": { + "sha512": "WvRUdlL1lB0dTRZSs5XcQOd5q9MYNk90GkbmRmiCvRHThWiojkpGqWdmEDJdXyHbxG/BhE5hmVbMfRLXW9FJVA==", + "type": "package", + "path": "system.configuration.configurationmanager/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Configuration.ConfigurationManager.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "lib/net462/System.Configuration.ConfigurationManager.dll", + "lib/net462/System.Configuration.ConfigurationManager.xml", + "lib/net6.0/System.Configuration.ConfigurationManager.dll", + "lib/net6.0/System.Configuration.ConfigurationManager.xml", + "lib/net7.0/System.Configuration.ConfigurationManager.dll", + "lib/net7.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.7.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Data.DataSetExtensions/4.5.0": { + "sha512": "221clPs1445HkTBZPL+K9sDBdJRB8UN8rgjO3ztB0CQ26z//fmJXtlsr6whGatscsKGBrhJl5bwJuKSA8mwFOw==", + "type": "package", + "path": "system.data.datasetextensions/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net45/_._", + "lib/netstandard2.0/System.Data.DataSetExtensions.dll", + "ref/net45/_._", + "ref/netstandard2.0/System.Data.DataSetExtensions.dll", + "system.data.datasetextensions.4.5.0.nupkg.sha512", + "system.data.datasetextensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Diagnostics.DiagnosticSource/6.0.1": { + "sha512": "KiLYDu2k2J82Q9BJpWiuQqCkFjRBWVq4jDzKKWawVi9KWzyD0XG3cmfX0vqTQlL14Wi9EufJrbL0+KCLTbqWiQ==", + "type": "package", + "path": "system.diagnostics.diagnosticsource/6.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Diagnostics.DiagnosticSource.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Diagnostics.DiagnosticSource.dll", + "lib/net461/System.Diagnostics.DiagnosticSource.xml", + "lib/net5.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net5.0/System.Diagnostics.DiagnosticSource.xml", + "lib/net6.0/System.Diagnostics.DiagnosticSource.dll", + "lib/net6.0/System.Diagnostics.DiagnosticSource.xml", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.dll", + "lib/netstandard2.0/System.Diagnostics.DiagnosticSource.xml", + "system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512", + "system.diagnostics.diagnosticsource.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/7.0.0": { + "sha512": "eUDP47obqQm3SFJfP6z+Fx2nJ4KKTQbXB4Q9Uesnzw9SbYdhjyoGXuvDn/gEmFY6N5Z3bFFbpAQGA7m6hrYJCw==", + "type": "package", + "path": "system.diagnostics.eventlog/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "lib/net462/System.Diagnostics.EventLog.dll", + "lib/net462/System.Diagnostics.EventLog.xml", + "lib/net6.0/System.Diagnostics.EventLog.dll", + "lib/net6.0/System.Diagnostics.EventLog.xml", + "lib/net7.0/System.Diagnostics.EventLog.dll", + "lib/net7.0/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net6.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net7.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.7.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Drawing.Common/7.0.0": { + "sha512": "KIX+oBU38pxkKPxvLcLfIkOV5Ien8ReN78wro7OF5/erwcmortzeFx+iBswlh2Vz6gVne0khocQudGwaO1Ey6A==", + "type": "package", + "path": "system.drawing.common/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Drawing.Common.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Drawing.Common.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Drawing.Common.dll", + "lib/net462/System.Drawing.Common.xml", + "lib/net6.0/System.Drawing.Common.dll", + "lib/net6.0/System.Drawing.Common.xml", + "lib/net7.0/System.Drawing.Common.dll", + "lib/net7.0/System.Drawing.Common.xml", + "lib/netstandard2.0/System.Drawing.Common.dll", + "lib/netstandard2.0/System.Drawing.Common.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Drawing.Common.dll", + "runtimes/win/lib/net6.0/System.Drawing.Common.xml", + "runtimes/win/lib/net7.0/System.Drawing.Common.dll", + "runtimes/win/lib/net7.0/System.Drawing.Common.xml", + "system.drawing.common.7.0.0.nupkg.sha512", + "system.drawing.common.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Formats.Asn1/8.0.1": { + "sha512": "XqKba7Mm/koKSjKMfW82olQdmfbI5yqeoLV/tidRp7fbh5rmHAQ5raDI/7SU0swTzv+jgqtUGkzmFxuUg0it1A==", + "type": "package", + "path": "system.formats.asn1/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Formats.Asn1.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Formats.Asn1.targets", + "lib/net462/System.Formats.Asn1.dll", + "lib/net462/System.Formats.Asn1.xml", + "lib/net6.0/System.Formats.Asn1.dll", + "lib/net6.0/System.Formats.Asn1.xml", + "lib/net7.0/System.Formats.Asn1.dll", + "lib/net7.0/System.Formats.Asn1.xml", + "lib/net8.0/System.Formats.Asn1.dll", + "lib/net8.0/System.Formats.Asn1.xml", + "lib/netstandard2.0/System.Formats.Asn1.dll", + "lib/netstandard2.0/System.Formats.Asn1.xml", + "system.formats.asn1.8.0.1.nupkg.sha512", + "system.formats.asn1.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IdentityModel.Tokens.Jwt/8.3.1": { + "sha512": "SxdCv+SmnKOhUvryKvrpWJnkuVHj3hU8pUwj7R8zthi73TlBUlMyavon9qfuJsjnqY+L7jusp3Zo0fWFX6mwtw==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/8.3.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net462/System.IdentityModel.Tokens.Jwt.dll", + "lib/net462/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/System.IdentityModel.Tokens.Jwt.xml", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net6.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/net8.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net8.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/net9.0/System.IdentityModel.Tokens.Jwt.xml", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll", + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.xml", + "system.identitymodel.tokens.jwt.8.3.1.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.IO.FileSystem.AccessControl/5.0.0": { + "sha512": "SxHB3nuNrpptVk+vZ/F+7OHEpoHUIKKMl02bUmYHQr1r+glbZQxs7pRtsf4ENO29TVm2TH3AEeep2fJcy92oYw==", + "type": "package", + "path": "system.io.filesystem.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.dll", + "lib/net461/System.IO.FileSystem.AccessControl.xml", + "lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "ref/net46/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.dll", + "ref/net461/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard1.3/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/de/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/es/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/fr/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/it/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ja/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ko/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/ru/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.IO.FileSystem.AccessControl.xml", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "ref/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/net46/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/net461/System.IO.FileSystem.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.dll", + "runtimes/win/lib/netstandard2.0/System.IO.FileSystem.AccessControl.xml", + "system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "system.io.filesystem.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IO.Pipelines/7.0.0": { + "sha512": "jRn6JYnNPW6xgQazROBLSfpdoczRw694vO5kKvMcNnpXuolEixUyw6IBuBs2Y2mlSX/LdLvyyWmfXhaI3ND1Yg==", + "type": "package", + "path": "system.io.pipelines/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.IO.Pipelines.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.IO.Pipelines.targets", + "lib/net462/System.IO.Pipelines.dll", + "lib/net462/System.IO.Pipelines.xml", + "lib/net6.0/System.IO.Pipelines.dll", + "lib/net6.0/System.IO.Pipelines.xml", + "lib/net7.0/System.IO.Pipelines.dll", + "lib/net7.0/System.IO.Pipelines.xml", + "lib/netstandard2.0/System.IO.Pipelines.dll", + "lib/netstandard2.0/System.IO.Pipelines.xml", + "system.io.pipelines.7.0.0.nupkg.sha512", + "system.io.pipelines.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Memory/4.5.4": { + "sha512": "1MbJTHS1lZ4bS4FmsJjnuGJOu88ZzTT2rLvrhW7Ygic+pC0NWA+3hgAen0HRdsocuQXCkUTdFn9yHJJhsijDXw==", + "type": "package", + "path": "system.memory/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.Memory.dll", + "lib/net461/System.Memory.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.4.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Memory.Data/1.0.2": { + "sha512": "JGkzeqgBsiZwKJZ1IxPNsDFZDhUvuEdX8L8BDC8N3KOj+6zMcNU28CNN59TpZE/VJYy9cP+5M+sbxtWJx3/xtw==", + "type": "package", + "path": "system.memory.data/1.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "CHANGELOG.md", + "DotNetPackageIcon.png", + "README.md", + "lib/net461/System.Memory.Data.dll", + "lib/net461/System.Memory.Data.xml", + "lib/netstandard2.0/System.Memory.Data.dll", + "lib/netstandard2.0/System.Memory.Data.xml", + "system.memory.data.1.0.2.nupkg.sha512", + "system.memory.data.nuspec" + ] + }, + "System.Numerics.Vectors/4.5.0": { + "sha512": "QQTlPTl06J/iiDbJCiepZ4H//BVraReU4O4EoRw1U02H5TLUIT7xn3GnDp9AXPSlJUDyFs4uWjWafNX6WrAojQ==", + "type": "package", + "path": "system.numerics.vectors/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Numerics.Vectors.dll", + "lib/net46/System.Numerics.Vectors.xml", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.0/System.Numerics.Vectors.dll", + "lib/netstandard1.0/System.Numerics.Vectors.xml", + "lib/netstandard2.0/System.Numerics.Vectors.dll", + "lib/netstandard2.0/System.Numerics.Vectors.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Numerics.Vectors.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/System.Numerics.Vectors.dll", + "ref/net45/System.Numerics.Vectors.xml", + "ref/net46/System.Numerics.Vectors.dll", + "ref/net46/System.Numerics.Vectors.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/System.Numerics.Vectors.dll", + "ref/netstandard1.0/System.Numerics.Vectors.xml", + "ref/netstandard2.0/System.Numerics.Vectors.dll", + "ref/netstandard2.0/System.Numerics.Vectors.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.numerics.vectors.4.5.0.nupkg.sha512", + "system.numerics.vectors.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Reflection.Metadata/7.0.0": { + "sha512": "MclTG61lsD9sYdpNz9xsKBzjsmsfCtcMZYXz/IUr2zlhaTaABonlr1ESeompTgM+Xk+IwtGYU7/voh3YWB/fWw==", + "type": "package", + "path": "system.reflection.metadata/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Reflection.Metadata.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Reflection.Metadata.targets", + "lib/net462/System.Reflection.Metadata.dll", + "lib/net462/System.Reflection.Metadata.xml", + "lib/net6.0/System.Reflection.Metadata.dll", + "lib/net6.0/System.Reflection.Metadata.xml", + "lib/net7.0/System.Reflection.Metadata.dll", + "lib/net7.0/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "system.reflection.metadata.7.0.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Reflection.MetadataLoadContext/7.0.0": { + "sha512": "z9PvtMJra5hK8n+g0wmPtaG7HQRZpTmIPRw5Z0LEemlcdQMHuTD5D7OAY/fZuuz1L9db++QOcDF0gJTLpbMtZQ==", + "type": "package", + "path": "system.reflection.metadataloadcontext/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Reflection.MetadataLoadContext.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Reflection.MetadataLoadContext.targets", + "lib/net462/System.Reflection.MetadataLoadContext.dll", + "lib/net462/System.Reflection.MetadataLoadContext.xml", + "lib/net6.0/System.Reflection.MetadataLoadContext.dll", + "lib/net6.0/System.Reflection.MetadataLoadContext.xml", + "lib/net7.0/System.Reflection.MetadataLoadContext.dll", + "lib/net7.0/System.Reflection.MetadataLoadContext.xml", + "lib/netstandard2.0/System.Reflection.MetadataLoadContext.dll", + "lib/netstandard2.0/System.Reflection.MetadataLoadContext.xml", + "system.reflection.metadataloadcontext.7.0.0.nupkg.sha512", + "system.reflection.metadataloadcontext.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.Caching/6.0.0": { + "sha512": "E0e03kUp5X2k+UAoVl6efmI7uU7JRBWi5EIdlQ7cr0NpBGjHG4fWII35PgsBY9T4fJQ8E4QPsL0rKksU9gcL5A==", + "type": "package", + "path": "system.runtime.caching/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.Caching.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/_._", + "lib/net6.0/System.Runtime.Caching.dll", + "lib/net6.0/System.Runtime.Caching.xml", + "lib/netcoreapp3.1/System.Runtime.Caching.dll", + "lib/netcoreapp3.1/System.Runtime.Caching.xml", + "lib/netstandard2.0/System.Runtime.Caching.dll", + "lib/netstandard2.0/System.Runtime.Caching.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/_._", + "runtimes/win/lib/net6.0/System.Runtime.Caching.dll", + "runtimes/win/lib/net6.0/System.Runtime.Caching.xml", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.dll", + "runtimes/win/lib/netcoreapp3.1/System.Runtime.Caching.xml", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.dll", + "runtimes/win/lib/netstandard2.0/System.Runtime.Caching.xml", + "system.runtime.caching.6.0.0.nupkg.sha512", + "system.runtime.caching.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": { + "sha512": "/iUeP3tq1S0XdNNoMz5C9twLSrM/TH+qElHkXWaPvuNOt+99G75NrV0OS2EqHx5wMN7popYjpc8oTjC1y16DLg==", + "type": "package", + "path": "system.runtime.compilerservices.unsafe/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Runtime.CompilerServices.Unsafe.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net461/System.Runtime.CompilerServices.Unsafe.xml", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/net6.0/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netcoreapp3.1/System.Runtime.CompilerServices.Unsafe.xml", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "lib/netstandard2.0/System.Runtime.CompilerServices.Unsafe.xml", + "system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "system.runtime.compilerservices.unsafe.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.AccessControl/5.0.0": { + "sha512": "dagJ1mHZO3Ani8GH0PHpPEe/oYO+rVdbQjvjJkBRNQkX4t0r1iaeGn8+/ybkSLEan3/slM0t59SVdHzuHf2jmw==", + "type": "package", + "path": "system.security.accesscontrol/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.dll", + "lib/net461/System.Security.AccessControl.xml", + "lib/netstandard1.3/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.dll", + "lib/netstandard2.0/System.Security.AccessControl.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.dll", + "ref/net461/System.Security.AccessControl.xml", + "ref/netstandard1.3/System.Security.AccessControl.dll", + "ref/netstandard1.3/System.Security.AccessControl.xml", + "ref/netstandard1.3/de/System.Security.AccessControl.xml", + "ref/netstandard1.3/es/System.Security.AccessControl.xml", + "ref/netstandard1.3/fr/System.Security.AccessControl.xml", + "ref/netstandard1.3/it/System.Security.AccessControl.xml", + "ref/netstandard1.3/ja/System.Security.AccessControl.xml", + "ref/netstandard1.3/ko/System.Security.AccessControl.xml", + "ref/netstandard1.3/ru/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hans/System.Security.AccessControl.xml", + "ref/netstandard1.3/zh-hant/System.Security.AccessControl.xml", + "ref/netstandard2.0/System.Security.AccessControl.dll", + "ref/netstandard2.0/System.Security.AccessControl.xml", + "ref/uap10.0.16299/_._", + "runtimes/win/lib/net46/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.dll", + "runtimes/win/lib/net461/System.Security.AccessControl.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.AccessControl.xml", + "runtimes/win/lib/netstandard1.3/System.Security.AccessControl.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.accesscontrol.5.0.0.nupkg.sha512", + "system.security.accesscontrol.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Cng/5.0.0": { + "sha512": "jIMXsKn94T9JY7PvPq/tMfqa6GAaHpElRDpmG+SuL+D3+sTw2M8VhnibKnN8Tq+4JqbPJ/f+BwtLeDMEnzAvRg==", + "type": "package", + "path": "system.security.cryptography.cng/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.xml", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.xml", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.xml", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.xml", + "lib/netstandard2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.1/System.Security.Cryptography.Cng.xml", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/netstandard2.1/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.1/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp3.0/System.Security.Cryptography.Cng.xml", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.5.0.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Pkcs/6.0.4": { + "sha512": "LGbXi1oUJ9QgCNGXRO9ndzBL/GZgANcsURpMhNR8uO+rca47SZmciS3RSQUvlQRwK3QHZSHNOXzoMUASKA+Anw==", + "type": "package", + "path": "system.security.cryptography.pkcs/6.0.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/net461/System.Security.Cryptography.Pkcs.dll", + "lib/net461/System.Security.Cryptography.Pkcs.xml", + "lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll", + "lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netcoreapp3.1/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/netstandard2.1/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.6.0.4.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/7.0.0": { + "sha512": "xSPiLNlHT6wAHtugASbKAJwV5GVqQK351crnILAucUioFqqieDN79evO1rku1ckt/GfjIn+b17UaSskoY03JuA==", + "type": "package", + "path": "system.security.cryptography.protecteddata/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.ProtectedData.targets", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net462/System.Security.Cryptography.ProtectedData.dll", + "lib/net462/System.Security.Cryptography.ProtectedData.xml", + "lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net7.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net7.0/System.Security.Cryptography.ProtectedData.xml", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.dll", + "lib/netstandard2.0/System.Security.Cryptography.ProtectedData.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net6.0/System.Security.Cryptography.ProtectedData.xml", + "runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.dll", + "runtimes/win/lib/net7.0/System.Security.Cryptography.ProtectedData.xml", + "system.security.cryptography.protecteddata.7.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/7.0.0": { + "sha512": "Vmp0iRmCEno9BWiskOW5pxJ3d9n+jUqKxvX4GhLwFhnQaySZmBN2FuC0N5gjFHgyFMUjC5sfIJ8KZfoJwkcMmA==", + "type": "package", + "path": "system.security.permissions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Permissions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "lib/net462/System.Security.Permissions.dll", + "lib/net462/System.Security.Permissions.xml", + "lib/net6.0/System.Security.Permissions.dll", + "lib/net6.0/System.Security.Permissions.xml", + "lib/net7.0/System.Security.Permissions.dll", + "lib/net7.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.7.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Principal.Windows/5.0.0": { + "sha512": "t0MGLukB5WAVU9bO3MGzvlGnyJPgUlcwerXn1kzBRjwLKixT96XV0Uza41W49gVd8zEMFu9vQEFlv0IOrytICA==", + "type": "package", + "path": "system.security.principal.windows/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net46/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.dll", + "lib/net461/System.Security.Principal.Windows.xml", + "lib/netstandard1.3/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.dll", + "lib/netstandard2.0/System.Security.Principal.Windows.xml", + "lib/uap10.0.16299/_._", + "ref/net46/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.dll", + "ref/net461/System.Security.Principal.Windows.xml", + "ref/netcoreapp3.0/System.Security.Principal.Windows.dll", + "ref/netcoreapp3.0/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/System.Security.Principal.Windows.dll", + "ref/netstandard1.3/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/de/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/es/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/fr/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/it/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ja/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ko/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/ru/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hans/System.Security.Principal.Windows.xml", + "ref/netstandard1.3/zh-hant/System.Security.Principal.Windows.xml", + "ref/netstandard2.0/System.Security.Principal.Windows.dll", + "ref/netstandard2.0/System.Security.Principal.Windows.xml", + "ref/uap10.0.16299/_._", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/unix/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/net46/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.dll", + "runtimes/win/lib/net461/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Principal.Windows.xml", + "runtimes/win/lib/netstandard1.3/System.Security.Principal.Windows.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.principal.windows.5.0.0.nupkg.sha512", + "system.security.principal.windows.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encoding.CodePages/6.0.0": { + "sha512": "ZFCILZuOvtKPauZ/j/swhvw68ZRi9ATCfvGbk1QfydmcXBkIWecWKn/250UH7rahZ5OoDBaiAudJtPvLwzw85A==", + "type": "package", + "path": "system.text.encoding.codepages/6.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/netcoreapp2.0/System.Text.Encoding.CodePages.targets", + "buildTransitive/netcoreapp3.1/_._", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Text.Encoding.CodePages.dll", + "lib/net461/System.Text.Encoding.CodePages.xml", + "lib/net6.0/System.Text.Encoding.CodePages.dll", + "lib/net6.0/System.Text.Encoding.CodePages.xml", + "lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net461/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/net6.0/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netcoreapp3.1/System.Text.Encoding.CodePages.xml", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.dll", + "runtimes/win/lib/netstandard2.0/System.Text.Encoding.CodePages.xml", + "system.text.encoding.codepages.6.0.0.nupkg.sha512", + "system.text.encoding.codepages.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Encodings.Web/7.0.0": { + "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", + "type": "package", + "path": "system.text.encodings.web/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/net7.0/System.Text.Encodings.Web.dll", + "lib/net7.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.7.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/7.0.3": { + "sha512": "AyjhwXN1zTFeIibHimfJn6eAsZ7rTBib79JQpzg8WAuR/HKDu9JGNHTuu3nbbXQ/bgI+U4z6HtZmCHNXB1QXrQ==", + "type": "package", + "path": "system.text.json/7.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net6.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/net7.0/System.Text.Json.dll", + "lib/net7.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.7.0.3.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Channels/7.0.0": { + "sha512": "qmeeYNROMsONF6ndEZcIQ+VxR4Q/TX/7uIVLJqtwIWL7dDWeh0l1UIqgo4wYyjG//5lUNhwkLDSFl+pAWO6oiA==", + "type": "package", + "path": "system.threading.channels/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Threading.Channels.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Threading.Channels.targets", + "lib/net462/System.Threading.Channels.dll", + "lib/net462/System.Threading.Channels.xml", + "lib/net6.0/System.Threading.Channels.dll", + "lib/net6.0/System.Threading.Channels.xml", + "lib/net7.0/System.Threading.Channels.dll", + "lib/net7.0/System.Threading.Channels.xml", + "lib/netstandard2.0/System.Threading.Channels.dll", + "lib/netstandard2.0/System.Threading.Channels.xml", + "lib/netstandard2.1/System.Threading.Channels.dll", + "lib/netstandard2.1/System.Threading.Channels.xml", + "system.threading.channels.7.0.0.nupkg.sha512", + "system.threading.channels.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Tasks.Dataflow/7.0.0": { + "sha512": "BmSJ4b0e2nlplV/RdWVxvH7WECTHACofv06dx/JwOYc0n56eK1jIWdQKNYYsReSO4w8n1QA5stOzSQcfaVBkJg==", + "type": "package", + "path": "system.threading.tasks.dataflow/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Threading.Tasks.Dataflow.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Threading.Tasks.Dataflow.targets", + "lib/net462/System.Threading.Tasks.Dataflow.dll", + "lib/net462/System.Threading.Tasks.Dataflow.xml", + "lib/net6.0/System.Threading.Tasks.Dataflow.dll", + "lib/net6.0/System.Threading.Tasks.Dataflow.xml", + "lib/net7.0/System.Threading.Tasks.Dataflow.dll", + "lib/net7.0/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard2.0/System.Threading.Tasks.Dataflow.xml", + "lib/netstandard2.1/System.Threading.Tasks.Dataflow.dll", + "lib/netstandard2.1/System.Threading.Tasks.Dataflow.xml", + "system.threading.tasks.dataflow.7.0.0.nupkg.sha512", + "system.threading.tasks.dataflow.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Threading.Tasks.Extensions/4.5.4": { + "sha512": "zteT+G8xuGu6mS+mzDzYXbzS7rd3K6Fjb9RiZlYlJPam2/hU7JCBZBVEcywNuR+oZ1ncTvc/cq0faRr3P01OVg==", + "type": "package", + "path": "system.threading.tasks.extensions/4.5.4", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net461/System.Threading.Tasks.Extensions.dll", + "lib/net461/System.Threading.Tasks.Extensions.xml", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard1.0/System.Threading.Tasks.Extensions.xml", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "lib/netstandard2.0/System.Threading.Tasks.Extensions.xml", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.dll", + "lib/portable-net45+win8+wp8+wpa81/System.Threading.Tasks.Extensions.xml", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/netcoreapp2.1/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "system.threading.tasks.extensions.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Windows.Extensions/7.0.0": { + "sha512": "bR4qdCmssMMbo9Fatci49An5B1UaVJZHKNq70PRgzoLYIlitb8Tj7ns/Xt5Pz1CkERiTjcVBDU2y1AVrPBYkaw==", + "type": "package", + "path": "system.windows.extensions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net6.0/System.Windows.Extensions.dll", + "lib/net6.0/System.Windows.Extensions.xml", + "lib/net7.0/System.Windows.Extensions.dll", + "lib/net7.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net6.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net6.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net7.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net7.0/System.Windows.Extensions.xml", + "system.windows.extensions.7.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] } }, "projectFileDependencyGroups": { "net8.0": [ + "Microsoft.AspNetCore.Authentication.JwtBearer >= 8.0.10", + "Microsoft.AspNetCore.Authorization >= 8.0.10", + "Microsoft.EntityFrameworkCore.SqlServer >= 8.0.10", + "Microsoft.EntityFrameworkCore.Tools >= 8.0.10", "Microsoft.VisualStudio.Azure.Containers.Tools.Targets >= 1.19.6", - "Swashbuckle.AspNetCore >= 6.4.0" + "Microsoft.VisualStudio.Web.CodeGeneration.Design >= 8.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL >= 8.0.10", + "Swashbuckle.AspNetCore >= 6.4.0", + "System.IdentityModel.Tokens.Jwt >= 8.3.1" ] }, "packageFolders": { @@ -566,13 +8211,43 @@ "net8.0": { "targetAlias": "net8.0", "dependencies": { + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Microsoft.AspNetCore.Authorization": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Microsoft.EntityFrameworkCore.SqlServer": { + "target": "Package", + "version": "[8.0.10, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[8.0.10, )" + }, "Microsoft.VisualStudio.Azure.Containers.Tools.Targets": { "target": "Package", "version": "[1.19.6, )" }, + "Microsoft.VisualStudio.Web.CodeGeneration.Design": { + "target": "Package", + "version": "[8.0.7, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[8.0.10, )" + }, "Swashbuckle.AspNetCore": { "target": "Package", "version": "[6.4.0, )" + }, + "System.IdentityModel.Tokens.Jwt": { + "target": "Package", + "version": "[8.3.1, )" } }, "imports": [ diff --git a/TCM_API/TCM_API/obj/project.nuget.cache b/TCM_API/TCM_API/obj/project.nuget.cache index 87f1423..86c07bd 100644 --- a/TCM_API/TCM_API/obj/project.nuget.cache +++ b/TCM_API/TCM_API/obj/project.nuget.cache @@ -1,16 +1,177 @@ { "version": 2, - "dgSpecHash": "1+cmBZzmwIgdStUVpLUP8y9VaQlg+olZk2AFmFA8oM3gaRpZOF+Q+3Qq/vwo6kZaq4TqEMGHxU78jdxQNzpNyg==", + "dgSpecHash": "pjrSnu7TMBKM/b3/FIEaHtoaS8bw2kXxo9gHwJ8SKLM4NTHvux8bYvEG0GPlfOhYj/9ze/jlTpnD3tr2k4snhQ==", "success": true, "projectFilePath": "D:\\Code\\Project\\TCM\\Backend\\TCM_API\\TCM_API\\TCM_API.csproj", "expectedPackageFiles": [ + "C:\\Users\\Leo\\.nuget\\packages\\azure.core\\1.35.0\\azure.core.1.35.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\azure.identity\\1.10.3\\azure.identity.1.10.3.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer\\2.14.1\\humanizer.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.af\\2.14.1\\humanizer.core.af.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.ar\\2.14.1\\humanizer.core.ar.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.az\\2.14.1\\humanizer.core.az.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.bg\\2.14.1\\humanizer.core.bg.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.bn-bd\\2.14.1\\humanizer.core.bn-bd.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.cs\\2.14.1\\humanizer.core.cs.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.da\\2.14.1\\humanizer.core.da.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.de\\2.14.1\\humanizer.core.de.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.el\\2.14.1\\humanizer.core.el.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.es\\2.14.1\\humanizer.core.es.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.fa\\2.14.1\\humanizer.core.fa.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.fi-fi\\2.14.1\\humanizer.core.fi-fi.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.fr\\2.14.1\\humanizer.core.fr.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.fr-be\\2.14.1\\humanizer.core.fr-be.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.he\\2.14.1\\humanizer.core.he.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.hr\\2.14.1\\humanizer.core.hr.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.hu\\2.14.1\\humanizer.core.hu.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.hy\\2.14.1\\humanizer.core.hy.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.id\\2.14.1\\humanizer.core.id.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.is\\2.14.1\\humanizer.core.is.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.it\\2.14.1\\humanizer.core.it.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.ja\\2.14.1\\humanizer.core.ja.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.ko-kr\\2.14.1\\humanizer.core.ko-kr.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.ku\\2.14.1\\humanizer.core.ku.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.lv\\2.14.1\\humanizer.core.lv.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.ms-my\\2.14.1\\humanizer.core.ms-my.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.mt\\2.14.1\\humanizer.core.mt.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.nb\\2.14.1\\humanizer.core.nb.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.nb-no\\2.14.1\\humanizer.core.nb-no.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.nl\\2.14.1\\humanizer.core.nl.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.pl\\2.14.1\\humanizer.core.pl.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.pt\\2.14.1\\humanizer.core.pt.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.ro\\2.14.1\\humanizer.core.ro.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.ru\\2.14.1\\humanizer.core.ru.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.sk\\2.14.1\\humanizer.core.sk.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.sl\\2.14.1\\humanizer.core.sl.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.sr\\2.14.1\\humanizer.core.sr.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.sr-latn\\2.14.1\\humanizer.core.sr-latn.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.sv\\2.14.1\\humanizer.core.sv.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.th-th\\2.14.1\\humanizer.core.th-th.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.tr\\2.14.1\\humanizer.core.tr.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.uk\\2.14.1\\humanizer.core.uk.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.uz-cyrl-uz\\2.14.1\\humanizer.core.uz-cyrl-uz.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.uz-latn-uz\\2.14.1\\humanizer.core.uz-latn-uz.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.vi\\2.14.1\\humanizer.core.vi.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.zh-cn\\2.14.1\\humanizer.core.zh-cn.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.zh-hans\\2.14.1\\humanizer.core.zh-hans.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\humanizer.core.zh-hant\\2.14.1\\humanizer.core.zh-hant.2.14.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\8.0.10\\microsoft.aspnetcore.authentication.jwtbearer.8.0.10.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.aspnetcore.authorization\\8.0.10\\microsoft.aspnetcore.authorization.8.0.10.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.aspnetcore.metadata\\8.0.10\\microsoft.aspnetcore.metadata.8.0.10.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.aspnetcore.razor.language\\6.0.24\\microsoft.aspnetcore.razor.language.6.0.24.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.bcl.asyncinterfaces\\7.0.0\\microsoft.bcl.asyncinterfaces.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.bcl.memory\\9.0.0\\microsoft.bcl.memory.9.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.build\\17.8.3\\microsoft.build.17.8.3.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.build.framework\\17.8.3\\microsoft.build.framework.17.8.3.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.codeanalysis.analyzers\\3.3.4\\microsoft.codeanalysis.analyzers.3.3.4.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.codeanalysis.analyzerutilities\\3.3.0\\microsoft.codeanalysis.analyzerutilities.3.3.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.codeanalysis.common\\4.8.0\\microsoft.codeanalysis.common.4.8.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.codeanalysis.csharp\\4.8.0\\microsoft.codeanalysis.csharp.4.8.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.codeanalysis.csharp.features\\4.8.0\\microsoft.codeanalysis.csharp.features.4.8.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.codeanalysis.csharp.workspaces\\4.8.0\\microsoft.codeanalysis.csharp.workspaces.4.8.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.codeanalysis.elfie\\1.0.0\\microsoft.codeanalysis.elfie.1.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.codeanalysis.features\\4.8.0\\microsoft.codeanalysis.features.4.8.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.codeanalysis.razor\\6.0.24\\microsoft.codeanalysis.razor.6.0.24.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.codeanalysis.scripting.common\\4.8.0\\microsoft.codeanalysis.scripting.common.4.8.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.codeanalysis.workspaces.common\\4.8.0\\microsoft.codeanalysis.workspaces.common.4.8.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.data.sqlclient\\5.1.5\\microsoft.data.sqlclient.5.1.5.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.data.sqlclient.sni.runtime\\5.1.1\\microsoft.data.sqlclient.sni.runtime.5.1.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.diasymreader\\2.0.0\\microsoft.diasymreader.2.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.dotnet.scaffolding.shared\\8.0.7\\microsoft.dotnet.scaffolding.shared.8.0.7.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.entityframeworkcore\\8.0.10\\microsoft.entityframeworkcore.8.0.10.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\8.0.10\\microsoft.entityframeworkcore.abstractions.8.0.10.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\8.0.10\\microsoft.entityframeworkcore.analyzers.8.0.10.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.entityframeworkcore.design\\8.0.10\\microsoft.entityframeworkcore.design.8.0.10.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\8.0.10\\microsoft.entityframeworkcore.relational.8.0.10.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.entityframeworkcore.sqlserver\\8.0.10\\microsoft.entityframeworkcore.sqlserver.8.0.10.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\8.0.10\\microsoft.entityframeworkcore.tools.8.0.10.nupkg.sha512", "C:\\Users\\Leo\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\8.0.0\\microsoft.extensions.caching.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.extensions.caching.memory\\8.0.1\\microsoft.extensions.caching.memory.8.0.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\8.0.0\\microsoft.extensions.configuration.abstractions.8.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\8.0.1\\microsoft.extensions.dependencyinjection.8.0.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\8.0.2\\microsoft.extensions.dependencyinjection.abstractions.8.0.2.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.extensions.dependencymodel\\8.0.2\\microsoft.extensions.dependencymodel.8.0.2.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.extensions.logging\\8.0.1\\microsoft.extensions.logging.8.0.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\8.0.2\\microsoft.extensions.logging.abstractions.8.0.2.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.extensions.options\\8.0.2\\microsoft.extensions.options.8.0.2.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.extensions.primitives\\8.0.0\\microsoft.extensions.primitives.8.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.identity.client\\4.56.0\\microsoft.identity.client.4.56.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.identity.client.extensions.msal\\4.56.0\\microsoft.identity.client.extensions.msal.4.56.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.identitymodel.abstractions\\8.3.1\\microsoft.identitymodel.abstractions.8.3.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\8.3.1\\microsoft.identitymodel.jsonwebtokens.8.3.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.identitymodel.logging\\8.3.1\\microsoft.identitymodel.logging.8.3.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.identitymodel.protocols\\7.1.2\\microsoft.identitymodel.protocols.7.1.2.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\7.1.2\\microsoft.identitymodel.protocols.openidconnect.7.1.2.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.identitymodel.tokens\\8.3.1\\microsoft.identitymodel.tokens.8.3.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.net.stringtools\\17.8.3\\microsoft.net.stringtools.17.8.3.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.netcore.platforms\\5.0.0\\microsoft.netcore.platforms.5.0.0.nupkg.sha512", "C:\\Users\\Leo\\.nuget\\packages\\microsoft.openapi\\1.2.3\\microsoft.openapi.1.2.3.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.sqlserver.server\\1.0.0\\microsoft.sqlserver.server.1.0.0.nupkg.sha512", "C:\\Users\\Leo\\.nuget\\packages\\microsoft.visualstudio.azure.containers.tools.targets\\1.19.6\\microsoft.visualstudio.azure.containers.tools.targets.1.19.6.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration\\8.0.7\\microsoft.visualstudio.web.codegeneration.8.0.7.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.core\\8.0.7\\microsoft.visualstudio.web.codegeneration.core.8.0.7.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.design\\8.0.7\\microsoft.visualstudio.web.codegeneration.design.8.0.7.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.entityframeworkcore\\8.0.7\\microsoft.visualstudio.web.codegeneration.entityframeworkcore.8.0.7.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.templating\\8.0.7\\microsoft.visualstudio.web.codegeneration.templating.8.0.7.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.visualstudio.web.codegeneration.utils\\8.0.7\\microsoft.visualstudio.web.codegeneration.utils.8.0.7.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.visualstudio.web.codegenerators.mvc\\8.0.7\\microsoft.visualstudio.web.codegenerators.mvc.8.0.7.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\microsoft.win32.systemevents\\7.0.0\\microsoft.win32.systemevents.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\mono.texttemplating\\2.3.1\\mono.texttemplating.2.3.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\newtonsoft.json\\13.0.3\\newtonsoft.json.13.0.3.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\npgsql\\8.0.5\\npgsql.8.0.5.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\npgsql.entityframeworkcore.postgresql\\8.0.10\\npgsql.entityframeworkcore.postgresql.8.0.10.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\nuget.common\\6.11.0\\nuget.common.6.11.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\nuget.configuration\\6.11.0\\nuget.configuration.6.11.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\nuget.dependencyresolver.core\\6.11.0\\nuget.dependencyresolver.core.6.11.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\nuget.frameworks\\6.11.0\\nuget.frameworks.6.11.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\nuget.librarymodel\\6.11.0\\nuget.librarymodel.6.11.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\nuget.packaging\\6.11.0\\nuget.packaging.6.11.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\nuget.projectmodel\\6.11.0\\nuget.projectmodel.6.11.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\nuget.protocol\\6.11.0\\nuget.protocol.6.11.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\nuget.versioning\\6.11.0\\nuget.versioning.6.11.0.nupkg.sha512", "C:\\Users\\Leo\\.nuget\\packages\\swashbuckle.aspnetcore\\6.4.0\\swashbuckle.aspnetcore.6.4.0.nupkg.sha512", "C:\\Users\\Leo\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.4.0\\swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512", "C:\\Users\\Leo\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.4.0\\swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512", - "C:\\Users\\Leo\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.4.0\\swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + "C:\\Users\\Leo\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.4.0\\swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.codedom\\5.0.0\\system.codedom.5.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.collections.immutable\\7.0.0\\system.collections.immutable.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.composition\\7.0.0\\system.composition.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.composition.attributedmodel\\7.0.0\\system.composition.attributedmodel.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.composition.convention\\7.0.0\\system.composition.convention.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.composition.hosting\\7.0.0\\system.composition.hosting.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.composition.runtime\\7.0.0\\system.composition.runtime.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.composition.typedparts\\7.0.0\\system.composition.typedparts.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.configuration.configurationmanager\\7.0.0\\system.configuration.configurationmanager.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.data.datasetextensions\\4.5.0\\system.data.datasetextensions.4.5.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.diagnostics.diagnosticsource\\6.0.1\\system.diagnostics.diagnosticsource.6.0.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.diagnostics.eventlog\\7.0.0\\system.diagnostics.eventlog.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.drawing.common\\7.0.0\\system.drawing.common.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.formats.asn1\\8.0.1\\system.formats.asn1.8.0.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.identitymodel.tokens.jwt\\8.3.1\\system.identitymodel.tokens.jwt.8.3.1.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.io.filesystem.accesscontrol\\5.0.0\\system.io.filesystem.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.io.pipelines\\7.0.0\\system.io.pipelines.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.memory\\4.5.4\\system.memory.4.5.4.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.memory.data\\1.0.2\\system.memory.data.1.0.2.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.numerics.vectors\\4.5.0\\system.numerics.vectors.4.5.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.reflection.metadata\\7.0.0\\system.reflection.metadata.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.reflection.metadataloadcontext\\7.0.0\\system.reflection.metadataloadcontext.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.runtime.caching\\6.0.0\\system.runtime.caching.6.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.runtime.compilerservices.unsafe\\6.0.0\\system.runtime.compilerservices.unsafe.6.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.security.accesscontrol\\5.0.0\\system.security.accesscontrol.5.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.security.cryptography.cng\\5.0.0\\system.security.cryptography.cng.5.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.security.cryptography.pkcs\\6.0.4\\system.security.cryptography.pkcs.6.0.4.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.security.cryptography.protecteddata\\7.0.0\\system.security.cryptography.protecteddata.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.security.permissions\\7.0.0\\system.security.permissions.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.security.principal.windows\\5.0.0\\system.security.principal.windows.5.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.text.encoding.codepages\\6.0.0\\system.text.encoding.codepages.6.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.text.encodings.web\\7.0.0\\system.text.encodings.web.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.text.json\\7.0.3\\system.text.json.7.0.3.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.threading.channels\\7.0.0\\system.threading.channels.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.threading.tasks.dataflow\\7.0.0\\system.threading.tasks.dataflow.7.0.0.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.threading.tasks.extensions\\4.5.4\\system.threading.tasks.extensions.4.5.4.nupkg.sha512", + "C:\\Users\\Leo\\.nuget\\packages\\system.windows.extensions\\7.0.0\\system.windows.extensions.7.0.0.nupkg.sha512" ], "logs": [] } \ No newline at end of file