commit dda4d9e63fd2a3a3d3cce9a04ebae17a46a58573 Author: Said Date: Wed Aug 5 21:15:14 2026 +0300 Initial commit - Auth diff --git a/Auth.API/Auth.API.csproj b/Auth.API/Auth.API.csproj new file mode 100644 index 0000000..610c2ce --- /dev/null +++ b/Auth.API/Auth.API.csproj @@ -0,0 +1,35 @@ + + + net10.0 + enable + enable + true + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Auth.API/Config/Authentication.cs b/Auth.API/Config/Authentication.cs new file mode 100755 index 0000000..bf57614 --- /dev/null +++ b/Auth.API/Config/Authentication.cs @@ -0,0 +1,63 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Authentication.JwtBearer; +using Microsoft.IdentityModel.Tokens; +using Auth.Contracts.Permissions; + +namespace Auth.API.Config; + +public static class Authentication +{ + public static IServiceCollection Authenticate(this IServiceCollection services, ConfigurationManager configuration) + { + services.AddAuthentication(x => + { + x.DefaultAuthenticateScheme = JwtBearerDefaults.AuthenticationScheme; + x.DefaultChallengeScheme = JwtBearerDefaults.AuthenticationScheme; + }).AddJwtBearer(o => + { + + var Key = Encoding.UTF8.GetBytes(configuration["JWT:Key"]); + o.SaveToken = true; + o.TokenValidationParameters = new TokenValidationParameters + { + ValidateIssuer = false, // on production make it true + ValidateAudience = false, // on production make it true + ValidateLifetime = true, + ValidateIssuerSigningKey = true, + ValidIssuer = configuration["JWT:Issuer"], + ValidAudience = configuration["JWT:Audience"], + IssuerSigningKey = new SymmetricSecurityKey(Key), + ClockSkew = TimeSpan.Zero + }; + o.Events = new JwtBearerEvents + { + OnAuthenticationFailed = context => + { + if (context.Exception.GetType() == typeof(SecurityTokenExpiredException)) + { + context.Response.Headers.Add("IS-TOKEN-EXPIRED", "true"); + } + return Task.CompletedTask; + } + }; + }); + + return services; + } + + public static IServiceCollection AddPermissionPolicies(this IServiceCollection services) + { + services.AddAuthorization(options => + { + foreach (var permission in AuthPermissions.GetAllPermissions()) + { + options.AddPolicy(permission, policy => policy.RequireClaim("Permission", permission)); + } + }); + return services; + } +} \ No newline at end of file diff --git a/Auth.API/Config/Authorization.cs b/Auth.API/Config/Authorization.cs new file mode 100755 index 0000000..b07781b --- /dev/null +++ b/Auth.API/Config/Authorization.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + + +namespace Auth.API.Config; + +public static class Authorization +{ + public static IServiceCollection Authorize(this IServiceCollection services) + { + services.AddAuthorization(options => + { + options.AddPolicy("Admin", policy => policy.RequireRole("Admin")); + options.AddPolicy("Moderator", policy => policy.RequireRole("Moderator")); + options.AddPolicy("Seller", policy => policy.RequireRole("Seller")); + // options.AddPolicy("OrderOwnerOrAdmin", policy => + // policy.Requirements.Add(new OrderOwnerOrAdminRequirement())); + }); + + return services; + + } +} diff --git a/Auth.API/Config/AuthorizeHandlers/OrderOwnerOrAdminHandler.cs b/Auth.API/Config/AuthorizeHandlers/OrderOwnerOrAdminHandler.cs new file mode 100644 index 0000000..1083386 --- /dev/null +++ b/Auth.API/Config/AuthorizeHandlers/OrderOwnerOrAdminHandler.cs @@ -0,0 +1,56 @@ +// using System; +// using System.Collections.Generic; +// using System.Linq; +// using System.Threading.Tasks; +// using Microsoft.AspNetCore.Authorization; +// using Core.Services; +// using System.Security.Claims; +// using Microsoft.AspNetCore.Identity; +// using System.Threading.Tasks; + +// namespace ECommerce_API.Config.AuthorizeHandlers +// { +// public class OrderOwnerOrAdminHandler : AuthorizationHandler +// { +// // private readonly IServiceProvider _serviceProvider; + +// // public OrderOwnerOrAdminHandler(IServiceProvider serviceProvider) +// // { +// // _serviceProvider = serviceProvider; +// // } +// private readonly IServiceProvider _serviceProvider; + +// public OrderOwnerOrAdminHandler(IServiceProvider serviceProvider) +// { +// _serviceProvider = serviceProvider; +// } + +// // protected override async Task HandleRequirementAsync(AuthorizationHandlerContext context, +// // OrderOwnerOrAdminRequirement requirement, Guid orderId) +// // { + +// // using var scope = _serviceProvider.CreateScope(); +// // var orderService = scope.ServiceProvider.GetRequiredService(); + +// // var user = context.User; +// // var userId = user.FindFirst(ClaimTypes.NameIdentifier)?.Value; +// // var isAdmin = user.IsInRole("Admin"); + +// // if (isAdmin) +// // { +// // context.Succeed(requirement); +// // return; +// // } + +// // // // var order = await orderService.GetOrderById(orderId.ToString()); +// // // if (order != null && order.CustomerId == userId) +// // // { +// // // context.Succeed(requirement); +// // // } +// // } +// } + +// public class OrderOwnerOrAdminRequirement : IAuthorizationRequirement { } +// } + + diff --git a/Auth.API/Config/Cors.cs b/Auth.API/Config/Cors.cs new file mode 100755 index 0000000..69a8619 --- /dev/null +++ b/Auth.API/Config/Cors.cs @@ -0,0 +1,40 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.API.Config; + +public static class Cors +{ + public static IServiceCollection AddCustomCors(this IServiceCollection services) + { + services.AddCors(options => + { + options.AddDefaultPolicy(builder => + { + builder + .WithOrigins("http://localhost:5211", "http://localhost:5055") + .AllowAnyHeader() + .AllowAnyMethod().AllowCredentials() + .WithExposedHeaders("*"); + ; + }); + + options.AddPolicy( + "default", + builder => + { + builder + .WithOrigins("http://localhost:5211" , "http://localhost:5055") + .AllowAnyHeader() + .AllowAnyMethod().AllowCredentials() + .WithExposedHeaders("*"); + ; + } + ); + }); + + return services; + } +} diff --git a/Auth.API/Config/FluentEmail.cs b/Auth.API/Config/FluentEmail.cs new file mode 100755 index 0000000..c78d4a7 --- /dev/null +++ b/Auth.API/Config/FluentEmail.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.API.Config; + +public static class FluentEmailExtensions +{ + public static void RegFluentEmail( + this IServiceCollection services, + ConfigurationManager configuration + ) + { + var emailSettings = configuration.GetSection("MailSettings"); + var defaultFromEmail = emailSettings["Mail"]; + var host = emailSettings["Host"]; + var port = emailSettings.GetValue("Port"); + var userName = emailSettings["UserName"]; + var password = emailSettings["Password"]; + + services + .AddFluentEmail(defaultFromEmail) + .AddSmtpSender(host, port, userName, password) + .AddRazorRenderer(); + } +} diff --git a/Auth.API/Config/RegisteringServices.cs b/Auth.API/Config/RegisteringServices.cs new file mode 100755 index 0000000..e346f18 --- /dev/null +++ b/Auth.API/Config/RegisteringServices.cs @@ -0,0 +1,28 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Auth.Core; +using Auth.Core.Services; +using Auth.Core.Services.Auth; + +using Auth.Core.Services.HR.Users; +using Auth.Domain.Entities; +// using ECommerce_API.Config.AuthorizeHandlers; +using Microsoft.AspNetCore.Authorization; + +namespace Auth.API.Config; + +public static class RegisteringServices +{ + public static IServiceCollection RegisterServices(this IServiceCollection services) + { + // services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + services.AddScoped(); + + return services; + } +} diff --git a/Auth.API/Config/Swagger.cs b/Auth.API/Config/Swagger.cs new file mode 100755 index 0000000..5a33a08 --- /dev/null +++ b/Auth.API/Config/Swagger.cs @@ -0,0 +1,28 @@ +using Microsoft.AspNetCore.Builder; +using Microsoft.Extensions.DependencyInjection; +using Scalar.AspNetCore; + +namespace Auth.API.Config; + +public static class Swagger +{ + public static IServiceCollection AddSwagger(this IServiceCollection services) + { + services.AddOpenApi(options => + { + options.AddDocumentTransformer((document, context, cancellationToken) => + { + document.Info.Title = "Auth API"; + document.Info.Version = "v1"; + return Task.CompletedTask; + }); + }); + return services; + } + + public static IEndpointRouteBuilder UseSwag(this IEndpointRouteBuilder app) + { + app.MapScalarApiReference(); + return app; + } +} diff --git a/Auth.API/ERP_API.http b/Auth.API/ERP_API.http new file mode 100644 index 0000000..b662def --- /dev/null +++ b/Auth.API/ERP_API.http @@ -0,0 +1,6 @@ +@ERP_API_HostAddress = http://localhost:5211 + +GET {{ERP_API_HostAddress}}/weatherforecast/ +Accept: application/json + +### diff --git a/Auth.API/Endpoints/v1/RequestEndpoints/RequestMap.cs b/Auth.API/Endpoints/v1/RequestEndpoints/RequestMap.cs new file mode 100644 index 0000000..453133c --- /dev/null +++ b/Auth.API/Endpoints/v1/RequestEndpoints/RequestMap.cs @@ -0,0 +1,65 @@ +// using System; +// using System.Collections.Generic; +// using System.Linq; +// using System.Threading.Tasks; +// using Contracts.DTOs.Generic; +// using Contracts.DTOs.Requests; +// using Core.Services.Requests; +// using Microsoft.AspNetCore.Mvc; + +// namespace Auth.API.Endpoints.v1.RequestEndpoints; + +// public static class RequestMap +// { +// public static RouteGroupBuilder RequestEndpoints(this RouteGroupBuilder group) +// { +// group.MapGet( +// "requests", +// async ([AsParameters] RequestFilter filter, [AsParameters] Pagination pagination, RequestService requestService, HttpContext httpContext) => +// { +// var result = await requestService.GetRequests(filter, pagination); + +// return result; +// } +// ); + +// group.MapGet( +// "requests/user", +// async ([AsParameters] RequestFilter requestFilter, RequestService requestService, HttpContext httpContext) => +// { +// var userId = httpContext.User.Claims.FirstOrDefault(x => x.Type == "uid").Value; +// return await requestService.GetRequestsAsUser(requestFilter, userId); +// } +// ); + + +// group.MapPost( +// "request", +// async ([FromBody] RequestVM requestVM, RequestService requestService, HttpContext httpContext) => +// { +// var userId = httpContext.User.Claims.FirstOrDefault(x => x.Type == "uid").Value; +// await requestService.CreateRequest(requestVM, userId); +// } +// ); + + +// //should be only auhtoized by Admins +// group.MapPut( +// "request", +// async ([FromBody] RequestVM requestVM, RequestService requestService, HttpContext httpContext) => +// { +// var userId = httpContext.User.Claims.FirstOrDefault(x => x.Type == "uid").Value; +// await requestService.TreatRequest(requestVM, userId); +// } +// ); + + + + +// return group; + +// } + + + +// } diff --git a/Auth.API/Endpoints/v1/UserEndpoints/AuthMap.cs b/Auth.API/Endpoints/v1/UserEndpoints/AuthMap.cs new file mode 100644 index 0000000..65a3334 --- /dev/null +++ b/Auth.API/Endpoints/v1/UserEndpoints/AuthMap.cs @@ -0,0 +1,187 @@ +using Auth.Contracts.DTOs; +using Auth.Contracts.DTOs.Auth; +using Auth.Contracts.DTOs.Users; +using Auth.Core.Services.Auth; +using Auth.Domain.Entities.HR; +using Auth.Core.Services; +using Auth.Domain.Entities; +using Microsoft.AspNetCore.Http.HttpResults; +using Microsoft.AspNetCore.Identity; +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; + +namespace Auth.API.Endpoints.v1.UserEndpoints; + +public static class AuthMap +{ + public static RouteGroupBuilder AuthEndpoints(this RouteGroupBuilder group) + { + group.MapPost( + "auth/phone-number", + async (string phoneNumber, AuthService authService, HttpContext httpContext) => + { + var userId = httpContext.User.Claims.FirstOrDefault(x => x.Type == "uid").Value; + + await authService.SendChangePhoneNumberToken(userId, phoneNumber); + } + ); + + group.MapPut( + "auth/phone-number", + async ( + UpdatePhoneNumber updatePhoneNumber, + AuthService authService, + HttpContext httpContext + ) => + { + var userId = httpContext.User.Claims.FirstOrDefault(x => x.Type == "uid").Value; + + var result = await authService.ChangePhoneNumber(userId, updatePhoneNumber); + return result; + } + ); + + group.MapPost( + "auth/login", + async ([FromBody] LoginModel loginModel, AuthService authService) => + { + var token = await authService.Login(loginModel); + if (token == null) + return Results.BadRequest(); + return Results.Ok(token); + } + ); + + group.MapPost( + "auth/refresh", + async ([FromBody] TokenModel tokenModel, AuthService authService) => + { + var token = await authService.RefreshToken(tokenModel); + if (token == null) + return Results.BadRequest(); + + return Results.Ok(token); + } + ); + + group.MapPost( + "auth/register", + async ([FromBody] RegisterModel registerModel, AuthService authService) => + { + var result = await authService.SignUp(registerModel); + if (result == "") + return Results.Ok(); + return Results.Conflict(result); + } + ); + + group + .MapGet( + "auth/resend-confirmation", + async (HttpContext httpContext, AuthService authService) => + { + var userId = httpContext + .User.Claims.FirstOrDefault(x => x.Type == "uid") + .Value; + if (userId is null) + return Results.BadRequest(); + await authService.SendEmailConfirmationToken(userId); + return Results.Ok(); + } + ) + .RequireAuthorization(); + + group.MapGet( + "auth/password-reset-token/{email}", + async (string email, AuthService authService) => + { + await authService.SendPasswordResetToken(email); + return Results.Ok(); + } + ); + + group + .MapPost( + "auth/confirm-email", + async ( + [FromBody] string confirmationToken, + UserManager userManager, + HttpContext httpContext + ) => + { + var userId = httpContext + .User.Claims.FirstOrDefault(x => x.Type == "uid") + .Value; + + if (userId is null) + return Results.BadRequest(); + + var user = await userManager.FindByIdAsync(userId); + var result = await userManager.ConfirmEmailAsync(user, confirmationToken); + return Results.Ok(); + } + ) + .RequireAuthorization(); + + group.MapPost( + "auth/reset-password", + async ( + [FromBody] PasswordResetModel passwordResetModel, + UserManager userManager, + HttpContext httpContext + ) => + { + var user = await userManager.FindByEmailAsync(passwordResetModel.Email); + if (user is null) + return Results.BadRequest("Email not registered."); + await userManager.ResetPasswordAsync( + user, + passwordResetModel.Token, + passwordResetModel.Password + ); + return Results.Ok(); + } + ); + + group.MapPost( + "auth/change-email", + async ( + RequestChangeEmail requestChangeEmail, + AuthService authService, + HttpContext httpContext + ) => + { + var userId = httpContext.User.Claims.FirstOrDefault(x => x.Type == "uid").Value; + await authService.SendChangeEmailToken(requestChangeEmail, userId); + } + ); + + group.MapPut( + "auth/email", + async ( + ChangeEmailModel changeEmailModel, + AuthService authService, + HttpContext httpContext + ) => + { + var userId = httpContext.User.Claims.FirstOrDefault(x => x.Type == "uid").Value; + await authService.ChangeEmail(userId, changeEmailModel); + } + ); + + group.MapPost( + "auth/logout", + async (AuthService authService, HttpContext httpContext) => + { + var username = httpContext.User.Identity?.Name; + if (string.IsNullOrEmpty(username)) return Results.Unauthorized(); + + var result = await authService.RevokeRefreshToken(username); + return result ? Results.Ok() : Results.BadRequest(); + } + ).RequireAuthorization(); + + return group; + + } +} diff --git a/Auth.API/Endpoints/v1/UserEndpoints/GroupMap.cs b/Auth.API/Endpoints/v1/UserEndpoints/GroupMap.cs new file mode 100644 index 0000000..52616df --- /dev/null +++ b/Auth.API/Endpoints/v1/UserEndpoints/GroupMap.cs @@ -0,0 +1,11 @@ +// using System; +// using System.Collections.Generic; +// using System.Linq; +// using System.Threading.Tasks; + +// namespace Auth.API.Endpoints.v1.UserEndpoints; + +// public class GroupMap +// { + +// } diff --git a/Auth.API/Endpoints/v1/UserEndpoints/RoleMap.cs b/Auth.API/Endpoints/v1/UserEndpoints/RoleMap.cs new file mode 100644 index 0000000..fe8d46e --- /dev/null +++ b/Auth.API/Endpoints/v1/UserEndpoints/RoleMap.cs @@ -0,0 +1,131 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Auth.Domain.Entities.HR; +using Auth.Domain.Entities; +using Microsoft.AspNetCore.Identity; +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using Auth.Contracts.DTOs.Users; +using System.Security.Claims; + +namespace Auth.API.Endpoints.v1.UserEndpoints; + +public static class RoleMap +{ + public static RouteGroupBuilder RoleEndpoints(this RouteGroupBuilder group) + { + + + + group.MapPost( + "role-management/{role}/user/{userId}", + async ([FromRoute] string userId, [FromRoute] string role, UserManager userManager) => + { + try + { + var user = await userManager.Users.FirstOrDefaultAsync(x => x.Id == userId); + if (user is null) + return Results.BadRequest(); + + var result = await userManager.AddToRoleAsync(user, role); + if (!result.Succeeded) + return Results.BadRequest(); + return Results.Ok(); + } + catch + { + return Results.StatusCode(500); + } + } + ); + + group.MapDelete( + "role-management/{role}/user/{userid}", + async (string role, string userId, UserManager userManager) => + { + try + { + var user = await userManager.Users.FirstOrDefaultAsync(x => x.Id == userId); + if (user is null) + return Results.BadRequest(); + + var result = await userManager.RemoveFromRoleAsync(user, role); + if (!result.Succeeded) + return Results.BadRequest(); + + return Results.Ok(); + } + catch + { + return Results.StatusCode(500); + } + } + ); + + group.MapGet( + "role-management/roles", + async (RoleManager roleManager) => + { + var roles = await roleManager.Roles.ToListAsync(); + return Results.Ok(roles); + } + ).RequireAuthorization(); + + group.MapPost( + "role-management/roles", + async ([FromBody] RoleVM roleVM, RoleManager roleManager) => + { + if (string.IsNullOrEmpty(roleVM.Name)) return Results.BadRequest("Role Name is required."); + + var roleExists = await roleManager.RoleExistsAsync(roleVM.Name); + if (roleExists) return Results.Conflict("Role already exists."); + + var result = await roleManager.CreateAsync(new IdentityRole(roleVM.Name)); + return result.Succeeded ? Results.Ok() : Results.BadRequest(result.Errors); + } + ).RequireAuthorization(); + + group.MapDelete( + "role-management/roles/{id}", + async (string id, RoleManager roleManager) => + { + var role = await roleManager.FindByIdAsync(id); + if (role == null) return Results.NotFound(); + + var result = await roleManager.DeleteAsync(role); + return result.Succeeded ? Results.Ok() : Results.BadRequest(result.Errors); + } + ).RequireAuthorization(); + + group.MapGet("role-management/roles/{id}/permissions", async (string id, RoleManager roleManager) => + { + var role = await roleManager.FindByIdAsync(id); + if (role == null) return Results.NotFound("Role not found."); + + var claims = await roleManager.GetClaimsAsync(role); + return Results.Ok(claims.Select(c => c.Value)); + }).RequireAuthorization(); + + group.MapPost("role-management/roles/{id}/permissions", async (string id, [FromBody] string permission, RoleManager roleManager) => + { + var role = await roleManager.FindByIdAsync(id); + if (role == null) return Results.NotFound("Role not found."); + + var result = await roleManager.AddClaimAsync(role, new Claim("Permission", permission)); + return result.Succeeded ? Results.Ok() : Results.BadRequest(result.Errors); + }).RequireAuthorization(); + + group.MapDelete("role-management/roles/{id}/permissions", async (string id, [FromBody] string permission, RoleManager roleManager) => + { + var role = await roleManager.FindByIdAsync(id); + if (role == null) return Results.NotFound("Role not found."); + + var result = await roleManager.RemoveClaimAsync(role, new Claim("Permission", permission)); + return result.Succeeded ? Results.Ok() : Results.BadRequest(result.Errors); + }).RequireAuthorization(); + + return group; + } +} diff --git a/Auth.API/Endpoints/v1/UserEndpoints/SalaryMap.cs b/Auth.API/Endpoints/v1/UserEndpoints/SalaryMap.cs new file mode 100644 index 0000000..e1afaf2 --- /dev/null +++ b/Auth.API/Endpoints/v1/UserEndpoints/SalaryMap.cs @@ -0,0 +1,25 @@ +// using System; +// using System.Collections.Generic; +// using System.Linq; +// using System.Threading.Tasks; +// using Contracts.DTOs.HR; +// using Core.Services.HR.Users; +// using Domain.Entities.HR; + +// namespace Auth.API.Endpoints.v1.UserEndpoints; + +// public static class SalaryMap +// { +// public static RouteGroupBuilder SalaryEndpoints(this RouteGroupBuilder group) +// { +// group.MapPost( +// "salary", +// async (SalaryVM salaryVM, SalaryService salaryService) => +// { +// await salaryService.AddNewSalaryToUser(salaryVM); +// } +// ); + +// return group; +// } +// } diff --git a/Auth.API/Endpoints/v1/UserEndpoints/UserMap.cs b/Auth.API/Endpoints/v1/UserEndpoints/UserMap.cs new file mode 100644 index 0000000..bbfb944 --- /dev/null +++ b/Auth.API/Endpoints/v1/UserEndpoints/UserMap.cs @@ -0,0 +1,92 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Auth.Contracts.DTOs.Users; +using Auth.Core.Services; +using Auth.Core.Services.HR.Users; +using Microsoft.AspNetCore.Mvc; + +namespace Auth.API.Endpoints.v1.UserEndpoints; + +public static class UserMap +{ + public static RouteGroupBuilder UserEndpoints(this RouteGroupBuilder group) + { + + + // group.MapGet( + // "location", + // async (UserService userService, HttpContext httpContext) => + // { + // var userId = httpContext.User.Claims.FirstOrDefault(x => x.Type == "uid").Value; + // return await userService.GetLocation(userId); + // } + // ); + + // group.MapPut( + // "location", + // async (Location location, UserService userService, HttpContext httpContext) => + // { + // var userId = httpContext.User.Claims.FirstOrDefault(x => x.Type == "uid").Value; + // return await userService.UpdateLocation(location, userId); + // } + // ); + + // // group.MapGet("user_realestates/{id}", ( + // // string id, + // // UserService userService + // // ) => + // // { + // // return userService.GetUserView(id); + // // }); + + + + //get your own profile/settings + group.MapGet( + "user", + async (UserService userService, HttpContext httpContext) => + { + var userId = httpContext.User.Claims.FirstOrDefault(x => x.Type == "uid").Value; + return await userService.GetUser(userId); + } + ); + + //get user id (for admins) + group.MapGet( + "user/{id}", + async (string id, UserService userService) => + { + return await userService.GetUser(id); + } + ); + + //get all users information + group + .MapGet( + "users", + async (UserService userService) => + { + return await userService.GetAllUsers(); + } + ) + ; + + //update user info + group.MapPut( + "user", + async ( + [FromBody] UserInfoUpdate userVM, + HttpContext httpContext, + UserService userService + ) => + { + var userId = httpContext.User.Claims.FirstOrDefault(x => x.Type == "uid").Value; + await userService.UpdateUserInfo(userVM, userId); + } + ); + + return group; +} +} diff --git a/Auth.API/Program.cs b/Auth.API/Program.cs new file mode 100644 index 0000000..0a0806c --- /dev/null +++ b/Auth.API/Program.cs @@ -0,0 +1,79 @@ +using Auth.Contracts.DTOs.Auth; +using Auth.Domain; +using Auth.Domain.Entities; +using Auth.API.Config; +using Auth.API.Config; +using Auth.API.Endpoints.v1.UserEndpoints; +using Auth.API.Endpoints.v1; +using Microsoft.AspNetCore.Identity; +using Microsoft.EntityFrameworkCore; +using Auth.Domain.Entities.HR; + +var builder = WebApplication.CreateBuilder(args); + +builder.Services.AddSwagger(); + +builder.Services.Configure(builder.Configuration.GetSection("JWT")); + +// builder.Services.AddDbContext( +// options => options.(builder.Configuration["ConnectionStrings:maria"], ServerVersion.AutoDetect(builder.Configuration["ConnectionStrings:maria"]))); + +builder.Services.AddDbContext(options => + options.UseNpgsql(builder.Configuration.GetConnectionString("PostgreDB")) +); + +builder + .Services.AddIdentity() + .AddRoles() + .AddEntityFrameworkStores() + .AddDefaultTokenProviders(); + +builder.Services.AddCustomCors(); + +builder.Services.RegFluentEmail(builder.Configuration); + +builder.Services.Authenticate(builder.Configuration); +builder.Services.AddPermissionPolicies(); +builder.Services.Authorize(); +builder.Services.RegisterServices(); + +// builder.Services.AddAntiforgery(); + +// builder.Services.AddOpenApi(); + +var app = builder.Build(); + +using (var scope = app.Services.CreateScope()) +{ + var db = scope.ServiceProvider.GetRequiredService(); + db.Database.Migrate(); // Applies pending migrations +} + +// app.UseHttpsRedirection(); +// app.UseStaticFiles(); + +// app.UseRouting(); +app.UseCors("default"); + +app.UseAuthentication(); +app.UseAuthorization(); + +app.MapOpenApi(); +if (app.Environment.IsDevelopment()) +{ + app.UseSwag(); +} + +// app.UseAntiforgery(); + +app.MapGroup("api/v1/").UserEndpoints().WithTags("users").RequireCors("default"); + +app.MapGroup("api/v1/").AuthEndpoints().WithTags("Auth").RequireCors("default"); + +app.MapGroup("api/v1/").RoleEndpoints().WithTags("Roles").RequireCors("default"); + +app.Run(); + + +// Add services to the container. +// Learn more about configuring OpenAPI at https://aka.ms/aspnet/openapi diff --git a/Auth.API/Properties/launchSettings.json b/Auth.API/Properties/launchSettings.json new file mode 100644 index 0000000..32cfbb4 --- /dev/null +++ b/Auth.API/Properties/launchSettings.json @@ -0,0 +1,23 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "http://localhost:2002", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": false, + "applicationUrl": "https://localhost:7243;http://localhost:5211", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} \ No newline at end of file diff --git a/Auth.API/appsettings.Development.json b/Auth.API/appsettings.Development.json new file mode 100644 index 0000000..ff66ba6 --- /dev/null +++ b/Auth.API/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/Auth.API/appsettings.json b/Auth.API/appsettings.json new file mode 100644 index 0000000..2a79d23 --- /dev/null +++ b/Auth.API/appsettings.json @@ -0,0 +1,31 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "ConnectionStrings": { + "PostgreDB": "Host=localhost;Database=Auth;Username=test;Password=test;Port=5432;IncludeErrorDetail=true;" +}, + "AllowedHosts": "*", + "JWT": { + "Key": "thisisasecretKeyIneedtoprovideenoughletterstomakeitwork", + "Issuer": "https://hello.com", + "Audience": "hello.com", + "DurationInMinutes": 10 +}, +"EmailTemplate": { + "EmailConfirmation": "placeHolder", + "ResetPassword": "placeHolder" +}, +"hostname": "placeHolder", +"MailSettings": { + "Mail": "merge1942@gmail.com", + "DisplayName": "Merge", + "UserName": "merge1942@gmail.com", + "Password": "ftyqwyqpqtixalxp", + "Host": "smtp.gmail.com", + "Port": 587 +} +} diff --git a/Auth.API/bin/Debug/net10.0/Auth.API b/Auth.API/bin/Debug/net10.0/Auth.API new file mode 100755 index 0000000..9ec3625 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Auth.API differ diff --git a/Auth.API/bin/Debug/net10.0/Auth.API.deps.json b/Auth.API/bin/Debug/net10.0/Auth.API.deps.json new file mode 100644 index 0000000..95387e3 --- /dev/null +++ b/Auth.API/bin/Debug/net10.0/Auth.API.deps.json @@ -0,0 +1,5259 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": { + "defines": [ + "TRACE", + "DEBUG", + "NET", + "NET10_0", + "NETCOREAPP", + "NET5_0_OR_GREATER", + "NET6_0_OR_GREATER", + "NET7_0_OR_GREATER", + "NET8_0_OR_GREATER", + "NET9_0_OR_GREATER", + "NET10_0_OR_GREATER", + "NETCOREAPP1_0_OR_GREATER", + "NETCOREAPP1_1_OR_GREATER", + "NETCOREAPP2_0_OR_GREATER", + "NETCOREAPP2_1_OR_GREATER", + "NETCOREAPP2_2_OR_GREATER", + "NETCOREAPP3_0_OR_GREATER", + "NETCOREAPP3_1_OR_GREATER" + ], + "languageVersion": "14.0", + "platform": "", + "allowUnsafe": false, + "warningsAsErrors": false, + "optimize": false, + "keyFile": "", + "emitEntryPoint": true, + "xmlDoc": false, + "debugType": "portable" + }, + "targets": { + ".NETCoreApp,Version=v10.0": { + "Auth.API/1.0.0": { + "dependencies": { + "Auth.Contracts": "1.0.0", + "Auth.Core": "1.0.0", + "Auth.Domain": "1.0.0", + "FluentEmail.Core": "3.0.2", + "FluentEmail.Razor": "3.0.2", + "FluentEmail.Smtp": "3.0.2", + "Microsoft.AspNetCore.Authentication.JwtBearer": "10.0.0", + "Microsoft.AspNetCore.OpenApi": "10.0.0", + "Microsoft.EntityFrameworkCore": "10.0.0", + "Microsoft.EntityFrameworkCore.Design": "10.0.0", + "Microsoft.EntityFrameworkCore.Proxies": "10.0.0", + "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", + "Scalar.AspNetCore": "2.12.11", + "System.IdentityModel.Tokens.Jwt": "8.12.1", + "Microsoft.AspNetCore.Antiforgery": "10.0.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.Authentication.BearerToken": "10.0.0.0", + "Microsoft.AspNetCore.Authentication.Cookies": "10.0.0.0", + "Microsoft.AspNetCore.Authentication.Core": "10.0.0.0", + "Microsoft.AspNetCore.Authentication": "10.0.0.0", + "Microsoft.AspNetCore.Authentication.OAuth": "10.0.0.0", + "Microsoft.AspNetCore.Authorization": "10.0.0.0", + "Microsoft.AspNetCore.Authorization.Policy": "10.0.0.0", + "Microsoft.AspNetCore.Components.Authorization": "10.0.0.0", + "Microsoft.AspNetCore.Components": "10.0.0.0", + "Microsoft.AspNetCore.Components.Endpoints": "10.0.0.0", + "Microsoft.AspNetCore.Components.Forms": "10.0.0.0", + "Microsoft.AspNetCore.Components.Server": "10.0.0.0", + "Microsoft.AspNetCore.Components.Web": "10.0.0.0", + "Microsoft.AspNetCore.Connections.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.CookiePolicy": "10.0.0.0", + "Microsoft.AspNetCore.Cors": "10.0.0.0", + "Microsoft.AspNetCore.Cryptography.Internal": "10.0.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "10.0.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.DataProtection": "10.0.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions": "10.0.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.Diagnostics": "10.0.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "10.0.0.0", + "Microsoft.AspNetCore": "10.0.0.0", + "Microsoft.AspNetCore.HostFiltering": "10.0.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.Hosting": "10.0.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.Html.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.Http.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.Http.Connections.Common": "10.0.0.0", + "Microsoft.AspNetCore.Http.Connections": "10.0.0.0", + "Microsoft.AspNetCore.Http": "10.0.0.0", + "Microsoft.AspNetCore.Http.Extensions": "10.0.0.0", + "Microsoft.AspNetCore.Http.Features": "10.0.0.0", + "Microsoft.AspNetCore.Http.Results": "10.0.0.0", + "Microsoft.AspNetCore.HttpLogging": "10.0.0.0", + "Microsoft.AspNetCore.HttpOverrides": "10.0.0.0", + "Microsoft.AspNetCore.HttpsPolicy": "10.0.0.0", + "Microsoft.AspNetCore.Identity": "10.0.0.0", + "Microsoft.AspNetCore.Localization": "10.0.0.0", + "Microsoft.AspNetCore.Localization.Routing": "10.0.0.0", + "Microsoft.AspNetCore.Metadata": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.Core": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.Cors": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "10.0.0.0", + "Microsoft.AspNetCore.Mvc": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.Localization": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.Razor": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers": "10.0.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "10.0.0.0", + "Microsoft.AspNetCore.OutputCaching": "10.0.0.0", + "Microsoft.AspNetCore.RateLimiting": "10.0.0.0", + "Microsoft.AspNetCore.Razor": "10.0.0.0", + "Microsoft.AspNetCore.Razor.Runtime": "10.0.0.0", + "Microsoft.AspNetCore.RequestDecompression": "10.0.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.ResponseCaching": "10.0.0.0", + "Microsoft.AspNetCore.ResponseCompression": "10.0.0.0", + "Microsoft.AspNetCore.Rewrite": "10.0.0.0", + "Microsoft.AspNetCore.Routing.Abstractions": "10.0.0.0", + "Microsoft.AspNetCore.Routing": "10.0.0.0", + "Microsoft.AspNetCore.Server.HttpSys": "10.0.0.0", + "Microsoft.AspNetCore.Server.IIS": "10.0.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "10.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core": "10.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel": "10.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "10.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "10.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "10.0.0.0", + "Microsoft.AspNetCore.Session": "10.0.0.0", + "Microsoft.AspNetCore.SignalR.Common": "10.0.0.0", + "Microsoft.AspNetCore.SignalR.Core": "10.0.0.0", + "Microsoft.AspNetCore.SignalR": "10.0.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "10.0.0.0", + "Microsoft.AspNetCore.StaticAssets": "10.0.0.0", + "Microsoft.AspNetCore.StaticFiles": "10.0.0.0", + "Microsoft.AspNetCore.WebSockets": "10.0.0.0", + "Microsoft.AspNetCore.WebUtilities": "10.0.0.0", + "Microsoft.CSharp": "10.0.0.0", + "Microsoft.Extensions.Caching.Abstractions": "10.0.0.0", + "Microsoft.Extensions.Caching.Memory": "10.0.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.0.0", + "Microsoft.Extensions.Configuration.Binder": "10.0.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "10.0.0.0", + "Microsoft.Extensions.Configuration": "10.0.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "10.0.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "10.0.0.0", + "Microsoft.Extensions.Configuration.Ini": "10.0.0.0", + "Microsoft.Extensions.Configuration.Json": "10.0.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile": "10.0.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "10.0.0.0", + "Microsoft.Extensions.Configuration.Xml": "10.0.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0.0", + "Microsoft.Extensions.DependencyInjection": "10.0.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "10.0.0.0", + "Microsoft.Extensions.Diagnostics": "10.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "10.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "10.0.0.0", + "Microsoft.Extensions.Features": "10.0.0.0", + "Microsoft.Extensions.FileProviders.Abstractions": "10.0.0.0", + "Microsoft.Extensions.FileProviders.Composite": "10.0.0.0", + "Microsoft.Extensions.FileProviders.Embedded": "10.0.0.0", + "Microsoft.Extensions.FileProviders.Physical": "10.0.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "10.0.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "10.0.0.0", + "Microsoft.Extensions.Hosting": "10.0.0.0", + "Microsoft.Extensions.Http": "10.0.0.0", + "Microsoft.Extensions.Identity.Core": "10.0.0.0", + "Microsoft.Extensions.Identity.Stores": "10.0.0.0", + "Microsoft.Extensions.Localization.Abstractions": "10.0.0.0", + "Microsoft.Extensions.Localization": "10.0.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0.0", + "Microsoft.Extensions.Logging.Configuration": "10.0.0.0", + "Microsoft.Extensions.Logging.Console": "10.0.0.0", + "Microsoft.Extensions.Logging.Debug": "10.0.0.0", + "Microsoft.Extensions.Logging": "10.0.0.0", + "Microsoft.Extensions.Logging.EventLog": "10.0.0.0", + "Microsoft.Extensions.Logging.EventSource": "10.0.0.0", + "Microsoft.Extensions.Logging.TraceSource": "10.0.0.0", + "Microsoft.Extensions.ObjectPool": "10.0.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "10.0.0.0", + "Microsoft.Extensions.Options.DataAnnotations": "10.0.0.0", + "Microsoft.Extensions.Options": "10.0.0.0", + "Microsoft.Extensions.Primitives": "10.0.0.0", + "Microsoft.Extensions.Validation": "10.0.0.0", + "Microsoft.Extensions.WebEncoders": "10.0.0.0", + "Microsoft.JSInterop": "10.0.0.0", + "Microsoft.Net.Http.Headers": "10.0.0.0", + "Microsoft.VisualBasic.Core": "15.0.0.0", + "Microsoft.VisualBasic": "10.0.0.0", + "Microsoft.Win32.Primitives": "10.0.0.0", + "Microsoft.Win32.Registry": "10.0.0.0", + "mscorlib": "4.0.0.0", + "netstandard": "2.1.0.0", + "System.AppContext": "10.0.0.0", + "System.Buffers": "10.0.0.0", + "System.Collections.Concurrent": "10.0.0.0", + "System.Collections": "10.0.0.0", + "System.Collections.Immutable": "10.0.0.0", + "System.Collections.NonGeneric": "10.0.0.0", + "System.Collections.Specialized": "10.0.0.0", + "System.ComponentModel.Annotations": "10.0.0.0", + "System.ComponentModel.DataAnnotations": "4.0.0.0", + "System.ComponentModel": "10.0.0.0", + "System.ComponentModel.EventBasedAsync": "10.0.0.0", + "System.ComponentModel.Primitives": "10.0.0.0", + "System.ComponentModel.TypeConverter": "10.0.0.0", + "System.Configuration": "4.0.0.0", + "System.Console": "10.0.0.0", + "System.Core": "4.0.0.0", + "System.Data.Common": "10.0.0.0", + "System.Data.DataSetExtensions": "10.0.0.0", + "System.Data": "4.0.0.0", + "System.Diagnostics.Contracts": "10.0.0.0", + "System.Diagnostics.Debug": "10.0.0.0", + "System.Diagnostics.DiagnosticSource": "10.0.0.0", + "System.Diagnostics.EventLog": "10.0.0.0", + "System.Diagnostics.FileVersionInfo": "10.0.0.0", + "System.Diagnostics.Process": "10.0.0.0", + "System.Diagnostics.StackTrace": "10.0.0.0", + "System.Diagnostics.TextWriterTraceListener": "10.0.0.0", + "System.Diagnostics.Tools": "10.0.0.0", + "System.Diagnostics.TraceSource": "10.0.0.0", + "System.Diagnostics.Tracing": "10.0.0.0", + "System": "4.0.0.0", + "System.Drawing": "4.0.0.0", + "System.Drawing.Primitives": "10.0.0.0", + "System.Dynamic.Runtime": "10.0.0.0", + "System.Formats.Asn1": "10.0.0.0", + "System.Formats.Cbor": "10.0.0.0", + "System.Formats.Tar": "10.0.0.0", + "System.Globalization.Calendars": "10.0.0.0", + "System.Globalization": "10.0.0.0", + "System.Globalization.Extensions": "10.0.0.0", + "System.IO.Compression.Brotli": "10.0.0.0", + "System.IO.Compression": "10.0.0.0", + "System.IO.Compression.FileSystem": "4.0.0.0", + "System.IO.Compression.ZipFile": "10.0.0.0", + "System.IO": "10.0.0.0", + "System.IO.FileSystem.AccessControl": "10.0.0.0", + "System.IO.FileSystem": "10.0.0.0", + "System.IO.FileSystem.DriveInfo": "10.0.0.0", + "System.IO.FileSystem.Primitives": "10.0.0.0", + "System.IO.FileSystem.Watcher": "10.0.0.0", + "System.IO.IsolatedStorage": "10.0.0.0", + "System.IO.MemoryMappedFiles": "10.0.0.0", + "System.IO.Pipelines": "10.0.0.0", + "System.IO.Pipes.AccessControl": "10.0.0.0", + "System.IO.Pipes": "10.0.0.0", + "System.IO.UnmanagedMemoryStream": "10.0.0.0", + "System.Linq.AsyncEnumerable": "10.0.0.0", + "System.Linq": "10.0.0.0", + "System.Linq.Expressions": "10.0.0.0", + "System.Linq.Parallel": "10.0.0.0", + "System.Linq.Queryable": "10.0.0.0", + "System.Memory": "10.0.0.0", + "System.Net": "4.0.0.0", + "System.Net.Http": "10.0.0.0", + "System.Net.Http.Json": "10.0.0.0", + "System.Net.HttpListener": "10.0.0.0", + "System.Net.Mail": "10.0.0.0", + "System.Net.NameResolution": "10.0.0.0", + "System.Net.NetworkInformation": "10.0.0.0", + "System.Net.Ping": "10.0.0.0", + "System.Net.Primitives": "10.0.0.0", + "System.Net.Quic": "10.0.0.0", + "System.Net.Requests": "10.0.0.0", + "System.Net.Security": "10.0.0.0", + "System.Net.ServerSentEvents": "10.0.0.0", + "System.Net.ServicePoint": "10.0.0.0", + "System.Net.Sockets": "10.0.0.0", + "System.Net.WebClient": "10.0.0.0", + "System.Net.WebHeaderCollection": "10.0.0.0", + "System.Net.WebProxy": "10.0.0.0", + "System.Net.WebSockets.Client": "10.0.0.0", + "System.Net.WebSockets": "10.0.0.0", + "System.Numerics": "4.0.0.0", + "System.Numerics.Vectors": "10.0.0.0", + "System.ObjectModel": "10.0.0.0", + "System.Reflection.DispatchProxy": "10.0.0.0", + "System.Reflection": "10.0.0.0", + "System.Reflection.Emit": "10.0.0.0", + "System.Reflection.Emit.ILGeneration": "10.0.0.0", + "System.Reflection.Emit.Lightweight": "10.0.0.0", + "System.Reflection.Extensions": "10.0.0.0", + "System.Reflection.Metadata": "10.0.0.0", + "System.Reflection.Primitives": "10.0.0.0", + "System.Reflection.TypeExtensions": "10.0.0.0", + "System.Resources.Reader": "10.0.0.0", + "System.Resources.ResourceManager": "10.0.0.0", + "System.Resources.Writer": "10.0.0.0", + "System.Runtime.CompilerServices.Unsafe": "10.0.0.0", + "System.Runtime.CompilerServices.VisualC": "10.0.0.0", + "System.Runtime": "10.0.0.0", + "System.Runtime.Extensions": "10.0.0.0", + "System.Runtime.Handles": "10.0.0.0", + "System.Runtime.InteropServices": "10.0.0.0", + "System.Runtime.InteropServices.JavaScript": "10.0.0.0", + "System.Runtime.InteropServices.RuntimeInformation": "10.0.0.0", + "System.Runtime.Intrinsics": "10.0.0.0", + "System.Runtime.Loader": "10.0.0.0", + "System.Runtime.Numerics": "10.0.0.0", + "System.Runtime.Serialization": "4.0.0.0", + "System.Runtime.Serialization.Formatters": "8.1.0.0", + "System.Runtime.Serialization.Json": "10.0.0.0", + "System.Runtime.Serialization.Primitives": "10.0.0.0", + "System.Runtime.Serialization.Xml": "10.0.0.0", + "System.Security.AccessControl": "10.0.0.0", + "System.Security.Claims": "10.0.0.0", + "System.Security.Cryptography.Algorithms": "10.0.0.0", + "System.Security.Cryptography.Cng": "10.0.0.0", + "System.Security.Cryptography.Csp": "10.0.0.0", + "System.Security.Cryptography": "10.0.0.0", + "System.Security.Cryptography.Encoding": "10.0.0.0", + "System.Security.Cryptography.OpenSsl": "10.0.0.0", + "System.Security.Cryptography.Primitives": "10.0.0.0", + "System.Security.Cryptography.X509Certificates": "10.0.0.0", + "System.Security.Cryptography.Xml": "10.0.0.0", + "System.Security": "4.0.0.0", + "System.Security.Principal": "10.0.0.0", + "System.Security.Principal.Windows": "10.0.0.0", + "System.Security.SecureString": "10.0.0.0", + "System.ServiceModel.Web": "4.0.0.0", + "System.ServiceProcess": "4.0.0.0", + "System.Text.Encoding.CodePages": "10.0.0.0", + "System.Text.Encoding": "10.0.0.0", + "System.Text.Encoding.Extensions": "10.0.0.0", + "System.Text.Encodings.Web": "10.0.0.0", + "System.Text.Json": "10.0.0.0", + "System.Text.RegularExpressions": "10.0.0.0", + "System.Threading.AccessControl": "10.0.0.0", + "System.Threading.Channels": "10.0.0.0", + "System.Threading": "10.0.0.0", + "System.Threading.Overlapped": "10.0.0.0", + "System.Threading.RateLimiting": "10.0.0.0", + "System.Threading.Tasks.Dataflow": "10.0.0.0", + "System.Threading.Tasks": "10.0.0.0", + "System.Threading.Tasks.Extensions": "10.0.0.0", + "System.Threading.Tasks.Parallel": "10.0.0.0", + "System.Threading.Thread": "10.0.0.0", + "System.Threading.ThreadPool": "10.0.0.0", + "System.Threading.Timer": "10.0.0.0", + "System.Transactions": "4.0.0.0", + "System.Transactions.Local": "10.0.0.0", + "System.ValueTuple": "10.0.0.0", + "System.Web": "4.0.0.0", + "System.Web.HttpUtility": "10.0.0.0", + "System.Windows": "4.0.0.0", + "System.Xml": "4.0.0.0", + "System.Xml.Linq": "4.0.0.0", + "System.Xml.ReaderWriter": "10.0.0.0", + "System.Xml.Serialization": "4.0.0.0", + "System.Xml.XDocument": "10.0.0.0", + "System.Xml.XmlDocument": "10.0.0.0", + "System.Xml.XmlSerializer": "10.0.0.0", + "System.Xml.XPath": "10.0.0.0", + "System.Xml.XPath.XDocument": "10.0.0.0", + "WindowsBase": "4.0.0.0" + }, + "runtime": { + "Auth.API.dll": {} + }, + "compile": { + "Auth.API.dll": {} + } + }, + "Bogus/35.6.3": { + "runtime": { + "lib/net6.0/Bogus.dll": { + "assemblyVersion": "35.6.3.0", + "fileVersion": "35.6.3.0" + } + }, + "compile": { + "lib/net6.0/Bogus.dll": {} + } + }, + "Castle.Core/5.2.1": { + "runtime": { + "lib/net6.0/Castle.Core.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.2.1.0" + } + }, + "compile": { + "lib/net6.0/Castle.Core.dll": {} + } + }, + "FluentEmail.Core/3.0.2": { + "runtime": { + "lib/netstandard2.0/FluentEmail.Core.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentEmail.Core.dll": {} + } + }, + "FluentEmail.Razor/3.0.2": { + "dependencies": { + "FluentEmail.Core": "3.0.2", + "RazorLight": "2.0.0-rc.3" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Razor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentEmail.Razor.dll": {} + } + }, + "FluentEmail.Smtp/3.0.2": { + "dependencies": { + "FluentEmail.Core": "3.0.2" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Smtp.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentEmail.Smtp.dll": {} + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + }, + "compile": { + "lib/net6.0/Humanizer.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/10.0.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {} + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/10.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/5.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "5.0.0", + "Microsoft.CodeAnalysis.Razor": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.52605" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.OpenApi/10.0.0": { + "dependencies": { + "Microsoft.OpenApi": "2.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": {} + } + }, + "Microsoft.AspNetCore.Razor.Language/5.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.52605" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.Build/17.7.2": { + "dependencies": { + "Microsoft.Build.Framework": "17.14.28", + "Microsoft.NET.StringTools": "17.14.28", + "System.Configuration.ConfigurationManager": "9.0.0", + "System.Reflection.MetadataLoadContext": "7.0.0", + "System.Security.Permissions": "9.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.Build.dll": { + "assemblyVersion": "15.1.0.0", + "fileVersion": "17.7.2.37605" + } + }, + "compile": { + "ref/net7.0/Microsoft.Build.dll": {} + } + }, + "Microsoft.Build.Framework/17.14.28": { + "runtime": { + "lib/net9.0/Microsoft.Build.Framework.dll": { + "assemblyVersion": "15.1.0.0", + "fileVersion": "17.14.28.46601" + } + }, + "compile": { + "ref/net9.0/Microsoft.Build.Framework.dll": {} + } + }, + "Microsoft.Build.Tasks.Core/17.14.28": { + "dependencies": { + "Microsoft.Build.Framework": "17.14.28", + "Microsoft.Build.Utilities.Core": "17.14.28", + "Microsoft.NET.StringTools": "17.14.28", + "System.CodeDom": "9.0.0", + "System.Configuration.ConfigurationManager": "9.0.0", + "System.Formats.Nrbf": "9.0.0", + "System.Resources.Extensions": "9.0.0", + "System.Security.Cryptography.Pkcs": "9.0.0", + "System.Security.Cryptography.ProtectedData": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Build.Tasks.Core.dll": { + "assemblyVersion": "15.1.0.0", + "fileVersion": "17.14.28.46601" + } + }, + "compile": { + "ref/net9.0/Microsoft.Build.Tasks.Core.dll": {} + } + }, + "Microsoft.Build.Utilities.Core/17.14.28": { + "dependencies": { + "Microsoft.Build.Framework": "17.14.28", + "Microsoft.NET.StringTools": "17.14.28", + "System.Configuration.ConfigurationManager": "9.0.0", + "System.Security.Cryptography.ProtectedData": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Build.Utilities.Core.dll": { + "assemblyVersion": "15.1.0.0", + "fileVersion": "17.14.28.46601" + } + }, + "compile": { + "ref/net9.0/Microsoft.Build.Utilities.Core.dll": {} + } + }, + "Microsoft.CodeAnalysis.Common/4.14.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.14.0.0", + "fileVersion": "4.1400.25.26210" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp/4.14.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "4.14.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.14.0.0", + "fileVersion": "4.1400.25.26210" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.14.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp": "4.14.0", + "Microsoft.CodeAnalysis.Common": "4.14.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.14.0", + "System.Composition": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "4.14.0.0", + "fileVersion": "4.1400.25.26210" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} + } + }, + "Microsoft.CodeAnalysis.Razor/5.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "5.0.0", + "Microsoft.CodeAnalysis.CSharp": "4.14.0", + "Microsoft.CodeAnalysis.Common": "4.14.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.52605" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.14.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "4.14.0", + "System.Composition": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "4.14.0.0", + "fileVersion": "4.1400.25.26210" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": {} + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.14.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build": "17.7.2", + "Microsoft.Build.Framework": "17.14.28", + "Microsoft.Build.Tasks.Core": "17.14.28", + "Microsoft.Build.Utilities.Core": "17.14.28", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.14.0", + "Newtonsoft.Json": "13.0.3", + "System.CodeDom": "9.0.0", + "System.Composition": "9.0.0", + "System.Configuration.ConfigurationManager": "9.0.0", + "System.Resources.Extensions": "9.0.0", + "System.Security.Cryptography.Pkcs": "9.0.0", + "System.Security.Cryptography.ProtectedData": "9.0.0", + "System.Security.Permissions": "9.0.0", + "System.Windows.Extensions": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll": { + "assemblyVersion": "4.14.0.0", + "fileVersion": "4.1400.25.26210" + }, + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "4.14.0.0", + "fileVersion": "4.1400.25.26210" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll": {}, + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": {} + } + }, + "Microsoft.EntityFrameworkCore/10.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "10.0.0", + "Microsoft.EntityFrameworkCore.Analyzers": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + }, + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + }, + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Design/10.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.14.28", + "Microsoft.Build.Tasks.Core": "17.14.28", + "Microsoft.Build.Utilities.Core": "17.14.28", + "Microsoft.CodeAnalysis.CSharp": "4.14.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.14.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.14.0", + "Microsoft.EntityFrameworkCore.Relational": "10.0.0", + "Microsoft.Extensions.DependencyModel": "10.0.0", + "Mono.TextTemplating": "3.0.0", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + }, + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Design.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Proxies/10.0.0": { + "dependencies": { + "Castle.Core": "5.2.1", + "Microsoft.EntityFrameworkCore": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Proxies.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + }, + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Proxies.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + }, + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": {} + } + }, + "Microsoft.Extensions.DependencyModel/10.0.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + } + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": {} + } + }, + "Microsoft.NET.StringTools/17.14.28": { + "runtime": { + "lib/net9.0/Microsoft.NET.StringTools.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "17.14.28.46601" + } + }, + "compile": { + "ref/net9.0/Microsoft.NET.StringTools.dll": {} + } + }, + "Microsoft.OpenApi/2.0.0": { + "runtime": { + "lib/net8.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + }, + "compile": { + "lib/net8.0/Microsoft.OpenApi.dll": {} + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "9.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + }, + "compile": { + "lib/net6.0/Mono.TextTemplating.dll": {} + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + }, + "compile": { + "lib/net6.0/Newtonsoft.Json.dll": {} + } + }, + "Npgsql/10.0.0": { + "runtime": { + "lib/net10.0/Npgsql.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.0.0" + } + }, + "compile": { + "lib/net10.0/Npgsql.dll": {} + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.0", + "Microsoft.EntityFrameworkCore.Relational": "10.0.0", + "Npgsql": "10.0.0" + }, + "runtime": { + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.0.0" + } + }, + "compile": { + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {} + } + }, + "RazorLight/2.0.0-rc.3": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "5.0.0", + "Microsoft.CodeAnalysis.Razor": "5.0.0", + "Microsoft.Extensions.DependencyModel": "10.0.0" + }, + "runtime": { + "lib/net5.0/RazorLight.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + }, + "compile": { + "lib/net5.0/RazorLight.dll": {} + } + }, + "Scalar.AspNetCore/2.12.11": { + "runtime": { + "lib/net10.0/Scalar.AspNetCore.dll": { + "assemblyVersion": "2.12.11.0", + "fileVersion": "2.12.11.0" + } + }, + "compile": { + "lib/net10.0/Scalar.AspNetCore.dll": {} + } + }, + "System.CodeDom/9.0.0": { + "runtime": { + "lib/net9.0/System.CodeDom.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "compile": { + "lib/net9.0/System.CodeDom.dll": {} + } + }, + "System.Composition/9.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "9.0.0", + "System.Composition.Convention": "9.0.0", + "System.Composition.Hosting": "9.0.0", + "System.Composition.Runtime": "9.0.0", + "System.Composition.TypedParts": "9.0.0" + } + }, + "System.Composition.AttributedModel/9.0.0": { + "runtime": { + "lib/net9.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "compile": { + "lib/net9.0/System.Composition.AttributedModel.dll": {} + } + }, + "System.Composition.Convention/9.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Composition.Convention.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "compile": { + "lib/net9.0/System.Composition.Convention.dll": {} + } + }, + "System.Composition.Hosting/9.0.0": { + "dependencies": { + "System.Composition.Runtime": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Composition.Hosting.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "compile": { + "lib/net9.0/System.Composition.Hosting.dll": {} + } + }, + "System.Composition.Runtime/9.0.0": { + "runtime": { + "lib/net9.0/System.Composition.Runtime.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "compile": { + "lib/net9.0/System.Composition.Runtime.dll": {} + } + }, + "System.Composition.TypedParts/9.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "9.0.0", + "System.Composition.Hosting": "9.0.0", + "System.Composition.Runtime": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "compile": { + "lib/net9.0/System.Composition.TypedParts.dll": {} + } + }, + "System.Configuration.ConfigurationManager/9.0.0": { + "dependencies": { + "System.Security.Cryptography.ProtectedData": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "compile": { + "lib/net9.0/System.Configuration.ConfigurationManager.dll": {} + } + }, + "System.Formats.Nrbf/9.0.0": { + "runtime": { + "lib/net9.0/System.Formats.Nrbf.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "compile": { + "lib/net9.0/System.Formats.Nrbf.dll": {} + } + }, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.12.1", + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + }, + "compile": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": {} + } + }, + "System.Reflection.MetadataLoadContext/7.0.0": { + "runtime": { + "lib/net7.0/System.Reflection.MetadataLoadContext.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "compile": { + "lib/net7.0/System.Reflection.MetadataLoadContext.dll": {} + } + }, + "System.Resources.Extensions/9.0.0": { + "dependencies": { + "System.Formats.Nrbf": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Resources.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "compile": { + "lib/net9.0/System.Resources.Extensions.dll": {} + } + }, + "System.Security.Cryptography.ProtectedData/9.0.0": { + "runtime": { + "lib/net9.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "compile": { + "lib/net9.0/System.Security.Cryptography.ProtectedData.dll": {} + } + }, + "System.Security.Permissions/9.0.0": { + "dependencies": { + "System.Windows.Extensions": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Security.Permissions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "compile": { + "lib/net9.0/System.Security.Permissions.dll": {} + } + }, + "System.Windows.Extensions/9.0.0": { + "runtime": { + "lib/net9.0/System.Windows.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net9.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "compile": { + "lib/net9.0/System.Windows.Extensions.dll": {} + } + }, + "Auth.Contracts/1.0.0": { + "runtime": { + "Auth.Contracts.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + }, + "compile": { + "Auth.Contracts.dll": {} + } + }, + "Auth.Core/1.0.0": { + "dependencies": { + "Auth.Contracts": "1.0.0", + "Auth.Domain": "1.0.0", + "FluentEmail.Core": "3.0.2", + "FluentEmail.Smtp": "3.0.2", + "Generic": "1.0.0", + "Microsoft.AspNetCore.Authentication.JwtBearer": "10.0.0", + "Microsoft.EntityFrameworkCore": "10.0.0", + "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "Auth.Core.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + }, + "compile": { + "Auth.Core.dll": {} + } + }, + "Auth.Domain/1.0.0": { + "dependencies": { + "Auth.Contracts": "1.0.0", + "Bogus": "35.6.3", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "10.0.0", + "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0" + }, + "runtime": { + "Auth.Domain.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + }, + "compile": { + "Auth.Domain.dll": {} + } + }, + "Generic/1.0.0": { + "runtime": { + "Generic.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + }, + "compile": { + "Generic.dll": {} + } + }, + "Microsoft.AspNetCore.Antiforgery/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Antiforgery.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.BearerToken/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.BearerToken.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Cookies/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Cookies.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Core/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.OAuth/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.OAuth.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization.Policy/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Authorization/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Endpoints/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Endpoints.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Forms/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Forms.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Server/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Server.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Web/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Web.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.CookiePolicy/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.CookiePolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cors/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.Internal/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.Internal.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Extensions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HostFiltering/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HostFiltering.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Html.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Html.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Extensions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Features/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Results/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Results.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpLogging/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpLogging.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpOverrides/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpOverrides.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpsPolicy/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpsPolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Identity/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Identity.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization.Routing/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Metadata/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Metadata.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Core/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Cors/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Localization/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Razor/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.RazorPages/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.RazorPages.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.OutputCaching/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.OutputCaching.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.RateLimiting/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.RateLimiting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor.Runtime/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.Runtime.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.RequestDecompression/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.RequestDecompression.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCompression/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCompression.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Rewrite/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Rewrite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.HttpSys/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.HttpSys.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IIS/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IIS.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IISIntegration/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IISIntegration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Session/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Session.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Core/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.StaticAssets/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.StaticAssets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.StaticFiles/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.StaticFiles.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebSockets/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.WebSockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebUtilities/10.0.0.0": { + "compile": { + "Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "compileOnly": true + }, + "Microsoft.CSharp/10.0.0.0": { + "compile": { + "Microsoft.CSharp.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Memory/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Caching.Memory.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Binder/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.CommandLine/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.FileExtensions/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Ini/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Ini.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Json/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.KeyPerFile/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.KeyPerFile.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.UserSecrets/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.UserSecrets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Xml/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DependencyInjection/10.0.0.0": { + "compile": { + "Microsoft.Extensions.DependencyInjection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Features/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Composite/10.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Composite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Embedded/10.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Embedded.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Physical/10.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileSystemGlobbing/10.0.0.0": { + "compile": { + "Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Http/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Core/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Stores/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Stores.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Localization.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Configuration/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Console/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Console.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Debug/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Debug.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventLog/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventLog.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventSource/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.TraceSource/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.TraceSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.ObjectPool/10.0.0.0": { + "compile": { + "Microsoft.Extensions.ObjectPool.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.DataAnnotations/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Primitives/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Validation/10.0.0.0": { + "compile": { + "Microsoft.Extensions.Validation.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.WebEncoders/10.0.0.0": { + "compile": { + "Microsoft.Extensions.WebEncoders.dll": {} + }, + "compileOnly": true + }, + "Microsoft.JSInterop/10.0.0.0": { + "compile": { + "Microsoft.JSInterop.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Net.Http.Headers/10.0.0.0": { + "compile": { + "Microsoft.Net.Http.Headers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic.Core/15.0.0.0": { + "compile": { + "Microsoft.VisualBasic.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic/10.0.0.0": { + "compile": { + "Microsoft.VisualBasic.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Primitives/10.0.0.0": { + "compile": { + "Microsoft.Win32.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Registry/10.0.0.0": { + "compile": { + "Microsoft.Win32.Registry.dll": {} + }, + "compileOnly": true + }, + "mscorlib/4.0.0.0": { + "compile": { + "mscorlib.dll": {} + }, + "compileOnly": true + }, + "netstandard/2.1.0.0": { + "compile": { + "netstandard.dll": {} + }, + "compileOnly": true + }, + "System.AppContext/10.0.0.0": { + "compile": { + "System.AppContext.dll": {} + }, + "compileOnly": true + }, + "System.Buffers/10.0.0.0": { + "compile": { + "System.Buffers.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Concurrent/10.0.0.0": { + "compile": { + "System.Collections.Concurrent.dll": {} + }, + "compileOnly": true + }, + "System.Collections/10.0.0.0": { + "compile": { + "System.Collections.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Immutable/10.0.0.0": { + "compile": { + "System.Collections.Immutable.dll": {} + }, + "compileOnly": true + }, + "System.Collections.NonGeneric/10.0.0.0": { + "compile": { + "System.Collections.NonGeneric.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Specialized/10.0.0.0": { + "compile": { + "System.Collections.Specialized.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Annotations/10.0.0.0": { + "compile": { + "System.ComponentModel.Annotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "compile": { + "System.ComponentModel.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel/10.0.0.0": { + "compile": { + "System.ComponentModel.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.EventBasedAsync/10.0.0.0": { + "compile": { + "System.ComponentModel.EventBasedAsync.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Primitives/10.0.0.0": { + "compile": { + "System.ComponentModel.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.TypeConverter/10.0.0.0": { + "compile": { + "System.ComponentModel.TypeConverter.dll": {} + }, + "compileOnly": true + }, + "System.Configuration/4.0.0.0": { + "compile": { + "System.Configuration.dll": {} + }, + "compileOnly": true + }, + "System.Console/10.0.0.0": { + "compile": { + "System.Console.dll": {} + }, + "compileOnly": true + }, + "System.Core/4.0.0.0": { + "compile": { + "System.Core.dll": {} + }, + "compileOnly": true + }, + "System.Data.Common/10.0.0.0": { + "compile": { + "System.Data.Common.dll": {} + }, + "compileOnly": true + }, + "System.Data.DataSetExtensions/10.0.0.0": { + "compile": { + "System.Data.DataSetExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Data/4.0.0.0": { + "compile": { + "System.Data.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Contracts/10.0.0.0": { + "compile": { + "System.Diagnostics.Contracts.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Debug/10.0.0.0": { + "compile": { + "System.Diagnostics.Debug.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.DiagnosticSource/10.0.0.0": { + "compile": { + "System.Diagnostics.DiagnosticSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.EventLog/10.0.0.0": { + "compile": { + "System.Diagnostics.EventLog.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.FileVersionInfo/10.0.0.0": { + "compile": { + "System.Diagnostics.FileVersionInfo.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Process/10.0.0.0": { + "compile": { + "System.Diagnostics.Process.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.StackTrace/10.0.0.0": { + "compile": { + "System.Diagnostics.StackTrace.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TextWriterTraceListener/10.0.0.0": { + "compile": { + "System.Diagnostics.TextWriterTraceListener.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tools/10.0.0.0": { + "compile": { + "System.Diagnostics.Tools.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TraceSource/10.0.0.0": { + "compile": { + "System.Diagnostics.TraceSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tracing/10.0.0.0": { + "compile": { + "System.Diagnostics.Tracing.dll": {} + }, + "compileOnly": true + }, + "System/4.0.0.0": { + "compile": { + "System.dll": {} + }, + "compileOnly": true + }, + "System.Drawing/4.0.0.0": { + "compile": { + "System.Drawing.dll": {} + }, + "compileOnly": true + }, + "System.Drawing.Primitives/10.0.0.0": { + "compile": { + "System.Drawing.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Dynamic.Runtime/10.0.0.0": { + "compile": { + "System.Dynamic.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Formats.Asn1/10.0.0.0": { + "compile": { + "System.Formats.Asn1.dll": {} + }, + "compileOnly": true + }, + "System.Formats.Cbor/10.0.0.0": { + "compile": { + "System.Formats.Cbor.dll": {} + }, + "compileOnly": true + }, + "System.Formats.Tar/10.0.0.0": { + "compile": { + "System.Formats.Tar.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Calendars/10.0.0.0": { + "compile": { + "System.Globalization.Calendars.dll": {} + }, + "compileOnly": true + }, + "System.Globalization/10.0.0.0": { + "compile": { + "System.Globalization.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Extensions/10.0.0.0": { + "compile": { + "System.Globalization.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.Brotli/10.0.0.0": { + "compile": { + "System.IO.Compression.Brotli.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression/10.0.0.0": { + "compile": { + "System.IO.Compression.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "compile": { + "System.IO.Compression.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.ZipFile/10.0.0.0": { + "compile": { + "System.IO.Compression.ZipFile.dll": {} + }, + "compileOnly": true + }, + "System.IO/10.0.0.0": { + "compile": { + "System.IO.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.AccessControl/10.0.0.0": { + "compile": { + "System.IO.FileSystem.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem/10.0.0.0": { + "compile": { + "System.IO.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.DriveInfo/10.0.0.0": { + "compile": { + "System.IO.FileSystem.DriveInfo.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Primitives/10.0.0.0": { + "compile": { + "System.IO.FileSystem.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Watcher/10.0.0.0": { + "compile": { + "System.IO.FileSystem.Watcher.dll": {} + }, + "compileOnly": true + }, + "System.IO.IsolatedStorage/10.0.0.0": { + "compile": { + "System.IO.IsolatedStorage.dll": {} + }, + "compileOnly": true + }, + "System.IO.MemoryMappedFiles/10.0.0.0": { + "compile": { + "System.IO.MemoryMappedFiles.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipelines/10.0.0.0": { + "compile": { + "System.IO.Pipelines.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipes.AccessControl/10.0.0.0": { + "compile": { + "System.IO.Pipes.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipes/10.0.0.0": { + "compile": { + "System.IO.Pipes.dll": {} + }, + "compileOnly": true + }, + "System.IO.UnmanagedMemoryStream/10.0.0.0": { + "compile": { + "System.IO.UnmanagedMemoryStream.dll": {} + }, + "compileOnly": true + }, + "System.Linq.AsyncEnumerable/10.0.0.0": { + "compile": { + "System.Linq.AsyncEnumerable.dll": {} + }, + "compileOnly": true + }, + "System.Linq/10.0.0.0": { + "compile": { + "System.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Expressions/10.0.0.0": { + "compile": { + "System.Linq.Expressions.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Parallel/10.0.0.0": { + "compile": { + "System.Linq.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Queryable/10.0.0.0": { + "compile": { + "System.Linq.Queryable.dll": {} + }, + "compileOnly": true + }, + "System.Memory/10.0.0.0": { + "compile": { + "System.Memory.dll": {} + }, + "compileOnly": true + }, + "System.Net/4.0.0.0": { + "compile": { + "System.Net.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http/10.0.0.0": { + "compile": { + "System.Net.Http.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http.Json/10.0.0.0": { + "compile": { + "System.Net.Http.Json.dll": {} + }, + "compileOnly": true + }, + "System.Net.HttpListener/10.0.0.0": { + "compile": { + "System.Net.HttpListener.dll": {} + }, + "compileOnly": true + }, + "System.Net.Mail/10.0.0.0": { + "compile": { + "System.Net.Mail.dll": {} + }, + "compileOnly": true + }, + "System.Net.NameResolution/10.0.0.0": { + "compile": { + "System.Net.NameResolution.dll": {} + }, + "compileOnly": true + }, + "System.Net.NetworkInformation/10.0.0.0": { + "compile": { + "System.Net.NetworkInformation.dll": {} + }, + "compileOnly": true + }, + "System.Net.Ping/10.0.0.0": { + "compile": { + "System.Net.Ping.dll": {} + }, + "compileOnly": true + }, + "System.Net.Primitives/10.0.0.0": { + "compile": { + "System.Net.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Net.Quic/10.0.0.0": { + "compile": { + "System.Net.Quic.dll": {} + }, + "compileOnly": true + }, + "System.Net.Requests/10.0.0.0": { + "compile": { + "System.Net.Requests.dll": {} + }, + "compileOnly": true + }, + "System.Net.Security/10.0.0.0": { + "compile": { + "System.Net.Security.dll": {} + }, + "compileOnly": true + }, + "System.Net.ServerSentEvents/10.0.0.0": { + "compile": { + "System.Net.ServerSentEvents.dll": {} + }, + "compileOnly": true + }, + "System.Net.ServicePoint/10.0.0.0": { + "compile": { + "System.Net.ServicePoint.dll": {} + }, + "compileOnly": true + }, + "System.Net.Sockets/10.0.0.0": { + "compile": { + "System.Net.Sockets.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebClient/10.0.0.0": { + "compile": { + "System.Net.WebClient.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebHeaderCollection/10.0.0.0": { + "compile": { + "System.Net.WebHeaderCollection.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebProxy/10.0.0.0": { + "compile": { + "System.Net.WebProxy.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets.Client/10.0.0.0": { + "compile": { + "System.Net.WebSockets.Client.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets/10.0.0.0": { + "compile": { + "System.Net.WebSockets.dll": {} + }, + "compileOnly": true + }, + "System.Numerics/4.0.0.0": { + "compile": { + "System.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Numerics.Vectors/10.0.0.0": { + "compile": { + "System.Numerics.Vectors.dll": {} + }, + "compileOnly": true + }, + "System.ObjectModel/10.0.0.0": { + "compile": { + "System.ObjectModel.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.DispatchProxy/10.0.0.0": { + "compile": { + "System.Reflection.DispatchProxy.dll": {} + }, + "compileOnly": true + }, + "System.Reflection/10.0.0.0": { + "compile": { + "System.Reflection.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit/10.0.0.0": { + "compile": { + "System.Reflection.Emit.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.ILGeneration/10.0.0.0": { + "compile": { + "System.Reflection.Emit.ILGeneration.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.Lightweight/10.0.0.0": { + "compile": { + "System.Reflection.Emit.Lightweight.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Extensions/10.0.0.0": { + "compile": { + "System.Reflection.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Metadata/10.0.0.0": { + "compile": { + "System.Reflection.Metadata.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Primitives/10.0.0.0": { + "compile": { + "System.Reflection.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.TypeExtensions/10.0.0.0": { + "compile": { + "System.Reflection.TypeExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Reader/10.0.0.0": { + "compile": { + "System.Resources.Reader.dll": {} + }, + "compileOnly": true + }, + "System.Resources.ResourceManager/10.0.0.0": { + "compile": { + "System.Resources.ResourceManager.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Writer/10.0.0.0": { + "compile": { + "System.Resources.Writer.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.Unsafe/10.0.0.0": { + "compile": { + "System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.VisualC/10.0.0.0": { + "compile": { + "System.Runtime.CompilerServices.VisualC.dll": {} + }, + "compileOnly": true + }, + "System.Runtime/10.0.0.0": { + "compile": { + "System.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Extensions/10.0.0.0": { + "compile": { + "System.Runtime.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Handles/10.0.0.0": { + "compile": { + "System.Runtime.Handles.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices/10.0.0.0": { + "compile": { + "System.Runtime.InteropServices.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.JavaScript/10.0.0.0": { + "compile": { + "System.Runtime.InteropServices.JavaScript.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.RuntimeInformation/10.0.0.0": { + "compile": { + "System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Intrinsics/10.0.0.0": { + "compile": { + "System.Runtime.Intrinsics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Loader/10.0.0.0": { + "compile": { + "System.Runtime.Loader.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Numerics/10.0.0.0": { + "compile": { + "System.Runtime.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization/4.0.0.0": { + "compile": { + "System.Runtime.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Formatters/8.1.0.0": { + "compile": { + "System.Runtime.Serialization.Formatters.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Json/10.0.0.0": { + "compile": { + "System.Runtime.Serialization.Json.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Primitives/10.0.0.0": { + "compile": { + "System.Runtime.Serialization.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Xml/10.0.0.0": { + "compile": { + "System.Runtime.Serialization.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security.AccessControl/10.0.0.0": { + "compile": { + "System.Security.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Claims/10.0.0.0": { + "compile": { + "System.Security.Claims.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Algorithms/10.0.0.0": { + "compile": { + "System.Security.Cryptography.Algorithms.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Cng/10.0.0.0": { + "compile": { + "System.Security.Cryptography.Cng.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Csp/10.0.0.0": { + "compile": { + "System.Security.Cryptography.Csp.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography/10.0.0.0": { + "compile": { + "System.Security.Cryptography.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Encoding/10.0.0.0": { + "compile": { + "System.Security.Cryptography.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.OpenSsl/10.0.0.0": { + "compile": { + "System.Security.Cryptography.OpenSsl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Primitives/10.0.0.0": { + "compile": { + "System.Security.Cryptography.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.X509Certificates/10.0.0.0": { + "compile": { + "System.Security.Cryptography.X509Certificates.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Xml/10.0.0.0": { + "compile": { + "System.Security.Cryptography.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security/4.0.0.0": { + "compile": { + "System.Security.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal/10.0.0.0": { + "compile": { + "System.Security.Principal.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal.Windows/10.0.0.0": { + "compile": { + "System.Security.Principal.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Security.SecureString/10.0.0.0": { + "compile": { + "System.Security.SecureString.dll": {} + }, + "compileOnly": true + }, + "System.ServiceModel.Web/4.0.0.0": { + "compile": { + "System.ServiceModel.Web.dll": {} + }, + "compileOnly": true + }, + "System.ServiceProcess/4.0.0.0": { + "compile": { + "System.ServiceProcess.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.CodePages/10.0.0.0": { + "compile": { + "System.Text.Encoding.CodePages.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding/10.0.0.0": { + "compile": { + "System.Text.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.Extensions/10.0.0.0": { + "compile": { + "System.Text.Encoding.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encodings.Web/10.0.0.0": { + "compile": { + "System.Text.Encodings.Web.dll": {} + }, + "compileOnly": true + }, + "System.Text.Json/10.0.0.0": { + "compile": { + "System.Text.Json.dll": {} + }, + "compileOnly": true + }, + "System.Text.RegularExpressions/10.0.0.0": { + "compile": { + "System.Text.RegularExpressions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.AccessControl/10.0.0.0": { + "compile": { + "System.Threading.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Channels/10.0.0.0": { + "compile": { + "System.Threading.Channels.dll": {} + }, + "compileOnly": true + }, + "System.Threading/10.0.0.0": { + "compile": { + "System.Threading.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Overlapped/10.0.0.0": { + "compile": { + "System.Threading.Overlapped.dll": {} + }, + "compileOnly": true + }, + "System.Threading.RateLimiting/10.0.0.0": { + "compile": { + "System.Threading.RateLimiting.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Dataflow/10.0.0.0": { + "compile": { + "System.Threading.Tasks.Dataflow.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks/10.0.0.0": { + "compile": { + "System.Threading.Tasks.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Extensions/10.0.0.0": { + "compile": { + "System.Threading.Tasks.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Parallel/10.0.0.0": { + "compile": { + "System.Threading.Tasks.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Thread/10.0.0.0": { + "compile": { + "System.Threading.Thread.dll": {} + }, + "compileOnly": true + }, + "System.Threading.ThreadPool/10.0.0.0": { + "compile": { + "System.Threading.ThreadPool.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Timer/10.0.0.0": { + "compile": { + "System.Threading.Timer.dll": {} + }, + "compileOnly": true + }, + "System.Transactions/4.0.0.0": { + "compile": { + "System.Transactions.dll": {} + }, + "compileOnly": true + }, + "System.Transactions.Local/10.0.0.0": { + "compile": { + "System.Transactions.Local.dll": {} + }, + "compileOnly": true + }, + "System.ValueTuple/10.0.0.0": { + "compile": { + "System.ValueTuple.dll": {} + }, + "compileOnly": true + }, + "System.Web/4.0.0.0": { + "compile": { + "System.Web.dll": {} + }, + "compileOnly": true + }, + "System.Web.HttpUtility/10.0.0.0": { + "compile": { + "System.Web.HttpUtility.dll": {} + }, + "compileOnly": true + }, + "System.Windows/4.0.0.0": { + "compile": { + "System.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Xml/4.0.0.0": { + "compile": { + "System.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Linq/4.0.0.0": { + "compile": { + "System.Xml.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Xml.ReaderWriter/10.0.0.0": { + "compile": { + "System.Xml.ReaderWriter.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Serialization/4.0.0.0": { + "compile": { + "System.Xml.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XDocument/10.0.0.0": { + "compile": { + "System.Xml.XDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlDocument/10.0.0.0": { + "compile": { + "System.Xml.XmlDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlSerializer/10.0.0.0": { + "compile": { + "System.Xml.XmlSerializer.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath/10.0.0.0": { + "compile": { + "System.Xml.XPath.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath.XDocument/10.0.0.0": { + "compile": { + "System.Xml.XPath.XDocument.dll": {} + }, + "compileOnly": true + }, + "WindowsBase/4.0.0.0": { + "compile": { + "WindowsBase.dll": {} + }, + "compileOnly": true + }, + "Microsoft.CodeAnalysis.Analyzers/3.11.0": { + "compileOnly": true + }, + "Microsoft.EntityFrameworkCore.Analyzers/10.0.0": { + "compileOnly": true + }, + "System.Security.Cryptography.Pkcs/9.0.0": { + "compile": { + "lib/net9.0/System.Security.Cryptography.Pkcs.dll": {} + }, + "compileOnly": true + } + } + }, + "libraries": { + "Auth.API/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Bogus/35.6.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+5omfZWy8gOcbpc48vKfMI4h/ecbdf3NQm6xCl3zMbaP4J3rMMm5h3kPFeIWBgt4mbz6YY0eeZDLR/6yv1khKw==", + "path": "bogus/35.6.3", + "hashPath": "bogus.35.6.3.nupkg.sha512" + }, + "Castle.Core/5.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wHARzQA695jwwKreOzNsq54KiGqKP38tv8hi8e2FXDEC/sA6BtrX90tVPDkOfVu13PbEzr00TCV8coikl+D1Iw==", + "path": "castle.core/5.2.1", + "hashPath": "castle.core.5.2.1.nupkg.sha512" + }, + "FluentEmail.Core/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==", + "path": "fluentemail.core/3.0.2", + "hashPath": "fluentemail.core.3.0.2.nupkg.sha512" + }, + "FluentEmail.Razor/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XdZS2n9jjrx2qzyBGvgstYFIm2laYo1j7YMUZI0rylZhpZHIic3taWqe78xF5dcsXpJvucmxRCshhF6hl02Dmw==", + "path": "fluentemail.razor/3.0.2", + "hashPath": "fluentemail.razor.3.0.2.nupkg.sha512" + }, + "FluentEmail.Smtp/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==", + "path": "fluentemail.smtp/3.0.2", + "hashPath": "fluentemail.smtp.3.0.2.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" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0BgDfT1GoZnzjJOBwx5vFMK5JtqsTEas9pCEwd1/KKxNUAqFmreN60WeUoF+CsmSd9tOQuqWedvdBo/QqHuNTQ==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/10.0.0", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mH1+58nbX5RWSd8hajSnXSdpQ1MN3oca488Zd+DvKX2nPTAyTVNRzubMV06BmPcjOZ9waLr/AjwcNiCQ8bCscQ==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/10.0.0", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+vVXw0oVVu5dnwseBxZFVeYZ0qPJTI03DTdghRKrcK+QhTM3Nu8orukKqdYObsI4mWZADE8wTILuYR5CowJr+w==", + "path": "microsoft.aspnetcore.mvc.razor.extensions/5.0.0", + "hashPath": "microsoft.aspnetcore.mvc.razor.extensions.5.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.OpenApi/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0aqIF1t+sA2T62LIeMtXGSiaV7keGQaJnvwwmu+htQdjCaKYARfXAeqp4nHH9y2etpilyZ/tnQzZg4Ilmo/c4Q==", + "path": "microsoft.aspnetcore.openapi/10.0.0", + "hashPath": "microsoft.aspnetcore.openapi.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6yOBBASGfXMx1fY6hyjvG+oM3eR8vovIehDdEZW7jAV4gKlY4xuAvTm7Iw1fEq7KPunh2VrJwo7oRK1XxUn1OQ==", + "path": "microsoft.aspnetcore.razor.language/5.0.0", + "hashPath": "microsoft.aspnetcore.razor.language.5.0.0.nupkg.sha512" + }, + "Microsoft.Build/17.7.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AmWnumxsMiRycFfE3kq/XnFFTAoPpCWl3UuiKQWCa5Z0+hBKVoiydzS2iXJGd3x+jry+qaTR9GzoezjV9NFT5A==", + "path": "microsoft.build/17.7.2", + "hashPath": "microsoft.build.17.7.2.nupkg.sha512" + }, + "Microsoft.Build.Framework/17.14.28": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wRcyTzGV0LRAtFdrddtioh59Ky4/zbvyraP0cQkDzRSRkhgAQb0K88D/JNC6VHLIXanRi3mtV1jU0uQkBwmiVg==", + "path": "microsoft.build.framework/17.14.28", + "hashPath": "microsoft.build.framework.17.14.28.nupkg.sha512" + }, + "Microsoft.Build.Tasks.Core/17.14.28": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jk3O0tXp9QWPXhLJ7Pl8wm/eGtGgA1++vwHGWEmnwMU6eP//ghtcCUpQh9CQMwEKGDnH0aJf285V1s8yiSlKfQ==", + "path": "microsoft.build.tasks.core/17.14.28", + "hashPath": "microsoft.build.tasks.core.17.14.28.nupkg.sha512" + }, + "Microsoft.Build.Utilities.Core/17.14.28": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rhSdPo8QfLXXWM+rY0x0z1G4KK4ZhMoIbHROyDj8MUBFab9nvHR0NaMnjzOgXldhmD2zi2ir8d6xCatNzlhF5g==", + "path": "microsoft.build.utilities.core/17.14.28", + "hashPath": "microsoft.build.utilities.core.17.14.28.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PC3tuwZYnC+idaPuoC/AZpEdwrtX7qFpmnrfQkgobGIWiYmGi5MCRtl5mx6QrfMGQpK78X2lfIEoZDLg/qnuHg==", + "path": "microsoft.codeanalysis.common/4.14.0", + "hashPath": "microsoft.codeanalysis.common.4.14.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-568a6wcTivauIhbeWcCwfWwIn7UV7MeHEBvFB2uzGIpM2OhJ4eM/FZ8KS0yhPoNxnSpjGzz7x7CIjTxhslojQA==", + "path": "microsoft.codeanalysis.csharp/4.14.0", + "hashPath": "microsoft.codeanalysis.csharp.4.14.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QkgCEM4qJo6gdtblXtNgHqtykS61fxW+820hx5JN6n9DD4mQtqNB+6fPeJ3GQWg6jkkGz6oG9yZq7H3Gf0zwYw==", + "path": "microsoft.codeanalysis.csharp.workspaces/4.14.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.14.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Razor/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s4u/6z/MQ35y/egrXf4WgJlUZf5GGvuba9mZ700dH4XxLBrA9Fw9kFZ8uymoATry7hwz5owvFhBVo+2VnoiGRg==", + "path": "microsoft.codeanalysis.razor/5.0.0", + "hashPath": "microsoft.codeanalysis.razor.5.0.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wNVK9JrqjqDC/WgBUFV6henDfrW87NPfo98nzah/+M/G1D6sBOPtXwqce3UQNn+6AjTnmkHYN1WV9XmTlPemTw==", + "path": "microsoft.codeanalysis.workspaces.common/4.14.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.4.14.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YU7Sguzm1Cuhi2U6S0DRKcVpqAdBd2QmatpyE0KqYMJogJ9E27KHOWGUzAOjsyjAM7sNaUk+a8VPz24knDseFw==", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.14.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.14.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hHa2amRjMyBLUH/KTML6FgIAhZ0VFYkhCKwWEax0rO6iNeM1P5MflyeQLE5dniSIOZHc3Oqyv5UIyTFO4e1Auw==", + "path": "microsoft.entityframeworkcore/10.0.0", + "hashPath": "microsoft.entityframeworkcore.10.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C+TT9k7f1GQ8agOfV512K9iwrzi76RXVSDiLx+iWC9pz3QhEpSF1Dyk+FpVvd8ULQ+rqymfM8KQ7g48ttQVyMg==", + "path": "microsoft.entityframeworkcore.abstractions/10.0.0", + "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-R7BeFniEpBrHw8kKVtWiMG4PRAwJ4K1RZoQWB32Ak8ws3uvYH98DVp9Y2UBUgbwY5lR9wPlrxp7P3GGDQ7LUSQ==", + "path": "microsoft.entityframeworkcore.design/10.0.0", + "hashPath": "microsoft.entityframeworkcore.design.10.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Proxies/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zskhc/SHCORogkdZZpPupe189/mj52PxzU21/MyOxTHD+7cwv0KD5B54szd9WdT0fapz5NULJ+PzvNiDn3AqCg==", + "path": "microsoft.entityframeworkcore.proxies/10.0.0", + "hashPath": "microsoft.entityframeworkcore.proxies.10.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-A3MX1ee7RDxWCUdx/KqP+74fbksz0UIhkVZh56YHvbPkEKsffCXgHU3LGkRDwqR/MrBNWLCWC/IVX79tzM30ZA==", + "path": "microsoft.entityframeworkcore.relational/10.0.0", + "hashPath": "microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RFYJR7APio/BiqdQunRq6DB+nDB6nc2qhHr77mlvZ0q0BT8PubMXN7XicmfzCbrDE/dzhBnUKBRXLTcqUiZDGg==", + "path": "microsoft.extensions.dependencymodel/10.0.0", + "hashPath": "microsoft.extensions.dependencymodel.10.0.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JzWhET0VOCORyJbqDc1Wtdl8Q/l+I1MjFB0I/Jko+Ma691JZll8X6o9XwZtUce8FkqGuV4uY4/V1808XZOpDVg==", + "path": "microsoft.identitymodel.abstractions/8.12.1", + "hashPath": "microsoft.identitymodel.abstractions.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-imi3xiRLzzKxN4m1aR9Z2X8GUmNsVH7GLA6AkwYStNnh3UzupFtHEEVk3GK1fCvnYdRbpnCGNYY6WQb9AfDAKg==", + "path": "microsoft.identitymodel.jsonwebtokens/8.12.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-39HjVkU7Voe2jRLmORRB5PoTmta1ZPKzUZCc6ldlNlLzdx+um0+fAnvfk05LUQPrNxpvb5ZoqF00SrNvyO2Fzg==", + "path": "microsoft.identitymodel.logging/8.12.1", + "hashPath": "microsoft.identitymodel.logging.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "path": "microsoft.identitymodel.protocols/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DzgPEABn3eZmIk4lhov0QPcoHkIbnAfgkyDPM7uGuWDHeockR9DdqNCD9Zy30hPfExu5VhbOXn9oPRi+tFUhEQ==", + "path": "microsoft.identitymodel.tokens/8.12.1", + "hashPath": "microsoft.identitymodel.tokens.8.12.1.nupkg.sha512" + }, + "Microsoft.NET.StringTools/17.14.28": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DMIeWDlxe0Wz0DIhJZ2FMoGQAN2yrGZOi5jjFhRYHWR5ONd0CS6IpAHlRnA7uA/5BF+BADvgsETxW2XrPiFc1A==", + "path": "microsoft.net.stringtools/17.14.28", + "hashPath": "microsoft.net.stringtools.17.14.28.nupkg.sha512" + }, + "Microsoft.OpenApi/2.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GGYLfzV/G/ct80OZ45JxnWP7NvMX1BCugn/lX7TH5o0lcVaviavsLMTxmFV2AybXWjbi3h6FF1vgZiTK6PXndw==", + "path": "microsoft.openapi/2.0.0", + "hashPath": "microsoft.openapi.2.0.0.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.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/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", + "path": "npgsql/10.0.0", + "hashPath": "npgsql.10.0.0.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", + "path": "npgsql.entityframeworkcore.postgresql/10.0.0", + "hashPath": "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512" + }, + "RazorLight/2.0.0-rc.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2tzNTdXCCMesPQhIdL0x5QS2BwDvaLWVQLNcAv153gnWzUzw8vYETIZBp/Hx591BHPg9itiT8lwVx94XfAnCNA==", + "path": "razorlight/2.0.0-rc.3", + "hashPath": "razorlight.2.0.0-rc.3.nupkg.sha512" + }, + "Scalar.AspNetCore/2.12.11": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3QqVTb8juNA7oW1of14vyoE+Eg694w6TwEQZuEr6Sr/6Jb3DMS7X7V/qkGjiguvMT6PNq6qd5O1gXA2wIC1vgw==", + "path": "scalar.aspnetcore/2.12.11", + "hashPath": "scalar.aspnetcore.2.12.11.nupkg.sha512" + }, + "System.CodeDom/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA==", + "path": "system.codedom/9.0.0", + "hashPath": "system.codedom.9.0.0.nupkg.sha512" + }, + "System.Composition/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Djj70fFTraOarSKmRnmRy/zm4YurICm+kiCtI0dYRqGJnLX6nJ+G3WYuFJ173cAPax/gh96REcbNiVqcrypFQ==", + "path": "system.composition/9.0.0", + "hashPath": "system.composition.9.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iri00l/zIX9g4lHMY+Nz0qV1n40+jFYAmgsaiNn16xvt2RDwlqByNG4wgblagnDYxm3YSQQ0jLlC/7Xlk9CzyA==", + "path": "system.composition.attributedmodel/9.0.0", + "hashPath": "system.composition.attributedmodel.9.0.0.nupkg.sha512" + }, + "System.Composition.Convention/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+vuqVP6xpi582XIjJi6OCsIxuoTZfR0M7WWufk3uGDeCl3wGW6KnpylUJ3iiXdPByPE0vR5TjJgR6hDLez4FQg==", + "path": "system.composition.convention/9.0.0", + "hashPath": "system.composition.convention.9.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OFqSeFeJYr7kHxDfaViGM1ymk7d4JxK//VSoNF9Ux0gpqkLsauDZpu89kTHHNdCWfSljbFcvAafGyBoY094btQ==", + "path": "system.composition.hosting/9.0.0", + "hashPath": "system.composition.hosting.9.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-w1HOlQY1zsOWYussjFGZCEYF2UZXgvoYnS94NIu2CBnAGMbXFAX8PY8c92KwUItPmowal68jnVLBCzdrWLeEKA==", + "path": "system.composition.runtime/9.0.0", + "hashPath": "system.composition.runtime.9.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aRZlojCCGEHDKqh43jaDgaVpYETsgd7Nx4g1zwLKMtv4iTo0627715ajEFNpEEBTgLmvZuv8K0EVxc3sM4NWJA==", + "path": "system.composition.typedparts/9.0.0", + "hashPath": "system.composition.typedparts.9.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PdkuMrwDhXoKFo/JxISIi9E8L+QGn9Iquj2OKDWHB6Y/HnUOuBouF7uS3R4Hw3FoNmwwMo6hWgazQdyHIIs27A==", + "path": "system.configuration.configurationmanager/9.0.0", + "hashPath": "system.configuration.configurationmanager.9.0.0.nupkg.sha512" + }, + "System.Formats.Nrbf/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-F/6tNE+ckmdFeSQAyQo26bQOqfPFKEfZcuqnp4kBE6/7jP26diP+QTHCJJ6vpEfaY6bLy+hBLiIQUSxSmNwLkA==", + "path": "system.formats.nrbf/9.0.0", + "hashPath": "system.formats.nrbf.9.0.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jlYdVOJrdeyD80ppEqKJ8BhJdrV3MjeA+seURdhC0DnD41GyUA9Ik+P7Sb571ufVVCYIx93GjeqVvY3QyQxZAA==", + "path": "system.identitymodel.tokens.jwt/8.12.1", + "hashPath": "system.identitymodel.tokens.jwt.8.12.1.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.Resources.Extensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tvhuT1D2OwPROdL1kRWtaTJliQo0WdyhvwDpd8RM997G7m3Hya5nhbYhNTS75x6Vu+ypSOgL5qxDCn8IROtCxw==", + "path": "system.resources.extensions/9.0.0", + "hashPath": "system.resources.extensions.9.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CJW+x/F6fmRQ7N6K8paasTw9PDZp4t7G76UjGNlSDgoHPF0h08vTzLYbLZpOLEJSg35d5wy2jCXGo84EN05DpQ==", + "path": "system.security.cryptography.protecteddata/9.0.0", + "hashPath": "system.security.cryptography.protecteddata.9.0.0.nupkg.sha512" + }, + "System.Security.Permissions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H2VFD4SFVxieywNxn9/epb63/IOcPPfA0WOtfkljzNfu7GCcHIBQNuwP6zGCEIi7Ci/oj8aLPUNK9sYImMFf4Q==", + "path": "system.security.permissions/9.0.0", + "hashPath": "system.security.permissions.9.0.0.nupkg.sha512" + }, + "System.Windows.Extensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U9msthvnH2Fsw7xwAvIhNHOdnIjOQTwOc8Vd0oGOsiRcGMGoBFlUD6qtYawRUoQdKH9ysxesZ9juFElt1Jw/7A==", + "path": "system.windows.extensions/9.0.0", + "hashPath": "system.windows.extensions.9.0.0.nupkg.sha512" + }, + "Auth.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Auth.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Auth.Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Generic/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Antiforgery/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.BearerToken/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Cookies/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Core/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.OAuth/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization.Policy/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Authorization/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Endpoints/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Forms/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Server/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Web/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Connections.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.CookiePolicy/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cors/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.Internal/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Extensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HostFiltering/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Html.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections.Common/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Extensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Features/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Results/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpLogging/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpOverrides/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpsPolicy/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Identity/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization.Routing/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Metadata/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Core/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Cors/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Localization/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Razor/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.RazorPages/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.OutputCaching/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.RateLimiting/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor.Runtime/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.RequestDecompression/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCompression/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Rewrite/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.HttpSys/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IIS/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IISIntegration/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Session/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Common/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Core/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.StaticAssets/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.StaticFiles/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebSockets/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebUtilities/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.CSharp/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Caching.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Caching.Memory/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Binder/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.CommandLine/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.FileExtensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Ini/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Json/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.KeyPerFile/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.UserSecrets/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Xml/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.DependencyInjection/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Features/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Composite/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Embedded/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Physical/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileSystemGlobbing/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Hosting.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Hosting/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Http/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Core/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Stores/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Localization.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Localization/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Configuration/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Console/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Debug/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventLog/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventSource/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.TraceSource/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ObjectPool/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.DataAnnotations/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Primitives/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Validation/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.WebEncoders/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.JSInterop/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Net.Http.Headers/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic.Core/15.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Primitives/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Registry/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "mscorlib/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "netstandard/2.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.AppContext/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Buffers/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Concurrent/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Immutable/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.NonGeneric/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Specialized/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Annotations/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.EventBasedAsync/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Primitives/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.TypeConverter/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Configuration/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Console/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Core/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.Common/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.DataSetExtensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Contracts/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Debug/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.DiagnosticSource/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.EventLog/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.FileVersionInfo/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Process/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.StackTrace/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TextWriterTraceListener/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tools/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TraceSource/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tracing/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing.Primitives/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Dynamic.Runtime/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Formats.Asn1/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Formats.Cbor/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Formats.Tar/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Calendars/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Extensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.Brotli/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.ZipFile/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.AccessControl/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.DriveInfo/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Primitives/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Watcher/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.IsolatedStorage/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.MemoryMappedFiles/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipelines/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipes.AccessControl/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipes/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.UnmanagedMemoryStream/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.AsyncEnumerable/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Expressions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Parallel/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Queryable/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Memory/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http.Json/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.HttpListener/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Mail/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NameResolution/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NetworkInformation/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Ping/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Primitives/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Quic/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Requests/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Security/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.ServerSentEvents/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.ServicePoint/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Sockets/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebClient/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebHeaderCollection/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebProxy/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets.Client/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics.Vectors/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ObjectModel/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.DispatchProxy/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.ILGeneration/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.Lightweight/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Extensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Metadata/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Primitives/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.TypeExtensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Reader/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.ResourceManager/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Writer/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.Unsafe/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.VisualC/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Extensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Handles/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.JavaScript/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.RuntimeInformation/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Intrinsics/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Loader/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Numerics/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Formatters/8.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Json/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Primitives/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Xml/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.AccessControl/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Claims/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Algorithms/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Cng/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Csp/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Encoding/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.OpenSsl/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Primitives/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.X509Certificates/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Xml/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal.Windows/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.SecureString/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceModel.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceProcess/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.CodePages/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.Extensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encodings.Web/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Json/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.RegularExpressions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.AccessControl/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Channels/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Overlapped/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.RateLimiting/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Dataflow/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Extensions/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Parallel/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Thread/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.ThreadPool/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Timer/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions.Local/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ValueTuple/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web.HttpUtility/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Windows/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Linq/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.ReaderWriter/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XDocument/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlDocument/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlSerializer/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath.XDocument/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "WindowsBase/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.CodeAnalysis.Analyzers/3.11.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-v/EW3UE8/lbEYHoC2Qq7AR/DnmvpgdtAMndfQNmpuIMx/Mto8L5JnuCfdBYtgvalQOtfNCnxFejxuRrryvUTsg==", + "path": "microsoft.codeanalysis.analyzers/3.11.0", + "hashPath": "microsoft.codeanalysis.analyzers.3.11.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-TxHQq0kn0tpYs2ljeRl8jtmWk720B0nteqI6mAZM77HWJpYT9Zj8SkkBBlj8K3Yeq18a6NBjz6YutE+shEk4Ag==", + "path": "microsoft.entityframeworkcore.analyzers/10.0.0", + "hashPath": "microsoft.entityframeworkcore.analyzers.10.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8tluJF8w9si+2yoHeL8rgVJS6lKvWomTDC8px65Z8MCzzdME5eaPtEQf4OfVGrAxB5fW93ncucy1+221O9EQaw==", + "path": "system.security.cryptography.pkcs/9.0.0", + "hashPath": "system.security.cryptography.pkcs.9.0.0.nupkg.sha512" + } + } +} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net10.0/Auth.API.dll b/Auth.API/bin/Debug/net10.0/Auth.API.dll new file mode 100644 index 0000000..a69f5f2 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Auth.API.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Auth.API.pdb b/Auth.API/bin/Debug/net10.0/Auth.API.pdb new file mode 100644 index 0000000..0e1de4b Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Auth.API.pdb differ diff --git a/Auth.API/bin/Debug/net10.0/Auth.API.runtimeconfig.json b/Auth.API/bin/Debug/net10.0/Auth.API.runtimeconfig.json new file mode 100644 index 0000000..bf15a00 --- /dev/null +++ b/Auth.API/bin/Debug/net10.0/Auth.API.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "10.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net10.0/Auth.API.staticwebassets.endpoints.json b/Auth.API/bin/Debug/net10.0/Auth.API.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/Auth.API/bin/Debug/net10.0/Auth.API.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net10.0/Auth.API.staticwebassets.runtime.json b/Auth.API/bin/Debug/net10.0/Auth.API.staticwebassets.runtime.json new file mode 100644 index 0000000..1c104fa --- /dev/null +++ b/Auth.API/bin/Debug/net10.0/Auth.API.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/wwwroot/"],"Root":{"Children":null,"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net10.0/Auth.Contracts.dll b/Auth.API/bin/Debug/net10.0/Auth.Contracts.dll new file mode 100644 index 0000000..0002357 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Auth.Contracts.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Auth.Contracts.pdb b/Auth.API/bin/Debug/net10.0/Auth.Contracts.pdb new file mode 100644 index 0000000..0ea86a1 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Auth.Contracts.pdb differ diff --git a/Auth.API/bin/Debug/net10.0/Auth.Core.dll b/Auth.API/bin/Debug/net10.0/Auth.Core.dll new file mode 100644 index 0000000..7ed58d3 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Auth.Core.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Auth.Core.pdb b/Auth.API/bin/Debug/net10.0/Auth.Core.pdb new file mode 100644 index 0000000..9d4ab2e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Auth.Core.pdb differ diff --git a/Auth.API/bin/Debug/net10.0/Auth.Domain.dll b/Auth.API/bin/Debug/net10.0/Auth.Domain.dll new file mode 100644 index 0000000..9fb83f2 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Auth.Domain.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Auth.Domain.pdb b/Auth.API/bin/Debug/net10.0/Auth.Domain.pdb new file mode 100644 index 0000000..3cf6984 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Auth.Domain.pdb differ diff --git a/Auth.API/bin/Debug/net10.0/Bogus.dll b/Auth.API/bin/Debug/net10.0/Bogus.dll new file mode 100755 index 0000000..504d907 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Bogus.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll new file mode 100755 index 0000000..13b1021 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe b/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe new file mode 100755 index 0000000..00dd99f Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config b/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config new file mode 100755 index 0000000..f52998b --- /dev/null +++ b/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll new file mode 100755 index 0000000..88e63d8 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll new file mode 100755 index 0000000..1d035d6 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll new file mode 100755 index 0000000..f2d83c5 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll new file mode 100755 index 0000000..7594b2e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll new file mode 100755 index 0000000..d0bbad5 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll new file mode 100755 index 0000000..4617199 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll new file mode 100755 index 0000000..0865972 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll new file mode 100755 index 0000000..c5ba4e4 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll new file mode 100755 index 0000000..eeec928 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll new file mode 100755 index 0000000..0be3757 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll new file mode 100755 index 0000000..bfed293 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll new file mode 100755 index 0000000..5e1c416 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll new file mode 100755 index 0000000..2916bdf Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll new file mode 100755 index 0000000..1a55c94 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll new file mode 100755 index 0000000..c1be153 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll new file mode 100755 index 0000000..bfcbbc6 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll new file mode 100755 index 0000000..b9efaec Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll new file mode 100755 index 0000000..69612cb Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll new file mode 100755 index 0000000..042aaf8 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll new file mode 100755 index 0000000..629b98b Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll new file mode 100755 index 0000000..ff8dacb Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll new file mode 100755 index 0000000..9b9870a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll new file mode 100755 index 0000000..cafcf21 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json new file mode 100755 index 0000000..ed7fe7a --- /dev/null +++ b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json @@ -0,0 +1,260 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost/4.14.0-3.25262.10": { + "dependencies": { + "Microsoft.Build.Locator": "1.6.10", + "Microsoft.CodeAnalysis.NetAnalyzers": "8.0.0-preview.23468.1", + "Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers": "3.3.4-beta1.22504.1", + "Microsoft.DotNet.XliffTasks": "9.0.0-beta.25255.5", + "Microsoft.VisualStudio.Threading.Analyzers": "17.13.2", + "Newtonsoft.Json": "13.0.3", + "Roslyn.Diagnostics.Analyzers": "3.11.0-beta1.24081.1", + "System.Collections.Immutable": "9.0.0", + "System.CommandLine": "2.0.0-beta4.24528.1" + }, + "runtime": { + "Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": {} + }, + "resources": { + "cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Build.Locator/1.6.10": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.6.10.57384" + } + } + }, + "Microsoft.CodeAnalysis.BannedApiAnalyzers/3.11.0-beta1.24081.1": {}, + "Microsoft.CodeAnalysis.NetAnalyzers/8.0.0-preview.23468.1": {}, + "Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers/3.3.4-beta1.22504.1": {}, + "Microsoft.CodeAnalysis.PublicApiAnalyzers/3.11.0-beta1.24081.1": {}, + "Microsoft.DotNet.XliffTasks/9.0.0-beta.25255.5": {}, + "Microsoft.VisualStudio.Threading.Analyzers/17.13.2": {}, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Roslyn.Diagnostics.Analyzers/3.11.0-beta1.24081.1": { + "dependencies": { + "Microsoft.CodeAnalysis.BannedApiAnalyzers": "3.11.0-beta1.24081.1", + "Microsoft.CodeAnalysis.PublicApiAnalyzers": "3.11.0-beta1.24081.1" + } + }, + "System.Collections.Immutable/9.0.0": { + "dependencies": { + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.CommandLine/2.0.0-beta4.24528.1": { + "dependencies": { + "System.Memory": "4.5.5" + }, + "runtime": { + "lib/netstandard2.0/System.CommandLine.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.24.52801" + } + }, + "resources": { + "lib/netstandard2.0/cs/System.CommandLine.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.CommandLine.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.CommandLine.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.CommandLine.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.CommandLine.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.CommandLine.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.CommandLine.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.CommandLine.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.CommandLine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.CommandLine.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.CommandLine.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.CommandLine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.CommandLine.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Memory/4.5.5": {}, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {} + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost/4.14.0-3.25262.10": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Build.Locator/1.6.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DJhCkTGqy1LMJzEmG/2qxRTMHwdPc3WdVoGQI5o5mKHVo4dsHrCMLIyruwU/NSvPNSdvONlaf7jdFXnAMuxAuA==", + "path": "microsoft.build.locator/1.6.10", + "hashPath": "microsoft.build.locator.1.6.10.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.BannedApiAnalyzers/3.11.0-beta1.24081.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DH6L3rsbjppLrHM2l2/NKbnMaYd0NFHx2pjZaFdrVcRkONrV3i9FHv6Id8Dp6/TmjhXQsJVJJFbhhjkpuP1xxg==", + "path": "microsoft.codeanalysis.bannedapianalyzers/3.11.0-beta1.24081.1", + "hashPath": "microsoft.codeanalysis.bannedapianalyzers.3.11.0-beta1.24081.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.NetAnalyzers/8.0.0-preview.23468.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZhIvyxmUCqb8OiU/VQfxfuAmIB4lQsjqhMVYKeoyxzSI+d7uR5Pzx3ZKoaIhPizQ15wa4lnyD6wg3TnSJ6P4LA==", + "path": "microsoft.codeanalysis.netanalyzers/8.0.0-preview.23468.1", + "hashPath": "microsoft.codeanalysis.netanalyzers.8.0.0-preview.23468.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers/3.3.4-beta1.22504.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2XRlqPAzVke7Sb80+UqaC7o57OwfK+tIr+aIOxrx41RWDMeR2SBUW7kL4sd6hfLFfBNsLo3W5PT+UwfvwPaOzA==", + "path": "microsoft.codeanalysis.performancesensitiveanalyzers/3.3.4-beta1.22504.1", + "hashPath": "microsoft.codeanalysis.performancesensitiveanalyzers.3.3.4-beta1.22504.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.PublicApiAnalyzers/3.11.0-beta1.24081.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3bYGBihvoNO0rhCOG1U9O50/4Q8suZ+glHqQLIAcKvnodSnSW+dYWYzTNb1UbS8pUS8nAUfxSFMwuMup/G5DtQ==", + "path": "microsoft.codeanalysis.publicapianalyzers/3.11.0-beta1.24081.1", + "hashPath": "microsoft.codeanalysis.publicapianalyzers.3.11.0-beta1.24081.1.nupkg.sha512" + }, + "Microsoft.DotNet.XliffTasks/9.0.0-beta.25255.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bb0fZB5ViPscdfYeWlmtyXJMzNkgcpkV5RWmXktfV9lwIUZgNZmFotUXrdcTyZzrN7v1tQK/Y6BGnbkP9gEsXg==", + "path": "microsoft.dotnet.xlifftasks/9.0.0-beta.25255.5", + "hashPath": "microsoft.dotnet.xlifftasks.9.0.0-beta.25255.5.nupkg.sha512" + }, + "Microsoft.VisualStudio.Threading.Analyzers/17.13.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Qcd8IlaTXZVq3wolBnzby1P7kWihdWaExtD8riumiKuG1sHa8EgjV/o70TMjTaeUMhomBbhfdC9OPwAHoZfnjQ==", + "path": "microsoft.visualstudio.threading.analyzers/17.13.2", + "hashPath": "microsoft.visualstudio.threading.analyzers.17.13.2.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" + }, + "Roslyn.Diagnostics.Analyzers/3.11.0-beta1.24081.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-reHqZCDKifA+DURcL8jUfYkMGL4FpgNt5LI0uWTS6IpM8kKVbu/kO8byZsqfhBu4wUzT3MBDcoMfzhZPdENIpg==", + "path": "roslyn.diagnostics.analyzers/3.11.0-beta1.24081.1", + "hashPath": "roslyn.diagnostics.analyzers.3.11.0-beta1.24081.1.nupkg.sha512" + }, + "System.Collections.Immutable/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QhkXUl2gNrQtvPmtBTQHb0YsUrDiDQ2QS09YbtTTiSjGcf7NBqtYbrG/BE06zcBPCKEwQGzIv13IVdXNOSub2w==", + "path": "system.collections.immutable/9.0.0", + "hashPath": "system.collections.immutable.9.0.0.nupkg.sha512" + }, + "System.CommandLine/2.0.0-beta4.24528.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xt8tsSU8yd0ZpbT9gl5DAwkMYWLo8PV1fq2R/belrUbHVVOIKqhLfbWksbdknUDpmzMHZenBtD6AGAp9uJTa2w==", + "path": "system.commandline/2.0.0-beta4.24528.1", + "hashPath": "system.commandline.2.0.0-beta4.24528.1.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.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" + } + } +} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll new file mode 100755 index 0000000..993b54f Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config new file mode 100755 index 0000000..27bdea7 --- /dev/null +++ b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config @@ -0,0 +1,605 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json new file mode 100755 index 0000000..3a5998a --- /dev/null +++ b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json @@ -0,0 +1,13 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + "rollForward": "Major", + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false + } + } +} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll new file mode 100755 index 0000000..87bf9aa Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll new file mode 100755 index 0000000..b182127 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll new file mode 100755 index 0000000..d0bbad5 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll new file mode 100755 index 0000000..0be3757 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll new file mode 100755 index 0000000..bfed293 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll new file mode 100755 index 0000000..5e1c416 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll new file mode 100755 index 0000000..2916bdf Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll new file mode 100755 index 0000000..1a55c94 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll new file mode 100755 index 0000000..c1be153 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll new file mode 100755 index 0000000..bfcbbc6 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll new file mode 100755 index 0000000..b9efaec Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll new file mode 100755 index 0000000..69612cb Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll new file mode 100755 index 0000000..042aaf8 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll new file mode 100755 index 0000000..629b98b Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll new file mode 100755 index 0000000..ff8dacb Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll new file mode 100755 index 0000000..9b9870a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Castle.Core.dll b/Auth.API/bin/Debug/net10.0/Castle.Core.dll new file mode 100755 index 0000000..7097894 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Castle.Core.dll differ diff --git a/Auth.API/bin/Debug/net10.0/FluentEmail.Core.dll b/Auth.API/bin/Debug/net10.0/FluentEmail.Core.dll new file mode 100755 index 0000000..030acbd Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/FluentEmail.Core.dll differ diff --git a/Auth.API/bin/Debug/net10.0/FluentEmail.Razor.dll b/Auth.API/bin/Debug/net10.0/FluentEmail.Razor.dll new file mode 100755 index 0000000..4197c98 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/FluentEmail.Razor.dll differ diff --git a/Auth.API/bin/Debug/net10.0/FluentEmail.Smtp.dll b/Auth.API/bin/Debug/net10.0/FluentEmail.Smtp.dll new file mode 100755 index 0000000..7f2ff40 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/FluentEmail.Smtp.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Generic.dll b/Auth.API/bin/Debug/net10.0/Generic.dll new file mode 100644 index 0000000..3eae051 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Generic.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Generic.pdb b/Auth.API/bin/Debug/net10.0/Generic.pdb new file mode 100644 index 0000000..a71b682 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Generic.pdb differ diff --git a/Auth.API/bin/Debug/net10.0/Humanizer.dll b/Auth.API/bin/Debug/net10.0/Humanizer.dll new file mode 100755 index 0000000..c9a7ef8 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Humanizer.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll new file mode 100755 index 0000000..d6dda11 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll b/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll new file mode 100755 index 0000000..f51b564 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll b/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll new file mode 100755 index 0000000..90ec486 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll b/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll new file mode 100755 index 0000000..f58ce81 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Razor.Language.dll b/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Razor.Language.dll new file mode 100755 index 0000000..b9ee8bd Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Razor.Language.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.Build.Framework.dll b/Auth.API/bin/Debug/net10.0/Microsoft.Build.Framework.dll new file mode 100755 index 0000000..0ff9c59 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.Build.Framework.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.Build.Tasks.Core.dll b/Auth.API/bin/Debug/net10.0/Microsoft.Build.Tasks.Core.dll new file mode 100755 index 0000000..8fb8fee Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.Build.Tasks.Core.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.Build.Utilities.Core.dll b/Auth.API/bin/Debug/net10.0/Microsoft.Build.Utilities.Core.dll new file mode 100755 index 0000000..d112f2a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.Build.Utilities.Core.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.Build.dll b/Auth.API/bin/Debug/net10.0/Microsoft.Build.dll new file mode 100755 index 0000000..999b402 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.Build.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll new file mode 100755 index 0000000..cd98b0b Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll b/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll new file mode 100755 index 0000000..5ad16cb Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll b/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll new file mode 100755 index 0000000..643d190 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.Razor.dll b/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.Razor.dll new file mode 100755 index 0000000..3161485 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.Razor.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll b/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll new file mode 100755 index 0000000..8ca4d0c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll b/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll new file mode 100755 index 0000000..0496b29 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll b/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll new file mode 100755 index 0000000..58d70e0 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100755 index 0000000..9aa1bb0 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Design.dll b/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Design.dll new file mode 100755 index 0000000..a67a269 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Design.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Proxies.dll b/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Proxies.dll new file mode 100755 index 0000000..c4296cd Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Proxies.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll b/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100755 index 0000000..fe7506c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll b/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll new file mode 100755 index 0000000..b15230a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll b/Auth.API/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll new file mode 100755 index 0000000..dae1950 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll b/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll new file mode 100755 index 0000000..13e3e4e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll b/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100755 index 0000000..156e764 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll b/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll new file mode 100755 index 0000000..94961dc Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100755 index 0000000..6c736d2 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.dll b/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.dll new file mode 100755 index 0000000..9f30508 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll b/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll new file mode 100755 index 0000000..5a231d7 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.NET.StringTools.dll b/Auth.API/bin/Debug/net10.0/Microsoft.NET.StringTools.dll new file mode 100755 index 0000000..cfc31e2 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.NET.StringTools.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Microsoft.OpenApi.dll b/Auth.API/bin/Debug/net10.0/Microsoft.OpenApi.dll new file mode 100755 index 0000000..96cb5dc Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Microsoft.OpenApi.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Mono.TextTemplating.dll b/Auth.API/bin/Debug/net10.0/Mono.TextTemplating.dll new file mode 100755 index 0000000..4a76511 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Mono.TextTemplating.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Newtonsoft.Json.dll b/Auth.API/bin/Debug/net10.0/Newtonsoft.Json.dll new file mode 100755 index 0000000..d035c38 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Newtonsoft.Json.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/Auth.API/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll new file mode 100755 index 0000000..afdfe8d Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Npgsql.dll b/Auth.API/bin/Debug/net10.0/Npgsql.dll new file mode 100755 index 0000000..1207ef0 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Npgsql.dll differ diff --git a/Auth.API/bin/Debug/net10.0/RazorLight.dll b/Auth.API/bin/Debug/net10.0/RazorLight.dll new file mode 100755 index 0000000..b3d60db Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/RazorLight.dll differ diff --git a/Auth.API/bin/Debug/net10.0/Scalar.AspNetCore.dll b/Auth.API/bin/Debug/net10.0/Scalar.AspNetCore.dll new file mode 100755 index 0000000..150a73d Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/Scalar.AspNetCore.dll differ diff --git a/Auth.API/bin/Debug/net10.0/System.CodeDom.dll b/Auth.API/bin/Debug/net10.0/System.CodeDom.dll new file mode 100755 index 0000000..09be203 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/System.CodeDom.dll differ diff --git a/Auth.API/bin/Debug/net10.0/System.Composition.AttributedModel.dll b/Auth.API/bin/Debug/net10.0/System.Composition.AttributedModel.dll new file mode 100755 index 0000000..2664688 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/System.Composition.AttributedModel.dll differ diff --git a/Auth.API/bin/Debug/net10.0/System.Composition.Convention.dll b/Auth.API/bin/Debug/net10.0/System.Composition.Convention.dll new file mode 100755 index 0000000..40f6537 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/System.Composition.Convention.dll differ diff --git a/Auth.API/bin/Debug/net10.0/System.Composition.Hosting.dll b/Auth.API/bin/Debug/net10.0/System.Composition.Hosting.dll new file mode 100755 index 0000000..b1cce85 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/System.Composition.Hosting.dll differ diff --git a/Auth.API/bin/Debug/net10.0/System.Composition.Runtime.dll b/Auth.API/bin/Debug/net10.0/System.Composition.Runtime.dll new file mode 100755 index 0000000..c30bbbb Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/System.Composition.Runtime.dll differ diff --git a/Auth.API/bin/Debug/net10.0/System.Composition.TypedParts.dll b/Auth.API/bin/Debug/net10.0/System.Composition.TypedParts.dll new file mode 100755 index 0000000..1556319 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/System.Composition.TypedParts.dll differ diff --git a/Auth.API/bin/Debug/net10.0/System.Configuration.ConfigurationManager.dll b/Auth.API/bin/Debug/net10.0/System.Configuration.ConfigurationManager.dll new file mode 100755 index 0000000..89e4bfc Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/System.Configuration.ConfigurationManager.dll differ diff --git a/Auth.API/bin/Debug/net10.0/System.Formats.Nrbf.dll b/Auth.API/bin/Debug/net10.0/System.Formats.Nrbf.dll new file mode 100755 index 0000000..2fdbc35 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/System.Formats.Nrbf.dll differ diff --git a/Auth.API/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll b/Auth.API/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll new file mode 100755 index 0000000..968bc65 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/Auth.API/bin/Debug/net10.0/System.Reflection.MetadataLoadContext.dll b/Auth.API/bin/Debug/net10.0/System.Reflection.MetadataLoadContext.dll new file mode 100755 index 0000000..3063b24 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/System.Reflection.MetadataLoadContext.dll differ diff --git a/Auth.API/bin/Debug/net10.0/System.Resources.Extensions.dll b/Auth.API/bin/Debug/net10.0/System.Resources.Extensions.dll new file mode 100755 index 0000000..2fc8886 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/System.Resources.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/System.Security.Cryptography.ProtectedData.dll b/Auth.API/bin/Debug/net10.0/System.Security.Cryptography.ProtectedData.dll new file mode 100755 index 0000000..7ce63d1 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/System.Security.Cryptography.ProtectedData.dll differ diff --git a/Auth.API/bin/Debug/net10.0/System.Security.Permissions.dll b/Auth.API/bin/Debug/net10.0/System.Security.Permissions.dll new file mode 100755 index 0000000..19fa15f Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/System.Security.Permissions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/System.Windows.Extensions.dll b/Auth.API/bin/Debug/net10.0/System.Windows.Extensions.dll new file mode 100755 index 0000000..a09b44c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/System.Windows.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/appsettings.Development.json b/Auth.API/bin/Debug/net10.0/appsettings.Development.json new file mode 100644 index 0000000..ff66ba6 --- /dev/null +++ b/Auth.API/bin/Debug/net10.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/Auth.API/bin/Debug/net10.0/appsettings.json b/Auth.API/bin/Debug/net10.0/appsettings.json new file mode 100644 index 0000000..2a79d23 --- /dev/null +++ b/Auth.API/bin/Debug/net10.0/appsettings.json @@ -0,0 +1,31 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "ConnectionStrings": { + "PostgreDB": "Host=localhost;Database=Auth;Username=test;Password=test;Port=5432;IncludeErrorDetail=true;" +}, + "AllowedHosts": "*", + "JWT": { + "Key": "thisisasecretKeyIneedtoprovideenoughletterstomakeitwork", + "Issuer": "https://hello.com", + "Audience": "hello.com", + "DurationInMinutes": 10 +}, +"EmailTemplate": { + "EmailConfirmation": "placeHolder", + "ResetPassword": "placeHolder" +}, +"hostname": "placeHolder", +"MailSettings": { + "Mail": "merge1942@gmail.com", + "DisplayName": "Merge", + "UserName": "merge1942@gmail.com", + "Password": "ftyqwyqpqtixalxp", + "Host": "smtp.gmail.com", + "Port": 587 +} +} diff --git a/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..7e5c7a8 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..fbb9d8c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll new file mode 100755 index 0000000..ddcd769 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..1ae7213 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..c16401c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..39049e7 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..8229839 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll new file mode 100755 index 0000000..09a4ae0 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..c4d4550 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..a3ab03d Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..79cb378 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..92fede6 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll new file mode 100755 index 0000000..44e91b7 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..bfa60db Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..3255be3 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..d214140 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..f42ab22 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll new file mode 100755 index 0000000..bd3fff1 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..eb50c8d Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..9c222a0 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..c5b1943 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..c907e89 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll new file mode 100755 index 0000000..334ff70 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..8217ac0 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..f71f4de Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..a0b1af1 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..f71989e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll new file mode 100755 index 0000000..3b37974 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..454c42c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..52af814 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..0dcfaaa Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..3f4420a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll new file mode 100755 index 0000000..63ece4b Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..21a9cfb Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..889da69 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..0c4d8ce Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..f6ee255 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll new file mode 100755 index 0000000..ed364e9 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..65696d4 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..356b64a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..5aafbb8 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..855b11a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll new file mode 100755 index 0000000..3299c39 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..7da04cb Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..e064beb Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Antiforgery.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Antiforgery.dll new file mode 100755 index 0000000..6902905 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Antiforgery.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll new file mode 100755 index 0000000..c27fa8c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll new file mode 100755 index 0000000..e6f8abd Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll new file mode 100755 index 0000000..08dcda8 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Core.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Core.dll new file mode 100755 index 0000000..a3e954e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Core.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll new file mode 100755 index 0000000..00423d3 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.dll new file mode 100755 index 0000000..051efb2 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll new file mode 100755 index 0000000..3ba0afc Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.dll new file mode 100755 index 0000000..2fe2bd2 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Authorization.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Authorization.dll new file mode 100755 index 0000000..9be18e6 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Authorization.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll new file mode 100755 index 0000000..de1d7b1 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Forms.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Forms.dll new file mode 100755 index 0000000..8f3d9f9 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Server.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Server.dll new file mode 100755 index 0000000..0e8480d Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Server.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Web.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Web.dll new file mode 100755 index 0000000..3913508 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.dll new file mode 100755 index 0000000..afe535c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100755 index 0000000..8005063 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.CookiePolicy.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.CookiePolicy.dll new file mode 100755 index 0000000..37b7def Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.CookiePolicy.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cors.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cors.dll new file mode 100755 index 0000000..c6d4a18 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cors.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll new file mode 100755 index 0000000..4d48535 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll new file mode 100755 index 0000000..5b72a2c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll new file mode 100755 index 0000000..7a5891f Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll new file mode 100755 index 0000000..0e2c34e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.dll new file mode 100755 index 0000000..7d150f1 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll new file mode 100755 index 0000000..7acd6e7 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll new file mode 100755 index 0000000..1dfbb61 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.dll new file mode 100755 index 0000000..41cb1ca Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HostFiltering.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HostFiltering.dll new file mode 100755 index 0000000..2cccf1a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HostFiltering.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll new file mode 100755 index 0000000..051b3bc Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll new file mode 100755 index 0000000..790a874 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.dll new file mode 100755 index 0000000..00b482c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll new file mode 100755 index 0000000..e04218e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll new file mode 100755 index 0000000..cb02560 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll new file mode 100755 index 0000000..b0444ad Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.dll new file mode 100755 index 0000000..a91e101 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Extensions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Extensions.dll new file mode 100755 index 0000000..c357b9e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Features.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Features.dll new file mode 100755 index 0000000..c8824b5 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Features.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Results.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Results.dll new file mode 100755 index 0000000..e9f812e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Results.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.dll new file mode 100755 index 0000000..e8e33e9 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpLogging.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpLogging.dll new file mode 100755 index 0000000..8b8b5df Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpLogging.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpOverrides.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpOverrides.dll new file mode 100755 index 0000000..d8b20e0 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpOverrides.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll new file mode 100755 index 0000000..82ad72a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Identity.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Identity.dll new file mode 100755 index 0000000..1254517 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Identity.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.Routing.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.Routing.dll new file mode 100755 index 0000000..8492c3d Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.Routing.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.dll new file mode 100755 index 0000000..67549c5 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Metadata.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Metadata.dll new file mode 100755 index 0000000..9f33cfa Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Metadata.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll new file mode 100755 index 0000000..d94aa7e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll new file mode 100755 index 0000000..e2168f2 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Core.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Core.dll new file mode 100755 index 0000000..9dae781 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Core.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll new file mode 100755 index 0000000..5457dd3 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll new file mode 100755 index 0000000..50728fa Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll new file mode 100755 index 0000000..a9e34cf Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll new file mode 100755 index 0000000..ee3aebd Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll new file mode 100755 index 0000000..d0f18c5 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll new file mode 100755 index 0000000..97a3bbc Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll new file mode 100755 index 0000000..579388c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll new file mode 100755 index 0000000..157c6e2 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll new file mode 100755 index 0000000..17b55a5 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.dll new file mode 100755 index 0000000..af202e2 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.OutputCaching.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.OutputCaching.dll new file mode 100755 index 0000000..3063bd5 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.OutputCaching.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RateLimiting.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RateLimiting.dll new file mode 100755 index 0000000..11eda47 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RateLimiting.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll new file mode 100755 index 0000000..ea967a3 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.dll new file mode 100755 index 0000000..91f5356 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RequestDecompression.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RequestDecompression.dll new file mode 100755 index 0000000..1c43da6 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RequestDecompression.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll new file mode 100755 index 0000000..df366e3 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.dll new file mode 100755 index 0000000..3b7db24 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCompression.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCompression.dll new file mode 100755 index 0000000..d099006 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCompression.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Rewrite.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Rewrite.dll new file mode 100755 index 0000000..61484a2 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Rewrite.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll new file mode 100755 index 0000000..6460a00 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.dll new file mode 100755 index 0000000..d4df0d3 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll new file mode 100755 index 0000000..317c136 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IIS.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IIS.dll new file mode 100755 index 0000000..bcca1bf Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IIS.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll new file mode 100755 index 0000000..9f53b36 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll new file mode 100755 index 0000000..d255ebc Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll new file mode 100755 index 0000000..c33f295 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll new file mode 100755 index 0000000..5a9ab44 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll new file mode 100755 index 0000000..6ee1f4e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll new file mode 100755 index 0000000..0c93c0d Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Session.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Session.dll new file mode 100755 index 0000000..2aa1ca3 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Session.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Common.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100755 index 0000000..e2f3784 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Core.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Core.dll new file mode 100755 index 0000000..caf7a7f Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Core.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll new file mode 100755 index 0000000..b8710af Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.dll new file mode 100755 index 0000000..288ad8c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticAssets.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticAssets.dll new file mode 100755 index 0000000..f5e7b6c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticAssets.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticFiles.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticFiles.dll new file mode 100755 index 0000000..bd7cc5f Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticFiles.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebSockets.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebSockets.dll new file mode 100755 index 0000000..8ae8741 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebSockets.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebUtilities.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebUtilities.dll new file mode 100755 index 0000000..13006f6 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebUtilities.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.dll new file mode 100755 index 0000000..0d144cf Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.CSharp.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.CSharp.dll new file mode 100755 index 0000000..8fef117 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.CSharp.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Caching.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Caching.Abstractions.dll new file mode 100755 index 0000000..5790e69 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Caching.Memory.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Caching.Memory.dll new file mode 100755 index 0000000..b497e36 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100755 index 0000000..903fece Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Binder.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Binder.dll new file mode 100755 index 0000000..7431401 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll new file mode 100755 index 0000000..3b00dd6 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll new file mode 100755 index 0000000..6d6837c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100755 index 0000000..c7c20c9 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Ini.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Ini.dll new file mode 100755 index 0000000..b4f9938 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Ini.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Json.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Json.dll new file mode 100755 index 0000000..bc39bed Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll new file mode 100755 index 0000000..7692c77 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll new file mode 100755 index 0000000..6c3e054 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Xml.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Xml.dll new file mode 100755 index 0000000..04bfde7 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Xml.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.dll new file mode 100755 index 0000000..b5d6c62 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100755 index 0000000..d050321 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.DependencyInjection.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.DependencyInjection.dll new file mode 100755 index 0000000..f259b58 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll new file mode 100755 index 0000000..57767f6 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll new file mode 100755 index 0000000..9c6cc6e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll new file mode 100755 index 0000000..e850540 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.dll new file mode 100755 index 0000000..680405e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Features.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Features.dll new file mode 100755 index 0000000..fffd0f4 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Features.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100755 index 0000000..eaae27a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Composite.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Composite.dll new file mode 100755 index 0000000..b28845c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Composite.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll new file mode 100755 index 0000000..d5e5ce3 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Physical.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100755 index 0000000..52a90b6 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100755 index 0000000..1bb3b56 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll new file mode 100755 index 0000000..ebdd01b Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Hosting.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Hosting.dll new file mode 100755 index 0000000..caaafdf Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Hosting.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Http.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Http.dll new file mode 100755 index 0000000..ccf76a2 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Http.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Core.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Core.dll new file mode 100755 index 0000000..c01af70 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Core.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Stores.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Stores.dll new file mode 100755 index 0000000..e77872c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Stores.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.Abstractions.dll new file mode 100755 index 0000000..6cb1daa Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.dll new file mode 100755 index 0000000..c88d006 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Abstractions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100755 index 0000000..f51ef54 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Configuration.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Configuration.dll new file mode 100755 index 0000000..7081e09 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Console.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Console.dll new file mode 100755 index 0000000..71d1134 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Console.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Debug.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Debug.dll new file mode 100755 index 0000000..e2560cd Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.EventLog.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.EventLog.dll new file mode 100755 index 0000000..942506c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.EventLog.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.EventSource.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.EventSource.dll new file mode 100755 index 0000000..7483b80 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.EventSource.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.TraceSource.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.TraceSource.dll new file mode 100755 index 0000000..9e8fbd1 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.TraceSource.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.dll new file mode 100755 index 0000000..965c122 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.ObjectPool.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.ObjectPool.dll new file mode 100755 index 0000000..d078ec6 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.ObjectPool.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll new file mode 100755 index 0000000..c3d14f7 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll new file mode 100755 index 0000000..b60bae0 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.dll new file mode 100755 index 0000000..82dfad0 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Primitives.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Primitives.dll new file mode 100755 index 0000000..2ce9744 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Validation.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Validation.dll new file mode 100755 index 0000000..d888808 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Validation.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.WebEncoders.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.WebEncoders.dll new file mode 100755 index 0000000..6e47acd Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.WebEncoders.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.JSInterop.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.JSInterop.dll new file mode 100755 index 0000000..18d13c9 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.JSInterop.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Net.Http.Headers.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Net.Http.Headers.dll new file mode 100755 index 0000000..eb6df6a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Net.Http.Headers.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.VisualBasic.Core.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.VisualBasic.Core.dll new file mode 100755 index 0000000..863c5fb Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.VisualBasic.Core.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.VisualBasic.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.VisualBasic.dll new file mode 100755 index 0000000..27553f2 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.VisualBasic.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Win32.Primitives.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Win32.Primitives.dll new file mode 100755 index 0000000..236d8bd Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Win32.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/Microsoft.Win32.Registry.dll b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Win32.Registry.dll new file mode 100755 index 0000000..88b031c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/Microsoft.Win32.Registry.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.AppContext.dll b/Auth.API/bin/Debug/net10.0/refs/System.AppContext.dll new file mode 100755 index 0000000..1c5d8fa Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.AppContext.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Buffers.dll b/Auth.API/bin/Debug/net10.0/refs/System.Buffers.dll new file mode 100755 index 0000000..e768620 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Buffers.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Collections.Concurrent.dll b/Auth.API/bin/Debug/net10.0/refs/System.Collections.Concurrent.dll new file mode 100755 index 0000000..dad99fa Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Collections.Concurrent.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Collections.Immutable.dll b/Auth.API/bin/Debug/net10.0/refs/System.Collections.Immutable.dll new file mode 100755 index 0000000..6a63efe Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Collections.Immutable.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Collections.NonGeneric.dll b/Auth.API/bin/Debug/net10.0/refs/System.Collections.NonGeneric.dll new file mode 100755 index 0000000..4179851 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Collections.NonGeneric.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Collections.Specialized.dll b/Auth.API/bin/Debug/net10.0/refs/System.Collections.Specialized.dll new file mode 100755 index 0000000..d76a91f Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Collections.Specialized.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Collections.dll b/Auth.API/bin/Debug/net10.0/refs/System.Collections.dll new file mode 100755 index 0000000..2dfa351 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Collections.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.Annotations.dll b/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.Annotations.dll new file mode 100755 index 0000000..9deb309 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.Annotations.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.DataAnnotations.dll b/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.DataAnnotations.dll new file mode 100755 index 0000000..f4efe9a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.DataAnnotations.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.EventBasedAsync.dll b/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.EventBasedAsync.dll new file mode 100755 index 0000000..b4ef084 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.EventBasedAsync.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.Primitives.dll b/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.Primitives.dll new file mode 100755 index 0000000..4f32b94 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.TypeConverter.dll b/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.TypeConverter.dll new file mode 100755 index 0000000..52c4c9f Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.TypeConverter.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.dll b/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.dll new file mode 100755 index 0000000..aad0640 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Configuration.dll b/Auth.API/bin/Debug/net10.0/refs/System.Configuration.dll new file mode 100755 index 0000000..eb0c0a4 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Configuration.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Console.dll b/Auth.API/bin/Debug/net10.0/refs/System.Console.dll new file mode 100755 index 0000000..dbbf441 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Console.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Core.dll b/Auth.API/bin/Debug/net10.0/refs/System.Core.dll new file mode 100755 index 0000000..da7566e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Core.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Data.Common.dll b/Auth.API/bin/Debug/net10.0/refs/System.Data.Common.dll new file mode 100755 index 0000000..3a5a952 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Data.Common.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Data.DataSetExtensions.dll b/Auth.API/bin/Debug/net10.0/refs/System.Data.DataSetExtensions.dll new file mode 100755 index 0000000..97cabee Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Data.DataSetExtensions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Data.dll b/Auth.API/bin/Debug/net10.0/refs/System.Data.dll new file mode 100755 index 0000000..362b62d Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Data.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Contracts.dll b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Contracts.dll new file mode 100755 index 0000000..356f703 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Contracts.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Debug.dll b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Debug.dll new file mode 100755 index 0000000..16936d9 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Debug.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.DiagnosticSource.dll b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.DiagnosticSource.dll new file mode 100755 index 0000000..08893b9 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.DiagnosticSource.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.EventLog.dll b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.EventLog.dll new file mode 100755 index 0000000..f819751 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.EventLog.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.FileVersionInfo.dll b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.FileVersionInfo.dll new file mode 100755 index 0000000..76b4139 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.FileVersionInfo.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Process.dll b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Process.dll new file mode 100755 index 0000000..95bfbbf Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Process.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.StackTrace.dll b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.StackTrace.dll new file mode 100755 index 0000000..d395cd9 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.StackTrace.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.TextWriterTraceListener.dll b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.TextWriterTraceListener.dll new file mode 100755 index 0000000..d6bdeb3 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Tools.dll b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Tools.dll new file mode 100755 index 0000000..afb7cbc Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Tools.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.TraceSource.dll b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.TraceSource.dll new file mode 100755 index 0000000..9156283 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.TraceSource.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Tracing.dll b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Tracing.dll new file mode 100755 index 0000000..d78cb65 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Tracing.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Drawing.Primitives.dll b/Auth.API/bin/Debug/net10.0/refs/System.Drawing.Primitives.dll new file mode 100755 index 0000000..2976e78 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Drawing.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Drawing.dll b/Auth.API/bin/Debug/net10.0/refs/System.Drawing.dll new file mode 100755 index 0000000..4700773 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Drawing.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Dynamic.Runtime.dll b/Auth.API/bin/Debug/net10.0/refs/System.Dynamic.Runtime.dll new file mode 100755 index 0000000..55bb2d4 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Dynamic.Runtime.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Formats.Asn1.dll b/Auth.API/bin/Debug/net10.0/refs/System.Formats.Asn1.dll new file mode 100755 index 0000000..1f58ae5 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Formats.Asn1.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Formats.Cbor.dll b/Auth.API/bin/Debug/net10.0/refs/System.Formats.Cbor.dll new file mode 100755 index 0000000..56f645d Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Formats.Cbor.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Formats.Tar.dll b/Auth.API/bin/Debug/net10.0/refs/System.Formats.Tar.dll new file mode 100755 index 0000000..d22335e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Formats.Tar.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Globalization.Calendars.dll b/Auth.API/bin/Debug/net10.0/refs/System.Globalization.Calendars.dll new file mode 100755 index 0000000..0a29c4c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Globalization.Calendars.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Globalization.Extensions.dll b/Auth.API/bin/Debug/net10.0/refs/System.Globalization.Extensions.dll new file mode 100755 index 0000000..f5c1f30 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Globalization.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Globalization.dll b/Auth.API/bin/Debug/net10.0/refs/System.Globalization.dll new file mode 100755 index 0000000..8c2f854 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Globalization.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.Brotli.dll b/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.Brotli.dll new file mode 100755 index 0000000..977c1d2 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.Brotli.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.FileSystem.dll b/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.FileSystem.dll new file mode 100755 index 0000000..a9a3816 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.FileSystem.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.ZipFile.dll b/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.ZipFile.dll new file mode 100755 index 0000000..7ddd24d Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.ZipFile.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.dll b/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.dll new file mode 100755 index 0000000..bf025ea Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.AccessControl.dll b/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.AccessControl.dll new file mode 100755 index 0000000..1a4ce54 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.AccessControl.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.DriveInfo.dll b/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.DriveInfo.dll new file mode 100755 index 0000000..9691411 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.DriveInfo.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.Primitives.dll b/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.Primitives.dll new file mode 100755 index 0000000..42b50a3 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.Watcher.dll b/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.Watcher.dll new file mode 100755 index 0000000..dfe8e60 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.Watcher.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.dll b/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.dll new file mode 100755 index 0000000..c6e482a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.IO.IsolatedStorage.dll b/Auth.API/bin/Debug/net10.0/refs/System.IO.IsolatedStorage.dll new file mode 100755 index 0000000..5c1662a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.IO.IsolatedStorage.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.IO.MemoryMappedFiles.dll b/Auth.API/bin/Debug/net10.0/refs/System.IO.MemoryMappedFiles.dll new file mode 100755 index 0000000..9db18ba Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.IO.MemoryMappedFiles.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.IO.Pipelines.dll b/Auth.API/bin/Debug/net10.0/refs/System.IO.Pipelines.dll new file mode 100755 index 0000000..8e179ed Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.IO.Pipelines.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.IO.Pipes.AccessControl.dll b/Auth.API/bin/Debug/net10.0/refs/System.IO.Pipes.AccessControl.dll new file mode 100755 index 0000000..6caca87 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.IO.Pipes.AccessControl.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.IO.Pipes.dll b/Auth.API/bin/Debug/net10.0/refs/System.IO.Pipes.dll new file mode 100755 index 0000000..320c721 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.IO.Pipes.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.IO.UnmanagedMemoryStream.dll b/Auth.API/bin/Debug/net10.0/refs/System.IO.UnmanagedMemoryStream.dll new file mode 100755 index 0000000..64e2907 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.IO.UnmanagedMemoryStream.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.IO.dll b/Auth.API/bin/Debug/net10.0/refs/System.IO.dll new file mode 100755 index 0000000..fa214cb Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.IO.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Linq.AsyncEnumerable.dll b/Auth.API/bin/Debug/net10.0/refs/System.Linq.AsyncEnumerable.dll new file mode 100755 index 0000000..0b1df00 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Linq.AsyncEnumerable.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Linq.Expressions.dll b/Auth.API/bin/Debug/net10.0/refs/System.Linq.Expressions.dll new file mode 100755 index 0000000..182bfba Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Linq.Expressions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Linq.Parallel.dll b/Auth.API/bin/Debug/net10.0/refs/System.Linq.Parallel.dll new file mode 100755 index 0000000..5d80728 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Linq.Parallel.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Linq.Queryable.dll b/Auth.API/bin/Debug/net10.0/refs/System.Linq.Queryable.dll new file mode 100755 index 0000000..f70b807 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Linq.Queryable.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Linq.dll b/Auth.API/bin/Debug/net10.0/refs/System.Linq.dll new file mode 100755 index 0000000..3888cff Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Linq.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Memory.dll b/Auth.API/bin/Debug/net10.0/refs/System.Memory.dll new file mode 100755 index 0000000..95b9ce2 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Memory.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.Http.Json.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.Http.Json.dll new file mode 100755 index 0000000..a968699 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.Http.Json.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.Http.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.Http.dll new file mode 100755 index 0000000..05df191 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.Http.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.HttpListener.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.HttpListener.dll new file mode 100755 index 0000000..48ac141 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.HttpListener.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.Mail.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.Mail.dll new file mode 100755 index 0000000..f4c67ce Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.Mail.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.NameResolution.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.NameResolution.dll new file mode 100755 index 0000000..054527b Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.NameResolution.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.NetworkInformation.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.NetworkInformation.dll new file mode 100755 index 0000000..e8e8ce4 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.NetworkInformation.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.Ping.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.Ping.dll new file mode 100755 index 0000000..b9cea80 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.Ping.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.Primitives.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.Primitives.dll new file mode 100755 index 0000000..96b25dd Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.Quic.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.Quic.dll new file mode 100755 index 0000000..e34e524 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.Quic.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.Requests.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.Requests.dll new file mode 100755 index 0000000..9cedfe0 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.Requests.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.Security.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.Security.dll new file mode 100755 index 0000000..bd0b0b7 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.Security.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.ServerSentEvents.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.ServerSentEvents.dll new file mode 100755 index 0000000..2388063 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.ServerSentEvents.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.ServicePoint.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.ServicePoint.dll new file mode 100755 index 0000000..5769e1b Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.ServicePoint.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.Sockets.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.Sockets.dll new file mode 100755 index 0000000..d320649 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.Sockets.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.WebClient.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.WebClient.dll new file mode 100755 index 0000000..789f82a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.WebClient.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.WebHeaderCollection.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.WebHeaderCollection.dll new file mode 100755 index 0000000..da45984 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.WebHeaderCollection.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.WebProxy.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.WebProxy.dll new file mode 100755 index 0000000..c56ada8 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.WebProxy.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.WebSockets.Client.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.WebSockets.Client.dll new file mode 100755 index 0000000..fef41eb Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.WebSockets.Client.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.WebSockets.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.WebSockets.dll new file mode 100755 index 0000000..9aa2f12 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.WebSockets.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Net.dll b/Auth.API/bin/Debug/net10.0/refs/System.Net.dll new file mode 100755 index 0000000..887d5f6 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Net.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Numerics.Vectors.dll b/Auth.API/bin/Debug/net10.0/refs/System.Numerics.Vectors.dll new file mode 100755 index 0000000..dac0c7a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Numerics.Vectors.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Numerics.dll b/Auth.API/bin/Debug/net10.0/refs/System.Numerics.dll new file mode 100755 index 0000000..c0b08ab Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Numerics.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.ObjectModel.dll b/Auth.API/bin/Debug/net10.0/refs/System.ObjectModel.dll new file mode 100755 index 0000000..b0bdf42 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.ObjectModel.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Reflection.DispatchProxy.dll b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.DispatchProxy.dll new file mode 100755 index 0000000..f4b94d7 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.DispatchProxy.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Emit.ILGeneration.dll b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Emit.ILGeneration.dll new file mode 100755 index 0000000..aec51c1 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Emit.ILGeneration.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Emit.Lightweight.dll b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Emit.Lightweight.dll new file mode 100755 index 0000000..4f5ab51 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Emit.Lightweight.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Emit.dll b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Emit.dll new file mode 100755 index 0000000..bb67b70 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Emit.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Extensions.dll b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Extensions.dll new file mode 100755 index 0000000..31d5c5b Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Metadata.dll b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Metadata.dll new file mode 100755 index 0000000..c220739 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Metadata.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Primitives.dll b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Primitives.dll new file mode 100755 index 0000000..2d64d61 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Reflection.TypeExtensions.dll b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.TypeExtensions.dll new file mode 100755 index 0000000..2ce5fba Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.TypeExtensions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Reflection.dll b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.dll new file mode 100755 index 0000000..1da1162 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Reflection.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Resources.Reader.dll b/Auth.API/bin/Debug/net10.0/refs/System.Resources.Reader.dll new file mode 100755 index 0000000..a913461 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Resources.Reader.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Resources.ResourceManager.dll b/Auth.API/bin/Debug/net10.0/refs/System.Resources.ResourceManager.dll new file mode 100755 index 0000000..0462437 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Resources.ResourceManager.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Resources.Writer.dll b/Auth.API/bin/Debug/net10.0/refs/System.Resources.Writer.dll new file mode 100755 index 0000000..21763e5 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Resources.Writer.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.Unsafe.dll b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.Unsafe.dll new file mode 100755 index 0000000..103ce41 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.VisualC.dll b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.VisualC.dll new file mode 100755 index 0000000..1fa38c3 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Extensions.dll b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Extensions.dll new file mode 100755 index 0000000..a029506 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Handles.dll b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Handles.dll new file mode 100755 index 0000000..128a9ab Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Handles.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Runtime.InteropServices.JavaScript.dll b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.InteropServices.JavaScript.dll new file mode 100755 index 0000000..5641ff5 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.InteropServices.JavaScript.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100755 index 0000000..cc63c0d Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Runtime.InteropServices.dll b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.InteropServices.dll new file mode 100755 index 0000000..dc65a0a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.InteropServices.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Intrinsics.dll b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Intrinsics.dll new file mode 100755 index 0000000..c43f637 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Intrinsics.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Loader.dll b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Loader.dll new file mode 100755 index 0000000..ab83bce Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Loader.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Numerics.dll b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Numerics.dll new file mode 100755 index 0000000..11002a9 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Numerics.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Formatters.dll b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Formatters.dll new file mode 100755 index 0000000..ede3b7a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Formatters.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Json.dll b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Json.dll new file mode 100755 index 0000000..97d4a7a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Json.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Primitives.dll b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Primitives.dll new file mode 100755 index 0000000..3fb0149 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Xml.dll b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Xml.dll new file mode 100755 index 0000000..fdc01d4 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Xml.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.dll b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.dll new file mode 100755 index 0000000..b5de1a7 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Runtime.dll b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.dll new file mode 100755 index 0000000..c4b19dc Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Runtime.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Security.AccessControl.dll b/Auth.API/bin/Debug/net10.0/refs/System.Security.AccessControl.dll new file mode 100755 index 0000000..58dd45f Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Security.AccessControl.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Security.Claims.dll b/Auth.API/bin/Debug/net10.0/refs/System.Security.Claims.dll new file mode 100755 index 0000000..835d106 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Security.Claims.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Algorithms.dll b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Algorithms.dll new file mode 100755 index 0000000..1943a1d Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Algorithms.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Cng.dll b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Cng.dll new file mode 100755 index 0000000..2d282ba Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Cng.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Csp.dll b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Csp.dll new file mode 100755 index 0000000..8b40256 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Csp.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Encoding.dll b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Encoding.dll new file mode 100755 index 0000000..e6ab055 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Encoding.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.OpenSsl.dll b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.OpenSsl.dll new file mode 100755 index 0000000..8b1aa04 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.OpenSsl.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Primitives.dll b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Primitives.dll new file mode 100755 index 0000000..90290a4 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.X509Certificates.dll b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.X509Certificates.dll new file mode 100755 index 0000000..90b5a11 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.X509Certificates.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Xml.dll b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Xml.dll new file mode 100755 index 0000000..65414a7 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Xml.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.dll b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.dll new file mode 100755 index 0000000..fc57ae0 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Security.Principal.Windows.dll b/Auth.API/bin/Debug/net10.0/refs/System.Security.Principal.Windows.dll new file mode 100755 index 0000000..dd75288 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Security.Principal.Windows.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Security.Principal.dll b/Auth.API/bin/Debug/net10.0/refs/System.Security.Principal.dll new file mode 100755 index 0000000..6727f00 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Security.Principal.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Security.SecureString.dll b/Auth.API/bin/Debug/net10.0/refs/System.Security.SecureString.dll new file mode 100755 index 0000000..ac7b1c6 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Security.SecureString.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Security.dll b/Auth.API/bin/Debug/net10.0/refs/System.Security.dll new file mode 100755 index 0000000..e50e9dd Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Security.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.ServiceModel.Web.dll b/Auth.API/bin/Debug/net10.0/refs/System.ServiceModel.Web.dll new file mode 100755 index 0000000..9a5b085 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.ServiceModel.Web.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.ServiceProcess.dll b/Auth.API/bin/Debug/net10.0/refs/System.ServiceProcess.dll new file mode 100755 index 0000000..adfc649 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.ServiceProcess.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Text.Encoding.CodePages.dll b/Auth.API/bin/Debug/net10.0/refs/System.Text.Encoding.CodePages.dll new file mode 100755 index 0000000..a527242 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Text.Encoding.CodePages.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Text.Encoding.Extensions.dll b/Auth.API/bin/Debug/net10.0/refs/System.Text.Encoding.Extensions.dll new file mode 100755 index 0000000..7d5d5ca Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Text.Encoding.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Text.Encoding.dll b/Auth.API/bin/Debug/net10.0/refs/System.Text.Encoding.dll new file mode 100755 index 0000000..16179d8 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Text.Encoding.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Text.Encodings.Web.dll b/Auth.API/bin/Debug/net10.0/refs/System.Text.Encodings.Web.dll new file mode 100755 index 0000000..c16f217 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Text.Encodings.Web.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Text.Json.dll b/Auth.API/bin/Debug/net10.0/refs/System.Text.Json.dll new file mode 100755 index 0000000..14f54d2 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Text.Json.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Text.RegularExpressions.dll b/Auth.API/bin/Debug/net10.0/refs/System.Text.RegularExpressions.dll new file mode 100755 index 0000000..16a1753 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Text.RegularExpressions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Threading.AccessControl.dll b/Auth.API/bin/Debug/net10.0/refs/System.Threading.AccessControl.dll new file mode 100755 index 0000000..2f919a2 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Threading.AccessControl.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Threading.Channels.dll b/Auth.API/bin/Debug/net10.0/refs/System.Threading.Channels.dll new file mode 100755 index 0000000..750eae2 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Threading.Channels.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Threading.Overlapped.dll b/Auth.API/bin/Debug/net10.0/refs/System.Threading.Overlapped.dll new file mode 100755 index 0000000..a55fdc7 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Threading.Overlapped.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Threading.RateLimiting.dll b/Auth.API/bin/Debug/net10.0/refs/System.Threading.RateLimiting.dll new file mode 100755 index 0000000..9a39241 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Threading.RateLimiting.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.Dataflow.dll b/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.Dataflow.dll new file mode 100755 index 0000000..e36ff3b Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.Dataflow.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.Extensions.dll b/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.Extensions.dll new file mode 100755 index 0000000..fdb3302 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.Parallel.dll b/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.Parallel.dll new file mode 100755 index 0000000..96290ea Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.Parallel.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.dll b/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.dll new file mode 100755 index 0000000..f3e283e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Threading.Thread.dll b/Auth.API/bin/Debug/net10.0/refs/System.Threading.Thread.dll new file mode 100755 index 0000000..bf23f97 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Threading.Thread.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Threading.ThreadPool.dll b/Auth.API/bin/Debug/net10.0/refs/System.Threading.ThreadPool.dll new file mode 100755 index 0000000..3da0469 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Threading.ThreadPool.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Threading.Timer.dll b/Auth.API/bin/Debug/net10.0/refs/System.Threading.Timer.dll new file mode 100755 index 0000000..0ce79be Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Threading.Timer.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Threading.dll b/Auth.API/bin/Debug/net10.0/refs/System.Threading.dll new file mode 100755 index 0000000..bf92c56 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Threading.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Transactions.Local.dll b/Auth.API/bin/Debug/net10.0/refs/System.Transactions.Local.dll new file mode 100755 index 0000000..d73dc4a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Transactions.Local.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Transactions.dll b/Auth.API/bin/Debug/net10.0/refs/System.Transactions.dll new file mode 100755 index 0000000..dc8e84f Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Transactions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.ValueTuple.dll b/Auth.API/bin/Debug/net10.0/refs/System.ValueTuple.dll new file mode 100755 index 0000000..cfbdb07 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.ValueTuple.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Web.HttpUtility.dll b/Auth.API/bin/Debug/net10.0/refs/System.Web.HttpUtility.dll new file mode 100755 index 0000000..7ca0d66 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Web.HttpUtility.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Web.dll b/Auth.API/bin/Debug/net10.0/refs/System.Web.dll new file mode 100755 index 0000000..2d716df Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Web.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Windows.dll b/Auth.API/bin/Debug/net10.0/refs/System.Windows.dll new file mode 100755 index 0000000..074792b Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Windows.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Xml.Linq.dll b/Auth.API/bin/Debug/net10.0/refs/System.Xml.Linq.dll new file mode 100755 index 0000000..d9b85f6 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Xml.Linq.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Xml.ReaderWriter.dll b/Auth.API/bin/Debug/net10.0/refs/System.Xml.ReaderWriter.dll new file mode 100755 index 0000000..8cd3dd5 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Xml.ReaderWriter.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Xml.Serialization.dll b/Auth.API/bin/Debug/net10.0/refs/System.Xml.Serialization.dll new file mode 100755 index 0000000..36952af Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Xml.Serialization.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Xml.XDocument.dll b/Auth.API/bin/Debug/net10.0/refs/System.Xml.XDocument.dll new file mode 100755 index 0000000..7312d00 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Xml.XDocument.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Xml.XPath.XDocument.dll b/Auth.API/bin/Debug/net10.0/refs/System.Xml.XPath.XDocument.dll new file mode 100755 index 0000000..0bfd06d Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Xml.XPath.XDocument.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Xml.XPath.dll b/Auth.API/bin/Debug/net10.0/refs/System.Xml.XPath.dll new file mode 100755 index 0000000..7e42eec Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Xml.XPath.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Xml.XmlDocument.dll b/Auth.API/bin/Debug/net10.0/refs/System.Xml.XmlDocument.dll new file mode 100755 index 0000000..c8f5d0f Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Xml.XmlDocument.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Xml.XmlSerializer.dll b/Auth.API/bin/Debug/net10.0/refs/System.Xml.XmlSerializer.dll new file mode 100755 index 0000000..bf38d7a Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Xml.XmlSerializer.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.Xml.dll b/Auth.API/bin/Debug/net10.0/refs/System.Xml.dll new file mode 100755 index 0000000..894de26 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.Xml.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/System.dll b/Auth.API/bin/Debug/net10.0/refs/System.dll new file mode 100755 index 0000000..7a27f30 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/System.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/WindowsBase.dll b/Auth.API/bin/Debug/net10.0/refs/WindowsBase.dll new file mode 100755 index 0000000..f8e6a24 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/WindowsBase.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/mscorlib.dll b/Auth.API/bin/Debug/net10.0/refs/mscorlib.dll new file mode 100755 index 0000000..8d59d2d Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/mscorlib.dll differ diff --git a/Auth.API/bin/Debug/net10.0/refs/netstandard.dll b/Auth.API/bin/Debug/net10.0/refs/netstandard.dll new file mode 100755 index 0000000..94271b0 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/refs/netstandard.dll differ diff --git a/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..80408af Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..171d38e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll new file mode 100755 index 0000000..a01110b Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..6e40041 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..5a93bd4 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/runtimes/win/lib/net9.0/System.Windows.Extensions.dll b/Auth.API/bin/Debug/net10.0/runtimes/win/lib/net9.0/System.Windows.Extensions.dll new file mode 100755 index 0000000..4c36519 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/runtimes/win/lib/net9.0/System.Windows.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..acad49c Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..1c74b2d Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll new file mode 100755 index 0000000..4cca008 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..4e8704e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..06464b4 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..7ef207e Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..9c4e387 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll new file mode 100755 index 0000000..90bc959 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..1e09e22 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..0afaa03 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..7390629 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..6fad2bc Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll b/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll new file mode 100755 index 0000000..80c3c21 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..f559f3b Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..774b6c8 Binary files /dev/null and b/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/API b/Auth.API/bin/Debug/net9.0/API new file mode 100755 index 0000000..e868965 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/API differ diff --git a/Auth.API/bin/Debug/net9.0/API.deps.json b/Auth.API/bin/Debug/net9.0/API.deps.json new file mode 100644 index 0000000..48c9dfe --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/API.deps.json @@ -0,0 +1,1562 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "API/1.0.0": { + "dependencies": { + "Contracts": "1.0.0", + "Core": "1.0.0", + "Domain": "1.0.0", + "FluentEmail.Core": "3.0.2", + "FluentEmail.Razor": "3.0.2", + "FluentEmail.Smtp": "3.0.2", + "Microsoft.AspNetCore.Authentication.JwtBearer": "9.0.7", + "Microsoft.AspNetCore.OpenApi": "9.0.7", + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.EntityFrameworkCore.Design": "9.0.7", + "Microsoft.EntityFrameworkCore.Proxies": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4", + "Swashbuckle.AspNetCore": "9.0.3", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "API.dll": {} + } + }, + "Bogus/35.6.3": { + "runtime": { + "lib/net6.0/Bogus.dll": { + "assemblyVersion": "35.6.3.0", + "fileVersion": "35.6.3.0" + } + } + }, + "Castle.Core/5.1.1": { + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "runtime": { + "lib/net6.0/Castle.Core.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.1.1.0" + } + } + }, + "FluentEmail.Core/3.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Core.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "FluentEmail.Razor/3.0.2": { + "dependencies": { + "FluentEmail.Core": "3.0.2", + "RazorLight": "2.0.0-rc.3" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Razor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "FluentEmail.Smtp/3.0.2": { + "dependencies": { + "FluentEmail.Core": "3.0.2" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Smtp.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.7": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Microsoft.Extensions.Identity.Stores": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/5.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "5.0.0", + "Microsoft.CodeAnalysis.Razor": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.52605" + } + } + }, + "Microsoft.AspNetCore.OpenApi/9.0.7": { + "dependencies": { + "Microsoft.OpenApi": "1.6.23" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Razor.Language/5.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.52605" + } + } + }, + "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.Build.Framework/17.8.3": {}, + "Microsoft.Build.Locator/1.7.8": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.7.8.28074" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "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.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.Razor/5.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "5.0.0", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.52605" + } + } + }, + "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.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "dependencies": { + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0", + "System.Text.Json": "9.0.7" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + }, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.7", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.7": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.7": {}, + "Microsoft.EntityFrameworkCore.Design/9.0.7": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.7", + "Microsoft.Extensions.DependencyModel": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7", + "Mono.TextTemplating": "3.0.0", + "System.Text.Json": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Proxies/9.0.7": { + "dependencies": { + "Castle.Core": "5.1.1", + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Proxies.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/9.0.0": {}, + "Microsoft.Extensions.Caching.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyModel/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "9.0.0.7", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + } + }, + "Microsoft.Extensions.FileProviders.Physical/5.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "5.0.0", + "Microsoft.Extensions.Primitives": "9.0.7" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {}, + "Microsoft.Extensions.Identity.Core/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.Identity.Core": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.Extensions.Logging/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Options/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.IdentityModel.Logging": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.OpenApi/1.6.23": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.6.23.0", + "fileVersion": "1.6.23.0" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + } + }, + "Npgsql/9.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Npgsql": "9.0.3" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "RazorLight/2.0.0-rc.3": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "5.0.0", + "Microsoft.CodeAnalysis.Razor": "5.0.0", + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.DependencyInjection": "9.0.7", + "Microsoft.Extensions.DependencyModel": "9.0.7", + "Microsoft.Extensions.FileProviders.Physical": "5.0.0", + "Microsoft.Extensions.Primitives": "9.0.7", + "System.Buffers": "4.5.1" + }, + "runtime": { + "lib/net5.0/RazorLight.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Swashbuckle.AspNetCore/9.0.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "9.0.0", + "Swashbuckle.AspNetCore.Swagger": "9.0.3", + "Swashbuckle.AspNetCore.SwaggerGen": "9.0.3", + "Swashbuckle.AspNetCore.SwaggerUI": "9.0.3" + } + }, + "Swashbuckle.AspNetCore.Swagger/9.0.3": { + "dependencies": { + "Microsoft.OpenApi": "1.6.23" + }, + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.1613" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/9.0.3": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "9.0.3" + }, + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.1613" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/9.0.3": { + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.1613" + } + } + }, + "System.Buffers/4.5.1": {}, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "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.Diagnostics.EventLog/6.0.0": {}, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.12.1", + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "System.IO.Pipelines/7.0.0": {}, + "System.Reflection.Metadata/7.0.0": { + "dependencies": { + "System.Collections.Immutable": "7.0.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Text.Json/9.0.7": {}, + "System.Threading.Channels/7.0.0": {}, + "Contracts/1.0.0": { + "runtime": { + "Contracts.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Core/1.0.0": { + "dependencies": { + "Contracts": "1.0.0", + "Domain": "1.0.0", + "FluentEmail.Core": "3.0.2", + "FluentEmail.Smtp": "3.0.2", + "Generic": "1.0.0", + "Microsoft.AspNetCore.Authentication.JwtBearer": "9.0.7", + "Microsoft.EntityFrameworkCore": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "Core.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Domain/1.0.0": { + "dependencies": { + "Bogus": "35.6.3", + "Contracts": "1.0.0", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "runtime": { + "Domain.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Generic/1.0.0": { + "runtime": { + "Generic.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "API/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Bogus/35.6.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+5omfZWy8gOcbpc48vKfMI4h/ecbdf3NQm6xCl3zMbaP4J3rMMm5h3kPFeIWBgt4mbz6YY0eeZDLR/6yv1khKw==", + "path": "bogus/35.6.3", + "hashPath": "bogus.35.6.3.nupkg.sha512" + }, + "Castle.Core/5.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rpYtIczkzGpf+EkZgDr9CClTdemhsrwA/W5hMoPjLkRFnXzH44zDLoovXeKtmxb1ykXK9aJVODSpiJml8CTw2g==", + "path": "castle.core/5.1.1", + "hashPath": "castle.core.5.1.1.nupkg.sha512" + }, + "FluentEmail.Core/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==", + "path": "fluentemail.core/3.0.2", + "hashPath": "fluentemail.core.3.0.2.nupkg.sha512" + }, + "FluentEmail.Razor/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XdZS2n9jjrx2qzyBGvgstYFIm2laYo1j7YMUZI0rylZhpZHIic3taWqe78xF5dcsXpJvucmxRCshhF6hl02Dmw==", + "path": "fluentemail.razor/3.0.2", + "hashPath": "fluentemail.razor.3.0.2.nupkg.sha512" + }, + "FluentEmail.Smtp/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==", + "path": "fluentemail.smtp/3.0.2", + "hashPath": "fluentemail.smtp.3.0.2.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" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lloN3XvIgXmdocfghzfszOHJb45OYR3fgOg/h536o+zNB2SmP3JrqeOieCBZ7sipgGcgbxP0boA+loVhdsJxWg==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/9.0.7", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5di3GKY/a9ceGAdVk78QFGMO55NrFRN1rnh4xNr7MHjOCOMhgcWkyv9051wkPUDfX+g2cNN6+ckHvNnlxUwc2A==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.7", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ms7cTGHBzhCTfC8yIv9KfMrLKsRLg60jGsoZ/oEjoBXbqcEsXcjNtXqaOJCjpeltLDKoePrfSWzjhMUxTHHMA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.7", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tr4JHBgE/wN4Q/iQkWsi0oZXcaM7WFeZ1rpCUeTVka6az3DTtG0+RMuvZvPIq8U8vCANVuzqAcr+uUry4FUKrg==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.7", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+vVXw0oVVu5dnwseBxZFVeYZ0qPJTI03DTdghRKrcK+QhTM3Nu8orukKqdYObsI4mWZADE8wTILuYR5CowJr+w==", + "path": "microsoft.aspnetcore.mvc.razor.extensions/5.0.0", + "hashPath": "microsoft.aspnetcore.mvc.razor.extensions.5.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.OpenApi/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8aG0mkgmA38IDJ0ca5HIpdexKjHXIh0z1kIdw5WyM6CrD4+CEt97UgSwBBBCHG6QQKV0hj2mfkwtEcqrJBcu8g==", + "path": "microsoft.aspnetcore.openapi/9.0.7", + "hashPath": "microsoft.aspnetcore.openapi.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6yOBBASGfXMx1fY6hyjvG+oM3eR8vovIehDdEZW7jAV4gKlY4xuAvTm7Iw1fEq7KPunh2VrJwo7oRK1XxUn1OQ==", + "path": "microsoft.aspnetcore.razor.language/5.0.0", + "hashPath": "microsoft.aspnetcore.razor.language.5.0.0.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.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.Build.Locator/1.7.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "path": "microsoft.build.locator/1.7.8", + "hashPath": "microsoft.build.locator.1.7.8.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.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.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.Razor/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s4u/6z/MQ35y/egrXf4WgJlUZf5GGvuba9mZ700dH4XxLBrA9Fw9kFZ8uymoATry7hwz5owvFhBVo+2VnoiGRg==", + "path": "microsoft.codeanalysis.razor/5.0.0", + "hashPath": "microsoft.codeanalysis.razor.5.0.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.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PbD0q5ax15r91jD4TN7xbDCjldZSz4JfpYN4ZZjAkWeUyROkV92Ydg0O2/1keFA+2u3KPsDkJMmBKv2zQ06ZVg==", + "path": "microsoft.entityframeworkcore/9.0.7", + "hashPath": "microsoft.entityframeworkcore.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YUXNerEkCf4OANO+zjuMznpUW7R8XxSCqmBfYhBrbrJVc09i84KkNgeUTaOUXCGogSK/3d7ORRhMqfUobnejBg==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.7", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HqiPjAvjVOsyA1svnjL81/Wk2MRQYMK/lxKVWvw0f5IcA//VcxBepVSAqe7CFirdsPXqe8rFKEwZROWZTz7Jqw==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.7", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zvZ2/bRwdPrBfQ2fRd2IQL6icyIOtosZSz2QpXtsn7M+c6e4GvpNfpSxBprLfoKhH6NeAFNV9ool0Vp/1DJd/A==", + "path": "microsoft.entityframeworkcore.design/9.0.7", + "hashPath": "microsoft.entityframeworkcore.design.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Proxies/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lPhrsrxYxslg5xW/vltvaKpnI7aw4FiADJ1+zRHNLRzZq8FV5L4AuyJAL6QEqp4UPewEl+yZqoRVNbuEcMzGWQ==", + "path": "microsoft.entityframeworkcore.proxies/9.0.7", + "hashPath": "microsoft.entityframeworkcore.proxies.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yo5joquG7L79H5BhtpqP8apu+KFOAYfvmj0dZnVkPElBY14wY5qva0SOcrDWzYw5BrJrhIArfCcJCJHBvMYiKg==", + "path": "microsoft.entityframeworkcore.relational/9.0.7", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Kzzf7pRey40VaUkHN9/uWxrKVkLu2AQjt+GVeeKLLpiEHAJ1xZRsLSh4ZZYEnyS7Kt2OBOPmsXNdU+wbcOl5w==", + "path": "microsoft.extensions.apidescription.server/9.0.0", + "hashPath": "microsoft.extensions.apidescription.server.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-30necCQehcg9lFkMEIE7HczcoYGML8GUH6jlincA18d896fLZM9wl5tpTPJHgzANQE/6KXRLZSWbgevgg5csSw==", + "path": "microsoft.extensions.caching.abstractions/9.0.7", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nDu6c8fwrHQYccLnWnvyElrdkL3rZ97TZNqL+niMFUcApVBHdpDmKcRvciGymJ4Y0iLDTOo5J2XhDQEbNb+dFg==", + "path": "microsoft.extensions.caching.memory/9.0.7", + "hashPath": "microsoft.extensions.caching.memory.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lut/kiVvNsQ120VERMUYSFhpXPpKjjql+giy03LesASPBBcC0o6+aoFdzJH9GaYpFTQ3fGVhVjKjvJDoAW5/IQ==", + "path": "microsoft.extensions.configuration.abstractions/9.0.7", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i05AYA91vgq0as84ROVCyltD2gnxaba/f1Qw2rG7mUsS0gv8cPTr1Gm7jPQHq7JTr4MJoQUcanLVs16tIOUJaQ==", + "path": "microsoft.extensions.dependencyinjection/9.0.7", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iPK1FxbGFr2Xb+4Y+dTYI8Gupu9pOi8I3JPuPsrogUmEhe2hzZ9LpCmolMEBhVDo2ikcSr7G5zYiwaapHSQTew==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.7", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aXEt8QW1Fj9aC81GfkMtfip4wfbkEA7VBvNkx6Rx6ZKyqXIF/9qzRtH6v/2096IDK4lt6dlQp5Ajf+kjHfUdOA==", + "path": "microsoft.extensions.dependencymodel/9.0.7", + "hashPath": "microsoft.extensions.dependencymodel.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==", + "path": "microsoft.extensions.fileproviders.abstractions/5.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==", + "path": "microsoft.extensions.fileproviders.physical/5.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==", + "path": "microsoft.extensions.filesystemglobbing/5.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yFMK7yhLYbiwiiKOI/A1rReteRbO4vnN3SPNF5YpUHf6BvSMn5K1TDa7GVszJBH/VmxP0EAsHnSH05GEV0x3cg==", + "path": "microsoft.extensions.identity.core/9.0.7", + "hashPath": "microsoft.extensions.identity.core.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mf04+xUV6HCeLROYHZeGSSSIbwXN2taLOcDpSKYO6BawqNOJoBSN9MaQ5vMNrlnH6BnXYPO8S4PuREftqXx5KA==", + "path": "microsoft.extensions.identity.stores/9.0.7", + "hashPath": "microsoft.extensions.identity.stores.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fdIeQpXYV8yxSWG03cCbU2Otdrq4NWuhnQLXokWLv3L9YcK055E7u8WFJvP+uuP4CFeCEoqZQL4yPcjuXhCZrg==", + "path": "microsoft.extensions.logging/9.0.7", + "hashPath": "microsoft.extensions.logging.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sMM6NEAdUTE/elJ2wqjOi0iBWqZmSyaTByLF9e8XHv6DRJFFnOe0N+s8Uc6C91E4SboQCfLswaBIZ+9ZXA98AA==", + "path": "microsoft.extensions.logging.abstractions/9.0.7", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-trJnF6cRWgR5uMmHpGoHmM1wOVFdIYlELlkO9zX+RfieK0321Y55zrcs4AaEymKup7dxgEN/uJU25CAcMNQRXw==", + "path": "microsoft.extensions.options/9.0.7", + "hashPath": "microsoft.extensions.options.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ti/zD9BuuO50IqlvhWQs9GHxkCmoph5BHjGiWKdg2t6Or8XoyAfRJiKag+uvd/fpASnNklfsB01WpZ4fhAe0VQ==", + "path": "microsoft.extensions.primitives/9.0.7", + "hashPath": "microsoft.extensions.primitives.9.0.7.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JzWhET0VOCORyJbqDc1Wtdl8Q/l+I1MjFB0I/Jko+Ma691JZll8X6o9XwZtUce8FkqGuV4uY4/V1808XZOpDVg==", + "path": "microsoft.identitymodel.abstractions/8.12.1", + "hashPath": "microsoft.identitymodel.abstractions.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-imi3xiRLzzKxN4m1aR9Z2X8GUmNsVH7GLA6AkwYStNnh3UzupFtHEEVk3GK1fCvnYdRbpnCGNYY6WQb9AfDAKg==", + "path": "microsoft.identitymodel.jsonwebtokens/8.12.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-39HjVkU7Voe2jRLmORRB5PoTmta1ZPKzUZCc6ldlNlLzdx+um0+fAnvfk05LUQPrNxpvb5ZoqF00SrNvyO2Fzg==", + "path": "microsoft.identitymodel.logging/8.12.1", + "hashPath": "microsoft.identitymodel.logging.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "path": "microsoft.identitymodel.protocols/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DzgPEABn3eZmIk4lhov0QPcoHkIbnAfgkyDPM7uGuWDHeockR9DdqNCD9Zy30hPfExu5VhbOXn9oPRi+tFUhEQ==", + "path": "microsoft.identitymodel.tokens/8.12.1", + "hashPath": "microsoft.identitymodel.tokens.8.12.1.nupkg.sha512" + }, + "Microsoft.OpenApi/1.6.23": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tZ1I0KXnn98CWuV8cpI247A17jaY+ILS9vvF7yhI0uPPEqF4P1d7BWL5Uwtel10w9NucllHB3nTkfYTAcHAh8g==", + "path": "microsoft.openapi/1.6.23", + "hashPath": "microsoft.openapi.1.6.23.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" + }, + "Npgsql/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "path": "npgsql/9.0.3", + "hashPath": "npgsql.9.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512" + }, + "RazorLight/2.0.0-rc.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2tzNTdXCCMesPQhIdL0x5QS2BwDvaLWVQLNcAv153gnWzUzw8vYETIZBp/Hx591BHPg9itiT8lwVx94XfAnCNA==", + "path": "razorlight/2.0.0-rc.3", + "hashPath": "razorlight.2.0.0-rc.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Akk4oFgy0ST8Q8pZTfPbrt045tWNyMMiKhlbYjG3qnjQZLz645IL5vhQm7NLicc2sAAQ+vftArIlsYWFevmb2g==", + "path": "swashbuckle.aspnetcore/9.0.3", + "hashPath": "swashbuckle.aspnetcore.9.0.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CGpkZDWj1g/yH/0wYkxUtBhiFo5TY/Esq2fS0vlBvLOs1UL2Jzef9tdtYmTdd3zBPtnMyXQcsXjMt9yCxz4VaA==", + "path": "swashbuckle.aspnetcore.swagger/9.0.3", + "hashPath": "swashbuckle.aspnetcore.swagger.9.0.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-STqjhw1TZiEGmIRgE6jcJUOcgU/Fjquc6dP4GqbuwBzqWZAWr/9T7FZOGWYEwKnmkMplzlUNepGHwnUrfTP0fw==", + "path": "swashbuckle.aspnetcore.swaggergen/9.0.3", + "hashPath": "swashbuckle.aspnetcore.swaggergen.9.0.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DgJKJASz5OAygeKv2+N0FCZVhQylESqLXrtrRAqIT0vKpX7t5ImJ1FL6+6OqxKiamGkL0jchRXR8OgpMSsMh8w==", + "path": "swashbuckle.aspnetcore.swaggerui/9.0.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.9.0.3.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.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.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jlYdVOJrdeyD80ppEqKJ8BhJdrV3MjeA+seURdhC0DnD41GyUA9Ik+P7Sb571ufVVCYIx93GjeqVvY3QyQxZAA==", + "path": "system.identitymodel.tokens.jwt/8.12.1", + "hashPath": "system.identitymodel.tokens.jwt.8.12.1.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.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.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.Text.Json/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-u/lN2FEEXs3ghj2ta8tWA4r2MS9Yni07K7jDmnz8h1UPDf0lIIIEMkWx383Zz4fJjJio7gDl+00RYuQ/7R8ZQw==", + "path": "system.text.json/9.0.7", + "hashPath": "system.text.json.9.0.7.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" + }, + "Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Generic/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net9.0/API.dll b/Auth.API/bin/Debug/net9.0/API.dll new file mode 100644 index 0000000..dbd848a Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/API.dll differ diff --git a/Auth.API/bin/Debug/net9.0/API.pdb b/Auth.API/bin/Debug/net9.0/API.pdb new file mode 100644 index 0000000..26d20d8 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/API.pdb differ diff --git a/Auth.API/bin/Debug/net9.0/API.runtimeconfig.json b/Auth.API/bin/Debug/net9.0/API.runtimeconfig.json new file mode 100644 index 0000000..1f6a32f --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/API.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net9.0/API.staticwebassets.endpoints.json b/Auth.API/bin/Debug/net9.0/API.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/API.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net9.0/API.staticwebassets.runtime.json b/Auth.API/bin/Debug/net9.0/API.staticwebassets.runtime.json new file mode 100644 index 0000000..2d44a69 --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/API.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/wwwroot/"],"Root":{"Children":null,"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net9.0/Auth b/Auth.API/bin/Debug/net9.0/Auth new file mode 100755 index 0000000..22b7df0 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Auth differ diff --git a/Auth.API/bin/Debug/net9.0/Auth.API b/Auth.API/bin/Debug/net9.0/Auth.API new file mode 100755 index 0000000..63b5bd0 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Auth.API differ diff --git a/Auth.API/bin/Debug/net9.0/Auth.API.deps.json b/Auth.API/bin/Debug/net9.0/Auth.API.deps.json new file mode 100644 index 0000000..5159a19 --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/Auth.API.deps.json @@ -0,0 +1,5373 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": { + "defines": [ + "TRACE", + "DEBUG", + "NET", + "NET9_0", + "NETCOREAPP", + "NET5_0_OR_GREATER", + "NET6_0_OR_GREATER", + "NET7_0_OR_GREATER", + "NET8_0_OR_GREATER", + "NET9_0_OR_GREATER", + "NETCOREAPP1_0_OR_GREATER", + "NETCOREAPP1_1_OR_GREATER", + "NETCOREAPP2_0_OR_GREATER", + "NETCOREAPP2_1_OR_GREATER", + "NETCOREAPP2_2_OR_GREATER", + "NETCOREAPP3_0_OR_GREATER", + "NETCOREAPP3_1_OR_GREATER" + ], + "languageVersion": "13.0", + "platform": "", + "allowUnsafe": false, + "warningsAsErrors": false, + "optimize": false, + "keyFile": "", + "emitEntryPoint": true, + "xmlDoc": false, + "debugType": "portable" + }, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Auth.API/1.0.0": { + "dependencies": { + "Auth.Contracts": "1.0.0", + "Auth.Core": "1.0.0", + "Auth.Domain": "1.0.0", + "FluentEmail.Core": "3.0.2", + "FluentEmail.Razor": "3.0.2", + "FluentEmail.Smtp": "3.0.2", + "Microsoft.AspNetCore.Authentication.JwtBearer": "9.0.7", + "Microsoft.AspNetCore.OpenApi": "9.0.7", + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.EntityFrameworkCore.Design": "9.0.7", + "Microsoft.EntityFrameworkCore.Proxies": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4", + "Swashbuckle.AspNetCore": "9.0.3", + "System.IdentityModel.Tokens.Jwt": "8.12.1", + "Microsoft.AspNetCore.Antiforgery": "9.0.0.0", + "Microsoft.AspNetCore.Authentication.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.Authentication.BearerToken": "9.0.0.0", + "Microsoft.AspNetCore.Authentication.Cookies": "9.0.0.0", + "Microsoft.AspNetCore.Authentication.Core": "9.0.0.0", + "Microsoft.AspNetCore.Authentication": "9.0.0.0", + "Microsoft.AspNetCore.Authentication.OAuth": "9.0.0.0", + "Microsoft.AspNetCore.Authorization": "9.0.0.0", + "Microsoft.AspNetCore.Authorization.Policy": "9.0.0.0", + "Microsoft.AspNetCore.Components.Authorization": "9.0.0.0", + "Microsoft.AspNetCore.Components": "9.0.0.0", + "Microsoft.AspNetCore.Components.Endpoints": "9.0.0.0", + "Microsoft.AspNetCore.Components.Forms": "9.0.0.0", + "Microsoft.AspNetCore.Components.Server": "9.0.0.0", + "Microsoft.AspNetCore.Components.Web": "9.0.0.0", + "Microsoft.AspNetCore.Connections.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.CookiePolicy": "9.0.0.0", + "Microsoft.AspNetCore.Cors": "9.0.0.0", + "Microsoft.AspNetCore.Cryptography.Internal.Reference": "9.0.0.0", + "Microsoft.AspNetCore.Cryptography.KeyDerivation.Reference": "9.0.0.0", + "Microsoft.AspNetCore.DataProtection.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.DataProtection": "9.0.0.0", + "Microsoft.AspNetCore.DataProtection.Extensions": "9.0.0.0", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.Diagnostics": "9.0.0.0", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "9.0.0.0", + "Microsoft.AspNetCore": "9.0.0.0", + "Microsoft.AspNetCore.HostFiltering": "9.0.0.0", + "Microsoft.AspNetCore.Hosting.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.Hosting": "9.0.0.0", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.Html.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.Http.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.Http.Connections.Common": "9.0.0.0", + "Microsoft.AspNetCore.Http.Connections": "9.0.0.0", + "Microsoft.AspNetCore.Http": "9.0.0.0", + "Microsoft.AspNetCore.Http.Extensions": "9.0.0.0", + "Microsoft.AspNetCore.Http.Features": "9.0.0.0", + "Microsoft.AspNetCore.Http.Results": "9.0.0.0", + "Microsoft.AspNetCore.HttpLogging": "9.0.0.0", + "Microsoft.AspNetCore.HttpOverrides": "9.0.0.0", + "Microsoft.AspNetCore.HttpsPolicy": "9.0.0.0", + "Microsoft.AspNetCore.Identity": "9.0.0.0", + "Microsoft.AspNetCore.Localization": "9.0.0.0", + "Microsoft.AspNetCore.Localization.Routing": "9.0.0.0", + "Microsoft.AspNetCore.Metadata": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.Core": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.Cors": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "9.0.0.0", + "Microsoft.AspNetCore.Mvc": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.Localization": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.Razor": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.RazorPages": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.TagHelpers": "9.0.0.0", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "9.0.0.0", + "Microsoft.AspNetCore.OutputCaching": "9.0.0.0", + "Microsoft.AspNetCore.RateLimiting": "9.0.0.0", + "Microsoft.AspNetCore.Razor": "9.0.0.0", + "Microsoft.AspNetCore.Razor.Runtime": "9.0.0.0", + "Microsoft.AspNetCore.RequestDecompression": "9.0.0.0", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.ResponseCaching": "9.0.0.0", + "Microsoft.AspNetCore.ResponseCompression": "9.0.0.0", + "Microsoft.AspNetCore.Rewrite": "9.0.0.0", + "Microsoft.AspNetCore.Routing.Abstractions": "9.0.0.0", + "Microsoft.AspNetCore.Routing": "9.0.0.0", + "Microsoft.AspNetCore.Server.HttpSys": "9.0.0.0", + "Microsoft.AspNetCore.Server.IIS": "9.0.0.0", + "Microsoft.AspNetCore.Server.IISIntegration": "9.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Core": "9.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel": "9.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "9.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "9.0.0.0", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "9.0.0.0", + "Microsoft.AspNetCore.Session": "9.0.0.0", + "Microsoft.AspNetCore.SignalR.Common": "9.0.0.0", + "Microsoft.AspNetCore.SignalR.Core": "9.0.0.0", + "Microsoft.AspNetCore.SignalR": "9.0.0.0", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "9.0.0.0", + "Microsoft.AspNetCore.StaticAssets": "9.0.0.0", + "Microsoft.AspNetCore.StaticFiles": "9.0.0.0", + "Microsoft.AspNetCore.WebSockets": "9.0.0.0", + "Microsoft.AspNetCore.WebUtilities": "9.0.0.0", + "Microsoft.CSharp": "9.0.0.0", + "Microsoft.Extensions.Caching.Abstractions.Reference": "9.0.0.0", + "Microsoft.Extensions.Caching.Memory.Reference": "9.0.0.0", + "Microsoft.Extensions.Configuration.Abstractions.Reference": "9.0.0.0", + "Microsoft.Extensions.Configuration.Binder": "9.0.0.0", + "Microsoft.Extensions.Configuration.CommandLine": "9.0.0.0", + "Microsoft.Extensions.Configuration": "9.0.0.0", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "9.0.0.0", + "Microsoft.Extensions.Configuration.FileExtensions": "9.0.0.0", + "Microsoft.Extensions.Configuration.Ini": "9.0.0.0", + "Microsoft.Extensions.Configuration.Json": "9.0.0.0", + "Microsoft.Extensions.Configuration.KeyPerFile": "9.0.0.0", + "Microsoft.Extensions.Configuration.UserSecrets": "9.0.0.0", + "Microsoft.Extensions.Configuration.Xml": "9.0.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference": "9.0.0.0", + "Microsoft.Extensions.DependencyInjection.Reference": "9.0.0.0", + "Microsoft.Extensions.Diagnostics.Abstractions": "9.0.0.0", + "Microsoft.Extensions.Diagnostics": "9.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "9.0.0.0", + "Microsoft.Extensions.Diagnostics.HealthChecks": "9.0.0.0", + "Microsoft.Extensions.Features": "9.0.0.0", + "Microsoft.Extensions.FileProviders.Abstractions.Reference": "9.0.0.0", + "Microsoft.Extensions.FileProviders.Composite": "9.0.0.0", + "Microsoft.Extensions.FileProviders.Embedded": "9.0.0.0", + "Microsoft.Extensions.FileProviders.Physical.Reference": "9.0.0.0", + "Microsoft.Extensions.FileSystemGlobbing.Reference": "9.0.0.0", + "Microsoft.Extensions.Hosting.Abstractions": "9.0.0.0", + "Microsoft.Extensions.Hosting": "9.0.0.0", + "Microsoft.Extensions.Http": "9.0.0.0", + "Microsoft.Extensions.Identity.Core.Reference": "9.0.0.0", + "Microsoft.Extensions.Identity.Stores.Reference": "9.0.0.0", + "Microsoft.Extensions.Localization.Abstractions": "9.0.0.0", + "Microsoft.Extensions.Localization": "9.0.0.0", + "Microsoft.Extensions.Logging.Abstractions.Reference": "9.0.0.0", + "Microsoft.Extensions.Logging.Configuration": "9.0.0.0", + "Microsoft.Extensions.Logging.Console": "9.0.0.0", + "Microsoft.Extensions.Logging.Debug": "9.0.0.0", + "Microsoft.Extensions.Logging.Reference": "9.0.0.0", + "Microsoft.Extensions.Logging.EventLog": "9.0.0.0", + "Microsoft.Extensions.Logging.EventSource": "9.0.0.0", + "Microsoft.Extensions.Logging.TraceSource": "9.0.0.0", + "Microsoft.Extensions.ObjectPool": "9.0.0.0", + "Microsoft.Extensions.Options.ConfigurationExtensions": "9.0.0.0", + "Microsoft.Extensions.Options.DataAnnotations": "9.0.0.0", + "Microsoft.Extensions.Options.Reference": "9.0.0.0", + "Microsoft.Extensions.Primitives.Reference": "9.0.0.0", + "Microsoft.Extensions.WebEncoders": "9.0.0.0", + "Microsoft.JSInterop": "9.0.0.0", + "Microsoft.Net.Http.Headers": "9.0.0.0", + "Microsoft.VisualBasic.Core": "14.0.0.0", + "Microsoft.VisualBasic": "10.0.0.0", + "Microsoft.Win32.Primitives": "9.0.0.0", + "Microsoft.Win32.Registry": "9.0.0.0", + "mscorlib": "4.0.0.0", + "netstandard": "2.1.0.0", + "System.AppContext": "9.0.0.0", + "System.Buffers.Reference": "9.0.0.0", + "System.Collections.Concurrent": "9.0.0.0", + "System.Collections": "9.0.0.0", + "System.Collections.Immutable.Reference": "9.0.0.0", + "System.Collections.NonGeneric": "9.0.0.0", + "System.Collections.Specialized": "9.0.0.0", + "System.ComponentModel.Annotations": "9.0.0.0", + "System.ComponentModel.DataAnnotations": "4.0.0.0", + "System.ComponentModel": "9.0.0.0", + "System.ComponentModel.EventBasedAsync": "9.0.0.0", + "System.ComponentModel.Primitives": "9.0.0.0", + "System.ComponentModel.TypeConverter": "9.0.0.0", + "System.Configuration": "4.0.0.0", + "System.Console": "9.0.0.0", + "System.Core": "4.0.0.0", + "System.Data.Common": "9.0.0.0", + "System.Data.DataSetExtensions": "9.0.0.0", + "System.Data": "4.0.0.0", + "System.Diagnostics.Contracts": "9.0.0.0", + "System.Diagnostics.Debug": "9.0.0.0", + "System.Diagnostics.DiagnosticSource": "9.0.0.0", + "System.Diagnostics.EventLog.Reference": "9.0.0.0", + "System.Diagnostics.FileVersionInfo": "9.0.0.0", + "System.Diagnostics.Process": "9.0.0.0", + "System.Diagnostics.StackTrace": "9.0.0.0", + "System.Diagnostics.TextWriterTraceListener": "9.0.0.0", + "System.Diagnostics.Tools": "9.0.0.0", + "System.Diagnostics.TraceSource": "9.0.0.0", + "System.Diagnostics.Tracing": "9.0.0.0", + "System": "4.0.0.0", + "System.Drawing": "4.0.0.0", + "System.Drawing.Primitives": "9.0.0.0", + "System.Dynamic.Runtime": "9.0.0.0", + "System.Formats.Asn1": "9.0.0.0", + "System.Formats.Tar": "9.0.0.0", + "System.Globalization.Calendars": "9.0.0.0", + "System.Globalization": "9.0.0.0", + "System.Globalization.Extensions": "9.0.0.0", + "System.IO.Compression.Brotli": "9.0.0.0", + "System.IO.Compression": "9.0.0.0", + "System.IO.Compression.FileSystem": "4.0.0.0", + "System.IO.Compression.ZipFile": "9.0.0.0", + "System.IO": "9.0.0.0", + "System.IO.FileSystem.AccessControl": "9.0.0.0", + "System.IO.FileSystem": "9.0.0.0", + "System.IO.FileSystem.DriveInfo": "9.0.0.0", + "System.IO.FileSystem.Primitives": "9.0.0.0", + "System.IO.FileSystem.Watcher": "9.0.0.0", + "System.IO.IsolatedStorage": "9.0.0.0", + "System.IO.MemoryMappedFiles": "9.0.0.0", + "System.IO.Pipelines.Reference": "9.0.0.0", + "System.IO.Pipes.AccessControl": "9.0.0.0", + "System.IO.Pipes": "9.0.0.0", + "System.IO.UnmanagedMemoryStream": "9.0.0.0", + "System.Linq": "9.0.0.0", + "System.Linq.Expressions": "9.0.0.0", + "System.Linq.Parallel": "9.0.0.0", + "System.Linq.Queryable": "9.0.0.0", + "System.Memory": "9.0.0.0", + "System.Net": "4.0.0.0", + "System.Net.Http": "9.0.0.0", + "System.Net.Http.Json": "9.0.0.0", + "System.Net.HttpListener": "9.0.0.0", + "System.Net.Mail": "9.0.0.0", + "System.Net.NameResolution": "9.0.0.0", + "System.Net.NetworkInformation": "9.0.0.0", + "System.Net.Ping": "9.0.0.0", + "System.Net.Primitives": "9.0.0.0", + "System.Net.Quic": "9.0.0.0", + "System.Net.Requests": "9.0.0.0", + "System.Net.Security": "9.0.0.0", + "System.Net.ServicePoint": "9.0.0.0", + "System.Net.Sockets": "9.0.0.0", + "System.Net.WebClient": "9.0.0.0", + "System.Net.WebHeaderCollection": "9.0.0.0", + "System.Net.WebProxy": "9.0.0.0", + "System.Net.WebSockets.Client": "9.0.0.0", + "System.Net.WebSockets": "9.0.0.0", + "System.Numerics": "4.0.0.0", + "System.Numerics.Vectors": "9.0.0.0", + "System.ObjectModel": "9.0.0.0", + "System.Reflection.DispatchProxy": "9.0.0.0", + "System.Reflection": "9.0.0.0", + "System.Reflection.Emit": "9.0.0.0", + "System.Reflection.Emit.ILGeneration": "9.0.0.0", + "System.Reflection.Emit.Lightweight": "9.0.0.0", + "System.Reflection.Extensions": "9.0.0.0", + "System.Reflection.Metadata.Reference": "9.0.0.0", + "System.Reflection.Primitives": "9.0.0.0", + "System.Reflection.TypeExtensions": "9.0.0.0", + "System.Resources.Reader": "9.0.0.0", + "System.Resources.ResourceManager": "9.0.0.0", + "System.Resources.Writer": "9.0.0.0", + "System.Runtime.CompilerServices.Unsafe.Reference": "9.0.0.0", + "System.Runtime.CompilerServices.VisualC": "9.0.0.0", + "System.Runtime": "9.0.0.0", + "System.Runtime.Extensions": "9.0.0.0", + "System.Runtime.Handles": "9.0.0.0", + "System.Runtime.InteropServices": "9.0.0.0", + "System.Runtime.InteropServices.JavaScript": "9.0.0.0", + "System.Runtime.InteropServices.RuntimeInformation": "9.0.0.0", + "System.Runtime.Intrinsics": "9.0.0.0", + "System.Runtime.Loader": "9.0.0.0", + "System.Runtime.Numerics": "9.0.0.0", + "System.Runtime.Serialization": "4.0.0.0", + "System.Runtime.Serialization.Formatters": "8.1.0.0", + "System.Runtime.Serialization.Json": "9.0.0.0", + "System.Runtime.Serialization.Primitives": "9.0.0.0", + "System.Runtime.Serialization.Xml": "9.0.0.0", + "System.Security.AccessControl": "9.0.0.0", + "System.Security.Claims": "9.0.0.0", + "System.Security.Cryptography.Algorithms": "9.0.0.0", + "System.Security.Cryptography.Cng": "9.0.0.0", + "System.Security.Cryptography.Csp": "9.0.0.0", + "System.Security.Cryptography": "9.0.0.0", + "System.Security.Cryptography.Encoding": "9.0.0.0", + "System.Security.Cryptography.OpenSsl": "9.0.0.0", + "System.Security.Cryptography.Primitives": "9.0.0.0", + "System.Security.Cryptography.X509Certificates": "9.0.0.0", + "System.Security.Cryptography.Xml": "9.0.0.0", + "System.Security": "4.0.0.0", + "System.Security.Principal": "9.0.0.0", + "System.Security.Principal.Windows": "9.0.0.0", + "System.Security.SecureString": "9.0.0.0", + "System.ServiceModel.Web": "4.0.0.0", + "System.ServiceProcess": "4.0.0.0", + "System.Text.Encoding.CodePages": "9.0.0.0", + "System.Text.Encoding": "9.0.0.0", + "System.Text.Encoding.Extensions": "9.0.0.0", + "System.Text.Encodings.Web": "9.0.0.0", + "System.Text.Json.Reference": "9.0.0.0", + "System.Text.RegularExpressions": "9.0.0.0", + "System.Threading.Channels.Reference": "9.0.0.0", + "System.Threading": "9.0.0.0", + "System.Threading.Overlapped": "9.0.0.0", + "System.Threading.RateLimiting": "9.0.0.0", + "System.Threading.Tasks.Dataflow": "9.0.0.0", + "System.Threading.Tasks": "9.0.0.0", + "System.Threading.Tasks.Extensions": "9.0.0.0", + "System.Threading.Tasks.Parallel": "9.0.0.0", + "System.Threading.Thread": "9.0.0.0", + "System.Threading.ThreadPool": "9.0.0.0", + "System.Threading.Timer": "9.0.0.0", + "System.Transactions": "4.0.0.0", + "System.Transactions.Local": "9.0.0.0", + "System.ValueTuple": "9.0.0.0", + "System.Web": "4.0.0.0", + "System.Web.HttpUtility": "9.0.0.0", + "System.Windows": "4.0.0.0", + "System.Xml": "4.0.0.0", + "System.Xml.Linq": "4.0.0.0", + "System.Xml.ReaderWriter": "9.0.0.0", + "System.Xml.Serialization": "4.0.0.0", + "System.Xml.XDocument": "9.0.0.0", + "System.Xml.XmlDocument": "9.0.0.0", + "System.Xml.XmlSerializer": "9.0.0.0", + "System.Xml.XPath": "9.0.0.0", + "System.Xml.XPath.XDocument": "9.0.0.0", + "WindowsBase": "4.0.0.0" + }, + "runtime": { + "Auth.API.dll": {} + }, + "compile": { + "Auth.API.dll": {} + } + }, + "Bogus/35.6.3": { + "runtime": { + "lib/net6.0/Bogus.dll": { + "assemblyVersion": "35.6.3.0", + "fileVersion": "35.6.3.0" + } + }, + "compile": { + "lib/net6.0/Bogus.dll": {} + } + }, + "Castle.Core/5.1.1": { + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "runtime": { + "lib/net6.0/Castle.Core.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.1.1.0" + } + }, + "compile": { + "lib/net6.0/Castle.Core.dll": {} + } + }, + "FluentEmail.Core/3.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Core.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentEmail.Core.dll": {} + } + }, + "FluentEmail.Razor/3.0.2": { + "dependencies": { + "FluentEmail.Core": "3.0.2", + "RazorLight": "2.0.0-rc.3" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Razor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentEmail.Razor.dll": {} + } + }, + "FluentEmail.Smtp/3.0.2": { + "dependencies": { + "FluentEmail.Core": "3.0.2" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Smtp.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + }, + "compile": { + "lib/netstandard2.0/FluentEmail.Smtp.dll": {} + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + }, + "compile": { + "lib/net6.0/Humanizer.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.7": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": {} + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Microsoft.Extensions.Identity.Stores": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/5.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "5.0.0", + "Microsoft.CodeAnalysis.Razor": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.52605" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.OpenApi/9.0.7": { + "dependencies": { + "Microsoft.OpenApi": "1.6.23" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + }, + "compile": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": {} + } + }, + "Microsoft.AspNetCore.Razor.Language/5.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.52605" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.Bcl.AsyncInterfaces/7.0.0": { + "runtime": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "compile": { + "lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.dll": {} + } + }, + "Microsoft.Build.Framework/17.8.3": { + "compile": { + "ref/net8.0/Microsoft.Build.Framework.dll": {} + } + }, + "Microsoft.Build.Locator/1.7.8": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.7.8.28074" + } + }, + "compile": { + "lib/net6.0/Microsoft.Build.Locator.dll": {} + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "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" + } + }, + "compile": { + "lib/net7.0/Microsoft.CodeAnalysis.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/net7.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": {} + } + }, + "Microsoft.CodeAnalysis.Razor/5.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "5.0.0", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.52605" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.dll": {} + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "dependencies": { + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0", + "System.Text.Json": "9.0.7" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + }, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + }, + "compile": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": {}, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": {} + } + }, + "Microsoft.EntityFrameworkCore/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.7", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.7": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.7": {}, + "Microsoft.EntityFrameworkCore.Design/9.0.7": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.7", + "Microsoft.Extensions.DependencyModel": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7", + "Mono.TextTemplating": "3.0.0", + "System.Text.Json": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Proxies/9.0.7": { + "dependencies": { + "Castle.Core": "5.1.1", + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Proxies.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Proxies.dll": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + }, + "compile": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/9.0.0": {}, + "Microsoft.Extensions.Caching.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyModel/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "9.0.0.7", + "fileVersion": "9.0.725.31616" + } + }, + "compile": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": {} + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + } + }, + "Microsoft.Extensions.FileProviders.Physical/5.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "5.0.0", + "Microsoft.Extensions.Primitives": "9.0.7" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {}, + "Microsoft.Extensions.Identity.Core/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.Identity.Core": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.Extensions.Logging/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Options/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": {} + } + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": {} + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {} + } + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.IdentityModel.Logging": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": {} + } + }, + "Microsoft.OpenApi/1.6.23": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.6.23.0", + "fileVersion": "1.6.23.0" + } + }, + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": {} + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + }, + "compile": { + "lib/net6.0/Mono.TextTemplating.dll": {} + } + }, + "Npgsql/9.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + }, + "compile": { + "lib/net8.0/Npgsql.dll": {} + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Npgsql": "9.0.3" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + }, + "compile": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": {} + } + }, + "RazorLight/2.0.0-rc.3": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "5.0.0", + "Microsoft.CodeAnalysis.Razor": "5.0.0", + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.DependencyInjection": "9.0.7", + "Microsoft.Extensions.DependencyModel": "9.0.7", + "Microsoft.Extensions.FileProviders.Physical": "5.0.0", + "Microsoft.Extensions.Primitives": "9.0.7", + "System.Buffers": "4.5.1" + }, + "runtime": { + "lib/net5.0/RazorLight.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + }, + "compile": { + "lib/net5.0/RazorLight.dll": {} + } + }, + "Swashbuckle.AspNetCore/9.0.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "9.0.0", + "Swashbuckle.AspNetCore.Swagger": "9.0.3", + "Swashbuckle.AspNetCore.SwaggerGen": "9.0.3", + "Swashbuckle.AspNetCore.SwaggerUI": "9.0.3" + } + }, + "Swashbuckle.AspNetCore.Swagger/9.0.3": { + "dependencies": { + "Microsoft.OpenApi": "1.6.23" + }, + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.1613" + } + }, + "compile": { + "lib/net9.0/Swashbuckle.AspNetCore.Swagger.dll": {} + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/9.0.3": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "9.0.3" + }, + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.1613" + } + }, + "compile": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll": {} + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/9.0.3": { + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.1613" + } + }, + "compile": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll": {} + } + }, + "System.Buffers/4.5.1": {}, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + }, + "compile": { + "lib/net6.0/System.CodeDom.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/net7.0/System.Composition.AttributedModel.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/net7.0/System.Composition.Convention.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/net7.0/System.Composition.Hosting.dll": {} + } + }, + "System.Composition.Runtime/7.0.0": { + "runtime": { + "lib/net7.0/System.Composition.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + }, + "compile": { + "lib/net7.0/System.Composition.Runtime.dll": {} + } + }, + "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" + } + }, + "compile": { + "lib/net7.0/System.Composition.TypedParts.dll": {} + } + }, + "System.Diagnostics.EventLog/6.0.0": {}, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.12.1", + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + }, + "compile": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": {} + } + }, + "System.IO.Pipelines/7.0.0": {}, + "System.Reflection.Metadata/7.0.0": { + "dependencies": { + "System.Collections.Immutable": "7.0.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Text.Json/9.0.7": {}, + "System.Threading.Channels/7.0.0": {}, + "Auth.Contracts/1.0.0": { + "runtime": { + "Auth.Contracts.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + }, + "compile": { + "Auth.Contracts.dll": {} + } + }, + "Auth.Core/1.0.0": { + "dependencies": { + "Auth.Contracts": "1.0.0", + "Auth.Domain": "1.0.0", + "FluentEmail.Core": "3.0.2", + "FluentEmail.Smtp": "3.0.2", + "Generic": "1.0.0", + "Microsoft.AspNetCore.Authentication.JwtBearer": "9.0.7", + "Microsoft.EntityFrameworkCore": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "Auth.Core.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + }, + "compile": { + "Auth.Core.dll": {} + } + }, + "Auth.Domain/1.0.0": { + "dependencies": { + "Auth.Contracts": "1.0.0", + "Bogus": "35.6.3", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "runtime": { + "Auth.Domain.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + }, + "compile": { + "Auth.Domain.dll": {} + } + }, + "Generic/1.0.0": { + "runtime": { + "Generic.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + }, + "compile": { + "Generic.dll": {} + } + }, + "Microsoft.AspNetCore.Antiforgery/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Antiforgery.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.BearerToken/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.BearerToken.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Cookies/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Cookies.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.Core/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authentication.OAuth/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authentication.OAuth.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Authorization.Policy/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Authorization.Policy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Authorization/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Authorization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Endpoints/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Endpoints.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Forms/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Forms.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Server/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Server.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Components.Web/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Components.Web.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Connections.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Connections.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.CookiePolicy/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.CookiePolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cors/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.Internal.Reference/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.Internal.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation.Reference/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.DataProtection.Extensions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.DataProtection.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HostFiltering/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HostFiltering.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Html.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Html.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections.Common/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Connections/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Connections.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Extensions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Extensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Features/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Http.Results/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Http.Results.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpLogging/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpLogging.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpOverrides/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpOverrides.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.HttpsPolicy/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.HttpsPolicy.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Identity/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Identity.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Localization.Routing/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Localization.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Metadata/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Metadata.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Core/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Cors/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Cors.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Localization/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.Razor/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.RazorPages/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.RazorPages.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.TagHelpers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.OutputCaching/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.OutputCaching.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.RateLimiting/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.RateLimiting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Razor.Runtime/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Razor.Runtime.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.RequestDecompression/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.RequestDecompression.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCaching/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCaching.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.ResponseCompression/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.ResponseCompression.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Rewrite/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Rewrite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Routing/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Routing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.HttpSys/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.HttpSys.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IIS/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IIS.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.IISIntegration/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.IISIntegration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.Session/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.Session.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Common/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Common.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Core/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.StaticAssets/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.StaticAssets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.StaticFiles/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.StaticFiles.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebSockets/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.WebSockets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.AspNetCore.WebUtilities/9.0.0.0": { + "compile": { + "Microsoft.AspNetCore.WebUtilities.dll": {} + }, + "compileOnly": true + }, + "Microsoft.CSharp/9.0.0.0": { + "compile": { + "Microsoft.CSharp.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Abstractions.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Caching.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Caching.Memory.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Caching.Memory.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Abstractions.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Binder.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.CommandLine.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.FileExtensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Ini/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Ini.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Json/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Json.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.KeyPerFile/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.KeyPerFile.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.UserSecrets.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Configuration.Xml/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Configuration.Xml.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.DependencyInjection.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.DependencyInjection.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.DependencyInjection.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Diagnostics.HealthChecks.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Features/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Features.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Abstractions.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Composite/9.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Composite.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Embedded/9.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Embedded.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileProviders.Physical.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.FileProviders.Physical.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.FileSystemGlobbing.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.FileSystemGlobbing.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Hosting.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Hosting/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Hosting.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Http/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Http.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Core.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Identity.Stores.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Identity.Stores.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Localization.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Localization/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Localization.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Abstractions.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Abstractions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Configuration.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Console/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Console.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Debug/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.Debug.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventLog.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.EventSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Logging.TraceSource/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Logging.TraceSource.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.ObjectPool/9.0.0.0": { + "compile": { + "Microsoft.Extensions.ObjectPool.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.ConfigurationExtensions.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.DataAnnotations/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Options.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Options.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.Primitives.Reference/9.0.0.0": { + "compile": { + "Microsoft.Extensions.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Extensions.WebEncoders/9.0.0.0": { + "compile": { + "Microsoft.Extensions.WebEncoders.dll": {} + }, + "compileOnly": true + }, + "Microsoft.JSInterop/9.0.0.0": { + "compile": { + "Microsoft.JSInterop.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Net.Http.Headers/9.0.0.0": { + "compile": { + "Microsoft.Net.Http.Headers.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic.Core/14.0.0.0": { + "compile": { + "Microsoft.VisualBasic.Core.dll": {} + }, + "compileOnly": true + }, + "Microsoft.VisualBasic/10.0.0.0": { + "compile": { + "Microsoft.VisualBasic.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Primitives/9.0.0.0": { + "compile": { + "Microsoft.Win32.Primitives.dll": {} + }, + "compileOnly": true + }, + "Microsoft.Win32.Registry/9.0.0.0": { + "compile": { + "Microsoft.Win32.Registry.dll": {} + }, + "compileOnly": true + }, + "mscorlib/4.0.0.0": { + "compile": { + "mscorlib.dll": {} + }, + "compileOnly": true + }, + "netstandard/2.1.0.0": { + "compile": { + "netstandard.dll": {} + }, + "compileOnly": true + }, + "System.AppContext/9.0.0.0": { + "compile": { + "System.AppContext.dll": {} + }, + "compileOnly": true + }, + "System.Buffers.Reference/9.0.0.0": { + "compile": { + "System.Buffers.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Concurrent/9.0.0.0": { + "compile": { + "System.Collections.Concurrent.dll": {} + }, + "compileOnly": true + }, + "System.Collections/9.0.0.0": { + "compile": { + "System.Collections.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Immutable.Reference/9.0.0.0": { + "compile": { + "System.Collections.Immutable.dll": {} + }, + "compileOnly": true + }, + "System.Collections.NonGeneric/9.0.0.0": { + "compile": { + "System.Collections.NonGeneric.dll": {} + }, + "compileOnly": true + }, + "System.Collections.Specialized/9.0.0.0": { + "compile": { + "System.Collections.Specialized.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Annotations/9.0.0.0": { + "compile": { + "System.ComponentModel.Annotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "compile": { + "System.ComponentModel.DataAnnotations.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel/9.0.0.0": { + "compile": { + "System.ComponentModel.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.EventBasedAsync/9.0.0.0": { + "compile": { + "System.ComponentModel.EventBasedAsync.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.Primitives/9.0.0.0": { + "compile": { + "System.ComponentModel.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.ComponentModel.TypeConverter/9.0.0.0": { + "compile": { + "System.ComponentModel.TypeConverter.dll": {} + }, + "compileOnly": true + }, + "System.Configuration/4.0.0.0": { + "compile": { + "System.Configuration.dll": {} + }, + "compileOnly": true + }, + "System.Console/9.0.0.0": { + "compile": { + "System.Console.dll": {} + }, + "compileOnly": true + }, + "System.Core/4.0.0.0": { + "compile": { + "System.Core.dll": {} + }, + "compileOnly": true + }, + "System.Data.Common/9.0.0.0": { + "compile": { + "System.Data.Common.dll": {} + }, + "compileOnly": true + }, + "System.Data.DataSetExtensions/9.0.0.0": { + "compile": { + "System.Data.DataSetExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Data/4.0.0.0": { + "compile": { + "System.Data.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Contracts/9.0.0.0": { + "compile": { + "System.Diagnostics.Contracts.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Debug/9.0.0.0": { + "compile": { + "System.Diagnostics.Debug.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.DiagnosticSource/9.0.0.0": { + "compile": { + "System.Diagnostics.DiagnosticSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.EventLog.Reference/9.0.0.0": { + "compile": { + "System.Diagnostics.EventLog.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.FileVersionInfo/9.0.0.0": { + "compile": { + "System.Diagnostics.FileVersionInfo.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Process/9.0.0.0": { + "compile": { + "System.Diagnostics.Process.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.StackTrace/9.0.0.0": { + "compile": { + "System.Diagnostics.StackTrace.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TextWriterTraceListener/9.0.0.0": { + "compile": { + "System.Diagnostics.TextWriterTraceListener.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tools/9.0.0.0": { + "compile": { + "System.Diagnostics.Tools.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.TraceSource/9.0.0.0": { + "compile": { + "System.Diagnostics.TraceSource.dll": {} + }, + "compileOnly": true + }, + "System.Diagnostics.Tracing/9.0.0.0": { + "compile": { + "System.Diagnostics.Tracing.dll": {} + }, + "compileOnly": true + }, + "System/4.0.0.0": { + "compile": { + "System.dll": {} + }, + "compileOnly": true + }, + "System.Drawing/4.0.0.0": { + "compile": { + "System.Drawing.dll": {} + }, + "compileOnly": true + }, + "System.Drawing.Primitives/9.0.0.0": { + "compile": { + "System.Drawing.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Dynamic.Runtime/9.0.0.0": { + "compile": { + "System.Dynamic.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Formats.Asn1/9.0.0.0": { + "compile": { + "System.Formats.Asn1.dll": {} + }, + "compileOnly": true + }, + "System.Formats.Tar/9.0.0.0": { + "compile": { + "System.Formats.Tar.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Calendars/9.0.0.0": { + "compile": { + "System.Globalization.Calendars.dll": {} + }, + "compileOnly": true + }, + "System.Globalization/9.0.0.0": { + "compile": { + "System.Globalization.dll": {} + }, + "compileOnly": true + }, + "System.Globalization.Extensions/9.0.0.0": { + "compile": { + "System.Globalization.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.Brotli/9.0.0.0": { + "compile": { + "System.IO.Compression.Brotli.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression/9.0.0.0": { + "compile": { + "System.IO.Compression.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "compile": { + "System.IO.Compression.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.Compression.ZipFile/9.0.0.0": { + "compile": { + "System.IO.Compression.ZipFile.dll": {} + }, + "compileOnly": true + }, + "System.IO/9.0.0.0": { + "compile": { + "System.IO.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.AccessControl/9.0.0.0": { + "compile": { + "System.IO.FileSystem.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem/9.0.0.0": { + "compile": { + "System.IO.FileSystem.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.DriveInfo/9.0.0.0": { + "compile": { + "System.IO.FileSystem.DriveInfo.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Primitives/9.0.0.0": { + "compile": { + "System.IO.FileSystem.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.IO.FileSystem.Watcher/9.0.0.0": { + "compile": { + "System.IO.FileSystem.Watcher.dll": {} + }, + "compileOnly": true + }, + "System.IO.IsolatedStorage/9.0.0.0": { + "compile": { + "System.IO.IsolatedStorage.dll": {} + }, + "compileOnly": true + }, + "System.IO.MemoryMappedFiles/9.0.0.0": { + "compile": { + "System.IO.MemoryMappedFiles.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipelines.Reference/9.0.0.0": { + "compile": { + "System.IO.Pipelines.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipes.AccessControl/9.0.0.0": { + "compile": { + "System.IO.Pipes.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.IO.Pipes/9.0.0.0": { + "compile": { + "System.IO.Pipes.dll": {} + }, + "compileOnly": true + }, + "System.IO.UnmanagedMemoryStream/9.0.0.0": { + "compile": { + "System.IO.UnmanagedMemoryStream.dll": {} + }, + "compileOnly": true + }, + "System.Linq/9.0.0.0": { + "compile": { + "System.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Expressions/9.0.0.0": { + "compile": { + "System.Linq.Expressions.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Parallel/9.0.0.0": { + "compile": { + "System.Linq.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Linq.Queryable/9.0.0.0": { + "compile": { + "System.Linq.Queryable.dll": {} + }, + "compileOnly": true + }, + "System.Memory/9.0.0.0": { + "compile": { + "System.Memory.dll": {} + }, + "compileOnly": true + }, + "System.Net/4.0.0.0": { + "compile": { + "System.Net.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http/9.0.0.0": { + "compile": { + "System.Net.Http.dll": {} + }, + "compileOnly": true + }, + "System.Net.Http.Json/9.0.0.0": { + "compile": { + "System.Net.Http.Json.dll": {} + }, + "compileOnly": true + }, + "System.Net.HttpListener/9.0.0.0": { + "compile": { + "System.Net.HttpListener.dll": {} + }, + "compileOnly": true + }, + "System.Net.Mail/9.0.0.0": { + "compile": { + "System.Net.Mail.dll": {} + }, + "compileOnly": true + }, + "System.Net.NameResolution/9.0.0.0": { + "compile": { + "System.Net.NameResolution.dll": {} + }, + "compileOnly": true + }, + "System.Net.NetworkInformation/9.0.0.0": { + "compile": { + "System.Net.NetworkInformation.dll": {} + }, + "compileOnly": true + }, + "System.Net.Ping/9.0.0.0": { + "compile": { + "System.Net.Ping.dll": {} + }, + "compileOnly": true + }, + "System.Net.Primitives/9.0.0.0": { + "compile": { + "System.Net.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Net.Quic/9.0.0.0": { + "compile": { + "System.Net.Quic.dll": {} + }, + "compileOnly": true + }, + "System.Net.Requests/9.0.0.0": { + "compile": { + "System.Net.Requests.dll": {} + }, + "compileOnly": true + }, + "System.Net.Security/9.0.0.0": { + "compile": { + "System.Net.Security.dll": {} + }, + "compileOnly": true + }, + "System.Net.ServicePoint/9.0.0.0": { + "compile": { + "System.Net.ServicePoint.dll": {} + }, + "compileOnly": true + }, + "System.Net.Sockets/9.0.0.0": { + "compile": { + "System.Net.Sockets.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebClient/9.0.0.0": { + "compile": { + "System.Net.WebClient.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebHeaderCollection/9.0.0.0": { + "compile": { + "System.Net.WebHeaderCollection.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebProxy/9.0.0.0": { + "compile": { + "System.Net.WebProxy.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets.Client/9.0.0.0": { + "compile": { + "System.Net.WebSockets.Client.dll": {} + }, + "compileOnly": true + }, + "System.Net.WebSockets/9.0.0.0": { + "compile": { + "System.Net.WebSockets.dll": {} + }, + "compileOnly": true + }, + "System.Numerics/4.0.0.0": { + "compile": { + "System.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Numerics.Vectors/9.0.0.0": { + "compile": { + "System.Numerics.Vectors.dll": {} + }, + "compileOnly": true + }, + "System.ObjectModel/9.0.0.0": { + "compile": { + "System.ObjectModel.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.DispatchProxy/9.0.0.0": { + "compile": { + "System.Reflection.DispatchProxy.dll": {} + }, + "compileOnly": true + }, + "System.Reflection/9.0.0.0": { + "compile": { + "System.Reflection.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit/9.0.0.0": { + "compile": { + "System.Reflection.Emit.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.ILGeneration/9.0.0.0": { + "compile": { + "System.Reflection.Emit.ILGeneration.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Emit.Lightweight/9.0.0.0": { + "compile": { + "System.Reflection.Emit.Lightweight.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Extensions/9.0.0.0": { + "compile": { + "System.Reflection.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Metadata.Reference/9.0.0.0": { + "compile": { + "System.Reflection.Metadata.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.Primitives/9.0.0.0": { + "compile": { + "System.Reflection.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Reflection.TypeExtensions/9.0.0.0": { + "compile": { + "System.Reflection.TypeExtensions.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Reader/9.0.0.0": { + "compile": { + "System.Resources.Reader.dll": {} + }, + "compileOnly": true + }, + "System.Resources.ResourceManager/9.0.0.0": { + "compile": { + "System.Resources.ResourceManager.dll": {} + }, + "compileOnly": true + }, + "System.Resources.Writer/9.0.0.0": { + "compile": { + "System.Resources.Writer.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.Unsafe.Reference/9.0.0.0": { + "compile": { + "System.Runtime.CompilerServices.Unsafe.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.CompilerServices.VisualC/9.0.0.0": { + "compile": { + "System.Runtime.CompilerServices.VisualC.dll": {} + }, + "compileOnly": true + }, + "System.Runtime/9.0.0.0": { + "compile": { + "System.Runtime.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Extensions/9.0.0.0": { + "compile": { + "System.Runtime.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Handles/9.0.0.0": { + "compile": { + "System.Runtime.Handles.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices/9.0.0.0": { + "compile": { + "System.Runtime.InteropServices.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.JavaScript/9.0.0.0": { + "compile": { + "System.Runtime.InteropServices.JavaScript.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.InteropServices.RuntimeInformation/9.0.0.0": { + "compile": { + "System.Runtime.InteropServices.RuntimeInformation.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Intrinsics/9.0.0.0": { + "compile": { + "System.Runtime.Intrinsics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Loader/9.0.0.0": { + "compile": { + "System.Runtime.Loader.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Numerics/9.0.0.0": { + "compile": { + "System.Runtime.Numerics.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization/4.0.0.0": { + "compile": { + "System.Runtime.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Formatters/8.1.0.0": { + "compile": { + "System.Runtime.Serialization.Formatters.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Json/9.0.0.0": { + "compile": { + "System.Runtime.Serialization.Json.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Primitives/9.0.0.0": { + "compile": { + "System.Runtime.Serialization.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Runtime.Serialization.Xml/9.0.0.0": { + "compile": { + "System.Runtime.Serialization.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security.AccessControl/9.0.0.0": { + "compile": { + "System.Security.AccessControl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Claims/9.0.0.0": { + "compile": { + "System.Security.Claims.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Algorithms/9.0.0.0": { + "compile": { + "System.Security.Cryptography.Algorithms.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Cng/9.0.0.0": { + "compile": { + "System.Security.Cryptography.Cng.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Csp/9.0.0.0": { + "compile": { + "System.Security.Cryptography.Csp.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography/9.0.0.0": { + "compile": { + "System.Security.Cryptography.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Encoding/9.0.0.0": { + "compile": { + "System.Security.Cryptography.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.OpenSsl/9.0.0.0": { + "compile": { + "System.Security.Cryptography.OpenSsl.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Primitives/9.0.0.0": { + "compile": { + "System.Security.Cryptography.Primitives.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.X509Certificates/9.0.0.0": { + "compile": { + "System.Security.Cryptography.X509Certificates.dll": {} + }, + "compileOnly": true + }, + "System.Security.Cryptography.Xml/9.0.0.0": { + "compile": { + "System.Security.Cryptography.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Security/4.0.0.0": { + "compile": { + "System.Security.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal/9.0.0.0": { + "compile": { + "System.Security.Principal.dll": {} + }, + "compileOnly": true + }, + "System.Security.Principal.Windows/9.0.0.0": { + "compile": { + "System.Security.Principal.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Security.SecureString/9.0.0.0": { + "compile": { + "System.Security.SecureString.dll": {} + }, + "compileOnly": true + }, + "System.ServiceModel.Web/4.0.0.0": { + "compile": { + "System.ServiceModel.Web.dll": {} + }, + "compileOnly": true + }, + "System.ServiceProcess/4.0.0.0": { + "compile": { + "System.ServiceProcess.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.CodePages/9.0.0.0": { + "compile": { + "System.Text.Encoding.CodePages.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding/9.0.0.0": { + "compile": { + "System.Text.Encoding.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encoding.Extensions/9.0.0.0": { + "compile": { + "System.Text.Encoding.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Text.Encodings.Web/9.0.0.0": { + "compile": { + "System.Text.Encodings.Web.dll": {} + }, + "compileOnly": true + }, + "System.Text.Json.Reference/9.0.0.0": { + "compile": { + "System.Text.Json.dll": {} + }, + "compileOnly": true + }, + "System.Text.RegularExpressions/9.0.0.0": { + "compile": { + "System.Text.RegularExpressions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Channels.Reference/9.0.0.0": { + "compile": { + "System.Threading.Channels.dll": {} + }, + "compileOnly": true + }, + "System.Threading/9.0.0.0": { + "compile": { + "System.Threading.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Overlapped/9.0.0.0": { + "compile": { + "System.Threading.Overlapped.dll": {} + }, + "compileOnly": true + }, + "System.Threading.RateLimiting/9.0.0.0": { + "compile": { + "System.Threading.RateLimiting.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Dataflow/9.0.0.0": { + "compile": { + "System.Threading.Tasks.Dataflow.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks/9.0.0.0": { + "compile": { + "System.Threading.Tasks.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Extensions/9.0.0.0": { + "compile": { + "System.Threading.Tasks.Extensions.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Tasks.Parallel/9.0.0.0": { + "compile": { + "System.Threading.Tasks.Parallel.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Thread/9.0.0.0": { + "compile": { + "System.Threading.Thread.dll": {} + }, + "compileOnly": true + }, + "System.Threading.ThreadPool/9.0.0.0": { + "compile": { + "System.Threading.ThreadPool.dll": {} + }, + "compileOnly": true + }, + "System.Threading.Timer/9.0.0.0": { + "compile": { + "System.Threading.Timer.dll": {} + }, + "compileOnly": true + }, + "System.Transactions/4.0.0.0": { + "compile": { + "System.Transactions.dll": {} + }, + "compileOnly": true + }, + "System.Transactions.Local/9.0.0.0": { + "compile": { + "System.Transactions.Local.dll": {} + }, + "compileOnly": true + }, + "System.ValueTuple/9.0.0.0": { + "compile": { + "System.ValueTuple.dll": {} + }, + "compileOnly": true + }, + "System.Web/4.0.0.0": { + "compile": { + "System.Web.dll": {} + }, + "compileOnly": true + }, + "System.Web.HttpUtility/9.0.0.0": { + "compile": { + "System.Web.HttpUtility.dll": {} + }, + "compileOnly": true + }, + "System.Windows/4.0.0.0": { + "compile": { + "System.Windows.dll": {} + }, + "compileOnly": true + }, + "System.Xml/4.0.0.0": { + "compile": { + "System.Xml.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Linq/4.0.0.0": { + "compile": { + "System.Xml.Linq.dll": {} + }, + "compileOnly": true + }, + "System.Xml.ReaderWriter/9.0.0.0": { + "compile": { + "System.Xml.ReaderWriter.dll": {} + }, + "compileOnly": true + }, + "System.Xml.Serialization/4.0.0.0": { + "compile": { + "System.Xml.Serialization.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XDocument/9.0.0.0": { + "compile": { + "System.Xml.XDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlDocument/9.0.0.0": { + "compile": { + "System.Xml.XmlDocument.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XmlSerializer/9.0.0.0": { + "compile": { + "System.Xml.XmlSerializer.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath/9.0.0.0": { + "compile": { + "System.Xml.XPath.dll": {} + }, + "compileOnly": true + }, + "System.Xml.XPath.XDocument/9.0.0.0": { + "compile": { + "System.Xml.XPath.XDocument.dll": {} + }, + "compileOnly": true + }, + "WindowsBase/4.0.0.0": { + "compile": { + "WindowsBase.dll": {} + }, + "compileOnly": true + } + } + }, + "libraries": { + "Auth.API/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Bogus/35.6.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+5omfZWy8gOcbpc48vKfMI4h/ecbdf3NQm6xCl3zMbaP4J3rMMm5h3kPFeIWBgt4mbz6YY0eeZDLR/6yv1khKw==", + "path": "bogus/35.6.3", + "hashPath": "bogus.35.6.3.nupkg.sha512" + }, + "Castle.Core/5.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rpYtIczkzGpf+EkZgDr9CClTdemhsrwA/W5hMoPjLkRFnXzH44zDLoovXeKtmxb1ykXK9aJVODSpiJml8CTw2g==", + "path": "castle.core/5.1.1", + "hashPath": "castle.core.5.1.1.nupkg.sha512" + }, + "FluentEmail.Core/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==", + "path": "fluentemail.core/3.0.2", + "hashPath": "fluentemail.core.3.0.2.nupkg.sha512" + }, + "FluentEmail.Razor/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XdZS2n9jjrx2qzyBGvgstYFIm2laYo1j7YMUZI0rylZhpZHIic3taWqe78xF5dcsXpJvucmxRCshhF6hl02Dmw==", + "path": "fluentemail.razor/3.0.2", + "hashPath": "fluentemail.razor.3.0.2.nupkg.sha512" + }, + "FluentEmail.Smtp/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==", + "path": "fluentemail.smtp/3.0.2", + "hashPath": "fluentemail.smtp.3.0.2.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" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lloN3XvIgXmdocfghzfszOHJb45OYR3fgOg/h536o+zNB2SmP3JrqeOieCBZ7sipgGcgbxP0boA+loVhdsJxWg==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/9.0.7", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5di3GKY/a9ceGAdVk78QFGMO55NrFRN1rnh4xNr7MHjOCOMhgcWkyv9051wkPUDfX+g2cNN6+ckHvNnlxUwc2A==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.7", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ms7cTGHBzhCTfC8yIv9KfMrLKsRLg60jGsoZ/oEjoBXbqcEsXcjNtXqaOJCjpeltLDKoePrfSWzjhMUxTHHMA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.7", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tr4JHBgE/wN4Q/iQkWsi0oZXcaM7WFeZ1rpCUeTVka6az3DTtG0+RMuvZvPIq8U8vCANVuzqAcr+uUry4FUKrg==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.7", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+vVXw0oVVu5dnwseBxZFVeYZ0qPJTI03DTdghRKrcK+QhTM3Nu8orukKqdYObsI4mWZADE8wTILuYR5CowJr+w==", + "path": "microsoft.aspnetcore.mvc.razor.extensions/5.0.0", + "hashPath": "microsoft.aspnetcore.mvc.razor.extensions.5.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.OpenApi/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8aG0mkgmA38IDJ0ca5HIpdexKjHXIh0z1kIdw5WyM6CrD4+CEt97UgSwBBBCHG6QQKV0hj2mfkwtEcqrJBcu8g==", + "path": "microsoft.aspnetcore.openapi/9.0.7", + "hashPath": "microsoft.aspnetcore.openapi.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6yOBBASGfXMx1fY6hyjvG+oM3eR8vovIehDdEZW7jAV4gKlY4xuAvTm7Iw1fEq7KPunh2VrJwo7oRK1XxUn1OQ==", + "path": "microsoft.aspnetcore.razor.language/5.0.0", + "hashPath": "microsoft.aspnetcore.razor.language.5.0.0.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.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.Build.Locator/1.7.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "path": "microsoft.build.locator/1.7.8", + "hashPath": "microsoft.build.locator.1.7.8.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.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.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.Razor/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s4u/6z/MQ35y/egrXf4WgJlUZf5GGvuba9mZ700dH4XxLBrA9Fw9kFZ8uymoATry7hwz5owvFhBVo+2VnoiGRg==", + "path": "microsoft.codeanalysis.razor/5.0.0", + "hashPath": "microsoft.codeanalysis.razor.5.0.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.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PbD0q5ax15r91jD4TN7xbDCjldZSz4JfpYN4ZZjAkWeUyROkV92Ydg0O2/1keFA+2u3KPsDkJMmBKv2zQ06ZVg==", + "path": "microsoft.entityframeworkcore/9.0.7", + "hashPath": "microsoft.entityframeworkcore.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YUXNerEkCf4OANO+zjuMznpUW7R8XxSCqmBfYhBrbrJVc09i84KkNgeUTaOUXCGogSK/3d7ORRhMqfUobnejBg==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.7", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HqiPjAvjVOsyA1svnjL81/Wk2MRQYMK/lxKVWvw0f5IcA//VcxBepVSAqe7CFirdsPXqe8rFKEwZROWZTz7Jqw==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.7", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zvZ2/bRwdPrBfQ2fRd2IQL6icyIOtosZSz2QpXtsn7M+c6e4GvpNfpSxBprLfoKhH6NeAFNV9ool0Vp/1DJd/A==", + "path": "microsoft.entityframeworkcore.design/9.0.7", + "hashPath": "microsoft.entityframeworkcore.design.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Proxies/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lPhrsrxYxslg5xW/vltvaKpnI7aw4FiADJ1+zRHNLRzZq8FV5L4AuyJAL6QEqp4UPewEl+yZqoRVNbuEcMzGWQ==", + "path": "microsoft.entityframeworkcore.proxies/9.0.7", + "hashPath": "microsoft.entityframeworkcore.proxies.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yo5joquG7L79H5BhtpqP8apu+KFOAYfvmj0dZnVkPElBY14wY5qva0SOcrDWzYw5BrJrhIArfCcJCJHBvMYiKg==", + "path": "microsoft.entityframeworkcore.relational/9.0.7", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Kzzf7pRey40VaUkHN9/uWxrKVkLu2AQjt+GVeeKLLpiEHAJ1xZRsLSh4ZZYEnyS7Kt2OBOPmsXNdU+wbcOl5w==", + "path": "microsoft.extensions.apidescription.server/9.0.0", + "hashPath": "microsoft.extensions.apidescription.server.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-30necCQehcg9lFkMEIE7HczcoYGML8GUH6jlincA18d896fLZM9wl5tpTPJHgzANQE/6KXRLZSWbgevgg5csSw==", + "path": "microsoft.extensions.caching.abstractions/9.0.7", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nDu6c8fwrHQYccLnWnvyElrdkL3rZ97TZNqL+niMFUcApVBHdpDmKcRvciGymJ4Y0iLDTOo5J2XhDQEbNb+dFg==", + "path": "microsoft.extensions.caching.memory/9.0.7", + "hashPath": "microsoft.extensions.caching.memory.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lut/kiVvNsQ120VERMUYSFhpXPpKjjql+giy03LesASPBBcC0o6+aoFdzJH9GaYpFTQ3fGVhVjKjvJDoAW5/IQ==", + "path": "microsoft.extensions.configuration.abstractions/9.0.7", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i05AYA91vgq0as84ROVCyltD2gnxaba/f1Qw2rG7mUsS0gv8cPTr1Gm7jPQHq7JTr4MJoQUcanLVs16tIOUJaQ==", + "path": "microsoft.extensions.dependencyinjection/9.0.7", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iPK1FxbGFr2Xb+4Y+dTYI8Gupu9pOi8I3JPuPsrogUmEhe2hzZ9LpCmolMEBhVDo2ikcSr7G5zYiwaapHSQTew==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.7", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aXEt8QW1Fj9aC81GfkMtfip4wfbkEA7VBvNkx6Rx6ZKyqXIF/9qzRtH6v/2096IDK4lt6dlQp5Ajf+kjHfUdOA==", + "path": "microsoft.extensions.dependencymodel/9.0.7", + "hashPath": "microsoft.extensions.dependencymodel.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==", + "path": "microsoft.extensions.fileproviders.abstractions/5.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==", + "path": "microsoft.extensions.fileproviders.physical/5.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==", + "path": "microsoft.extensions.filesystemglobbing/5.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yFMK7yhLYbiwiiKOI/A1rReteRbO4vnN3SPNF5YpUHf6BvSMn5K1TDa7GVszJBH/VmxP0EAsHnSH05GEV0x3cg==", + "path": "microsoft.extensions.identity.core/9.0.7", + "hashPath": "microsoft.extensions.identity.core.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mf04+xUV6HCeLROYHZeGSSSIbwXN2taLOcDpSKYO6BawqNOJoBSN9MaQ5vMNrlnH6BnXYPO8S4PuREftqXx5KA==", + "path": "microsoft.extensions.identity.stores/9.0.7", + "hashPath": "microsoft.extensions.identity.stores.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fdIeQpXYV8yxSWG03cCbU2Otdrq4NWuhnQLXokWLv3L9YcK055E7u8WFJvP+uuP4CFeCEoqZQL4yPcjuXhCZrg==", + "path": "microsoft.extensions.logging/9.0.7", + "hashPath": "microsoft.extensions.logging.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sMM6NEAdUTE/elJ2wqjOi0iBWqZmSyaTByLF9e8XHv6DRJFFnOe0N+s8Uc6C91E4SboQCfLswaBIZ+9ZXA98AA==", + "path": "microsoft.extensions.logging.abstractions/9.0.7", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-trJnF6cRWgR5uMmHpGoHmM1wOVFdIYlELlkO9zX+RfieK0321Y55zrcs4AaEymKup7dxgEN/uJU25CAcMNQRXw==", + "path": "microsoft.extensions.options/9.0.7", + "hashPath": "microsoft.extensions.options.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ti/zD9BuuO50IqlvhWQs9GHxkCmoph5BHjGiWKdg2t6Or8XoyAfRJiKag+uvd/fpASnNklfsB01WpZ4fhAe0VQ==", + "path": "microsoft.extensions.primitives/9.0.7", + "hashPath": "microsoft.extensions.primitives.9.0.7.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JzWhET0VOCORyJbqDc1Wtdl8Q/l+I1MjFB0I/Jko+Ma691JZll8X6o9XwZtUce8FkqGuV4uY4/V1808XZOpDVg==", + "path": "microsoft.identitymodel.abstractions/8.12.1", + "hashPath": "microsoft.identitymodel.abstractions.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-imi3xiRLzzKxN4m1aR9Z2X8GUmNsVH7GLA6AkwYStNnh3UzupFtHEEVk3GK1fCvnYdRbpnCGNYY6WQb9AfDAKg==", + "path": "microsoft.identitymodel.jsonwebtokens/8.12.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-39HjVkU7Voe2jRLmORRB5PoTmta1ZPKzUZCc6ldlNlLzdx+um0+fAnvfk05LUQPrNxpvb5ZoqF00SrNvyO2Fzg==", + "path": "microsoft.identitymodel.logging/8.12.1", + "hashPath": "microsoft.identitymodel.logging.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "path": "microsoft.identitymodel.protocols/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DzgPEABn3eZmIk4lhov0QPcoHkIbnAfgkyDPM7uGuWDHeockR9DdqNCD9Zy30hPfExu5VhbOXn9oPRi+tFUhEQ==", + "path": "microsoft.identitymodel.tokens/8.12.1", + "hashPath": "microsoft.identitymodel.tokens.8.12.1.nupkg.sha512" + }, + "Microsoft.OpenApi/1.6.23": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tZ1I0KXnn98CWuV8cpI247A17jaY+ILS9vvF7yhI0uPPEqF4P1d7BWL5Uwtel10w9NucllHB3nTkfYTAcHAh8g==", + "path": "microsoft.openapi/1.6.23", + "hashPath": "microsoft.openapi.1.6.23.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" + }, + "Npgsql/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "path": "npgsql/9.0.3", + "hashPath": "npgsql.9.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512" + }, + "RazorLight/2.0.0-rc.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2tzNTdXCCMesPQhIdL0x5QS2BwDvaLWVQLNcAv153gnWzUzw8vYETIZBp/Hx591BHPg9itiT8lwVx94XfAnCNA==", + "path": "razorlight/2.0.0-rc.3", + "hashPath": "razorlight.2.0.0-rc.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Akk4oFgy0ST8Q8pZTfPbrt045tWNyMMiKhlbYjG3qnjQZLz645IL5vhQm7NLicc2sAAQ+vftArIlsYWFevmb2g==", + "path": "swashbuckle.aspnetcore/9.0.3", + "hashPath": "swashbuckle.aspnetcore.9.0.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CGpkZDWj1g/yH/0wYkxUtBhiFo5TY/Esq2fS0vlBvLOs1UL2Jzef9tdtYmTdd3zBPtnMyXQcsXjMt9yCxz4VaA==", + "path": "swashbuckle.aspnetcore.swagger/9.0.3", + "hashPath": "swashbuckle.aspnetcore.swagger.9.0.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-STqjhw1TZiEGmIRgE6jcJUOcgU/Fjquc6dP4GqbuwBzqWZAWr/9T7FZOGWYEwKnmkMplzlUNepGHwnUrfTP0fw==", + "path": "swashbuckle.aspnetcore.swaggergen/9.0.3", + "hashPath": "swashbuckle.aspnetcore.swaggergen.9.0.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DgJKJASz5OAygeKv2+N0FCZVhQylESqLXrtrRAqIT0vKpX7t5ImJ1FL6+6OqxKiamGkL0jchRXR8OgpMSsMh8w==", + "path": "swashbuckle.aspnetcore.swaggerui/9.0.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.9.0.3.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.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.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jlYdVOJrdeyD80ppEqKJ8BhJdrV3MjeA+seURdhC0DnD41GyUA9Ik+P7Sb571ufVVCYIx93GjeqVvY3QyQxZAA==", + "path": "system.identitymodel.tokens.jwt/8.12.1", + "hashPath": "system.identitymodel.tokens.jwt.8.12.1.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.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.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.Text.Json/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-u/lN2FEEXs3ghj2ta8tWA4r2MS9Yni07K7jDmnz8h1UPDf0lIIIEMkWx383Zz4fJjJio7gDl+00RYuQ/7R8ZQw==", + "path": "system.text.json/9.0.7", + "hashPath": "system.text.json.9.0.7.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" + }, + "Auth.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Auth.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Auth.Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Generic/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Antiforgery/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.BearerToken/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Cookies/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.Core/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authentication.OAuth/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Authorization.Policy/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Authorization/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Endpoints/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Forms/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Server/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Components.Web/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Connections.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.CookiePolicy/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cors/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.Internal.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.DataProtection.Extensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Diagnostics.HealthChecks/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HostFiltering/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Html.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections.Common/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Connections/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Extensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Features/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Http.Results/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpLogging/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpOverrides/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.HttpsPolicy/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Identity/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Localization.Routing/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Metadata/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Core/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Cors/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Localization/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.Razor/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.RazorPages/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.TagHelpers/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.OutputCaching/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.RateLimiting/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Razor.Runtime/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.RequestDecompression/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCaching/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.ResponseCompression/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Rewrite/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Routing/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.HttpSys/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IIS/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.IISIntegration/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Core/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.Session/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Common/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Core/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.StaticAssets/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.StaticFiles/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebSockets/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.AspNetCore.WebUtilities/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.CSharp/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Caching.Abstractions.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Caching.Memory.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Abstractions.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Binder/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.CommandLine/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.FileExtensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Ini/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Json/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.KeyPerFile/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.UserSecrets/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Configuration.Xml/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.DependencyInjection.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Diagnostics.HealthChecks/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Features/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Abstractions.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Composite/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Embedded/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileProviders.Physical.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.FileSystemGlobbing.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Hosting.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Hosting/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Http/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Core.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Identity.Stores.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Localization.Abstractions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Localization/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Abstractions.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Configuration/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Console/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Debug/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventLog/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.EventSource/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Logging.TraceSource/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.ObjectPool/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.DataAnnotations/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Options.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.Primitives.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Extensions.WebEncoders/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.JSInterop/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Net.Http.Headers/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic.Core/14.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.VisualBasic/10.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Primitives/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Win32.Registry/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "mscorlib/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "netstandard/2.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.AppContext/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Buffers.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Concurrent/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Immutable.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.NonGeneric/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Collections.Specialized/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Annotations/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.DataAnnotations/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.EventBasedAsync/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.Primitives/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ComponentModel.TypeConverter/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Configuration/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Console/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Core/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.Common/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data.DataSetExtensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Data/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Contracts/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Debug/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.DiagnosticSource/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.EventLog.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.FileVersionInfo/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Process/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.StackTrace/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TextWriterTraceListener/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tools/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.TraceSource/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Diagnostics.Tracing/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Drawing.Primitives/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Dynamic.Runtime/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Formats.Asn1/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Formats.Tar/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Calendars/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Globalization.Extensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.Brotli/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.FileSystem/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Compression.ZipFile/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.AccessControl/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.DriveInfo/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Primitives/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.FileSystem.Watcher/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.IsolatedStorage/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.MemoryMappedFiles/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipelines.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipes.AccessControl/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.Pipes/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.IO.UnmanagedMemoryStream/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Expressions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Parallel/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Linq.Queryable/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Memory/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Http.Json/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.HttpListener/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Mail/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NameResolution/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.NetworkInformation/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Ping/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Primitives/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Quic/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Requests/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Security/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.ServicePoint/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.Sockets/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebClient/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebHeaderCollection/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebProxy/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets.Client/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Net.WebSockets/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Numerics.Vectors/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ObjectModel/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.DispatchProxy/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.ILGeneration/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Emit.Lightweight/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Extensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Metadata.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.Primitives/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Reflection.TypeExtensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Reader/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.ResourceManager/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Resources.Writer/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.Unsafe.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.CompilerServices.VisualC/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Extensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Handles/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.JavaScript/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.InteropServices.RuntimeInformation/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Intrinsics/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Loader/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Numerics/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Formatters/8.1.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Json/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Primitives/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Runtime.Serialization.Xml/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.AccessControl/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Claims/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Algorithms/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Cng/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Csp/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Encoding/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.OpenSsl/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Primitives/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.X509Certificates/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Cryptography.Xml/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.Principal.Windows/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Security.SecureString/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceModel.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ServiceProcess/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.CodePages/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encoding.Extensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Encodings.Web/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.Json.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Text.RegularExpressions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Channels.Reference/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Overlapped/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.RateLimiting/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Dataflow/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Extensions/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Tasks.Parallel/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Thread/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.ThreadPool/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Threading.Timer/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Transactions.Local/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.ValueTuple/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Web.HttpUtility/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Windows/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Linq/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.ReaderWriter/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.Serialization/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XDocument/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlDocument/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XmlSerializer/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "System.Xml.XPath.XDocument/9.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + }, + "WindowsBase/4.0.0.0": { + "type": "referenceassembly", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net9.0/Auth.API.dll b/Auth.API/bin/Debug/net9.0/Auth.API.dll new file mode 100644 index 0000000..9d0577f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Auth.API.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Auth.API.pdb b/Auth.API/bin/Debug/net9.0/Auth.API.pdb new file mode 100644 index 0000000..dbf9d88 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Auth.API.pdb differ diff --git a/Auth.API/bin/Debug/net9.0/Auth.API.runtimeconfig.json b/Auth.API/bin/Debug/net9.0/Auth.API.runtimeconfig.json new file mode 100644 index 0000000..1f6a32f --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/Auth.API.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net9.0/Auth.API.staticwebassets.endpoints.json b/Auth.API/bin/Debug/net9.0/Auth.API.staticwebassets.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/Auth.API.staticwebassets.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net9.0/Auth.API.staticwebassets.runtime.json b/Auth.API/bin/Debug/net9.0/Auth.API.staticwebassets.runtime.json new file mode 100644 index 0000000..4c18b95 --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/Auth.API.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/wwwroot/"],"Root":{"Children":null,"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net9.0/Auth.Contracts.dll b/Auth.API/bin/Debug/net9.0/Auth.Contracts.dll new file mode 100644 index 0000000..7122b9c Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Auth.Contracts.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Auth.Contracts.pdb b/Auth.API/bin/Debug/net9.0/Auth.Contracts.pdb new file mode 100644 index 0000000..07eea5e Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Auth.Contracts.pdb differ diff --git a/Auth.API/bin/Debug/net9.0/Auth.Core.dll b/Auth.API/bin/Debug/net9.0/Auth.Core.dll new file mode 100644 index 0000000..32ec8ef Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Auth.Core.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Auth.Core.pdb b/Auth.API/bin/Debug/net9.0/Auth.Core.pdb new file mode 100644 index 0000000..2ffa7a3 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Auth.Core.pdb differ diff --git a/Auth.API/bin/Debug/net9.0/Auth.Domain.dll b/Auth.API/bin/Debug/net9.0/Auth.Domain.dll new file mode 100644 index 0000000..28ae93b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Auth.Domain.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Auth.Domain.pdb b/Auth.API/bin/Debug/net9.0/Auth.Domain.pdb new file mode 100644 index 0000000..e62e5cd Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Auth.Domain.pdb differ diff --git a/Auth.API/bin/Debug/net9.0/Auth.deps.json b/Auth.API/bin/Debug/net9.0/Auth.deps.json new file mode 100644 index 0000000..8552f91 --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/Auth.deps.json @@ -0,0 +1,1555 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Auth/1.0.0": { + "dependencies": { + "Contracts": "1.0.0", + "Core": "1.0.0", + "Domain": "1.0.0", + "FluentEmail.Core": "3.0.2", + "FluentEmail.Razor": "3.0.2", + "FluentEmail.Smtp": "3.0.2", + "Microsoft.AspNetCore.Authentication.JwtBearer": "9.0.7", + "Microsoft.AspNetCore.OpenApi": "9.0.7", + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.EntityFrameworkCore.Design": "9.0.7", + "Microsoft.EntityFrameworkCore.Proxies": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4", + "Swashbuckle.AspNetCore": "9.0.3", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "Auth.dll": {} + } + }, + "Bogus/35.6.3": { + "runtime": { + "lib/net6.0/Bogus.dll": { + "assemblyVersion": "35.6.3.0", + "fileVersion": "35.6.3.0" + } + } + }, + "Castle.Core/5.1.1": { + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "runtime": { + "lib/net6.0/Castle.Core.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.1.1.0" + } + } + }, + "FluentEmail.Core/3.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Core.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "FluentEmail.Razor/3.0.2": { + "dependencies": { + "FluentEmail.Core": "3.0.2", + "RazorLight": "2.0.0-rc.3" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Razor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "FluentEmail.Smtp/3.0.2": { + "dependencies": { + "FluentEmail.Core": "3.0.2" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Smtp.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.7": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Microsoft.Extensions.Identity.Stores": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/5.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "5.0.0", + "Microsoft.CodeAnalysis.Razor": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.52605" + } + } + }, + "Microsoft.AspNetCore.OpenApi/9.0.7": { + "dependencies": { + "Microsoft.OpenApi": "1.6.23" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Razor.Language/5.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.52605" + } + } + }, + "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.Build.Framework/17.8.3": {}, + "Microsoft.Build.Locator/1.7.8": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.7.8.28074" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "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.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.Razor/5.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "5.0.0", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.52605" + } + } + }, + "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.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "dependencies": { + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0", + "System.Text.Json": "9.0.7" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + }, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.7", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.7": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.7": {}, + "Microsoft.EntityFrameworkCore.Design/9.0.7": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.7", + "Microsoft.Extensions.DependencyModel": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7", + "Mono.TextTemplating": "3.0.0", + "System.Text.Json": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Proxies/9.0.7": { + "dependencies": { + "Castle.Core": "5.1.1", + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Proxies.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/9.0.0": {}, + "Microsoft.Extensions.Caching.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyModel/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "9.0.0.7", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + } + }, + "Microsoft.Extensions.FileProviders.Physical/5.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "5.0.0", + "Microsoft.Extensions.Primitives": "9.0.7" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {}, + "Microsoft.Extensions.Identity.Core/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.Identity.Core": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.Extensions.Logging/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Options/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.IdentityModel.Logging": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.OpenApi/1.6.23": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.6.23.0", + "fileVersion": "1.6.23.0" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + } + }, + "Npgsql/9.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Npgsql": "9.0.3" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "RazorLight/2.0.0-rc.3": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "5.0.0", + "Microsoft.CodeAnalysis.Razor": "5.0.0", + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.DependencyInjection": "9.0.7", + "Microsoft.Extensions.DependencyModel": "9.0.7", + "Microsoft.Extensions.FileProviders.Physical": "5.0.0", + "Microsoft.Extensions.Primitives": "9.0.7", + "System.Buffers": "4.5.1" + }, + "runtime": { + "lib/net5.0/RazorLight.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Swashbuckle.AspNetCore/9.0.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "9.0.0", + "Swashbuckle.AspNetCore.Swagger": "9.0.3", + "Swashbuckle.AspNetCore.SwaggerGen": "9.0.3", + "Swashbuckle.AspNetCore.SwaggerUI": "9.0.3" + } + }, + "Swashbuckle.AspNetCore.Swagger/9.0.3": { + "dependencies": { + "Microsoft.OpenApi": "1.6.23" + }, + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.1613" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/9.0.3": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "9.0.3" + }, + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.1613" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/9.0.3": { + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.1613" + } + } + }, + "System.Buffers/4.5.1": {}, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "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.Diagnostics.EventLog/6.0.0": {}, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.12.1", + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "System.IO.Pipelines/7.0.0": {}, + "System.Reflection.Metadata/7.0.0": { + "dependencies": { + "System.Collections.Immutable": "7.0.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Text.Json/9.0.7": { + "runtime": { + "lib/net9.0/System.Text.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "System.Threading.Channels/7.0.0": {}, + "Contracts/1.0.0": { + "runtime": { + "Contracts.dll": { + "assemblyVersion": "1.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Core/1.0.0": { + "dependencies": { + "Contracts": "1.0.0", + "Domain": "1.0.0", + "FluentEmail.Core": "3.0.2", + "FluentEmail.Smtp": "3.0.2", + "Microsoft.AspNetCore.Authentication.JwtBearer": "9.0.7", + "Microsoft.EntityFrameworkCore": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "Core.dll": { + "assemblyVersion": "1.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Domain/1.0.0": { + "dependencies": { + "Bogus": "35.6.3", + "Contracts": "1.0.0", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "runtime": { + "Domain.dll": { + "assemblyVersion": "1.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "Auth/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Bogus/35.6.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+5omfZWy8gOcbpc48vKfMI4h/ecbdf3NQm6xCl3zMbaP4J3rMMm5h3kPFeIWBgt4mbz6YY0eeZDLR/6yv1khKw==", + "path": "bogus/35.6.3", + "hashPath": "bogus.35.6.3.nupkg.sha512" + }, + "Castle.Core/5.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rpYtIczkzGpf+EkZgDr9CClTdemhsrwA/W5hMoPjLkRFnXzH44zDLoovXeKtmxb1ykXK9aJVODSpiJml8CTw2g==", + "path": "castle.core/5.1.1", + "hashPath": "castle.core.5.1.1.nupkg.sha512" + }, + "FluentEmail.Core/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==", + "path": "fluentemail.core/3.0.2", + "hashPath": "fluentemail.core.3.0.2.nupkg.sha512" + }, + "FluentEmail.Razor/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XdZS2n9jjrx2qzyBGvgstYFIm2laYo1j7YMUZI0rylZhpZHIic3taWqe78xF5dcsXpJvucmxRCshhF6hl02Dmw==", + "path": "fluentemail.razor/3.0.2", + "hashPath": "fluentemail.razor.3.0.2.nupkg.sha512" + }, + "FluentEmail.Smtp/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==", + "path": "fluentemail.smtp/3.0.2", + "hashPath": "fluentemail.smtp.3.0.2.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" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lloN3XvIgXmdocfghzfszOHJb45OYR3fgOg/h536o+zNB2SmP3JrqeOieCBZ7sipgGcgbxP0boA+loVhdsJxWg==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/9.0.7", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5di3GKY/a9ceGAdVk78QFGMO55NrFRN1rnh4xNr7MHjOCOMhgcWkyv9051wkPUDfX+g2cNN6+ckHvNnlxUwc2A==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.7", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ms7cTGHBzhCTfC8yIv9KfMrLKsRLg60jGsoZ/oEjoBXbqcEsXcjNtXqaOJCjpeltLDKoePrfSWzjhMUxTHHMA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.7", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tr4JHBgE/wN4Q/iQkWsi0oZXcaM7WFeZ1rpCUeTVka6az3DTtG0+RMuvZvPIq8U8vCANVuzqAcr+uUry4FUKrg==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.7", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+vVXw0oVVu5dnwseBxZFVeYZ0qPJTI03DTdghRKrcK+QhTM3Nu8orukKqdYObsI4mWZADE8wTILuYR5CowJr+w==", + "path": "microsoft.aspnetcore.mvc.razor.extensions/5.0.0", + "hashPath": "microsoft.aspnetcore.mvc.razor.extensions.5.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.OpenApi/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8aG0mkgmA38IDJ0ca5HIpdexKjHXIh0z1kIdw5WyM6CrD4+CEt97UgSwBBBCHG6QQKV0hj2mfkwtEcqrJBcu8g==", + "path": "microsoft.aspnetcore.openapi/9.0.7", + "hashPath": "microsoft.aspnetcore.openapi.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6yOBBASGfXMx1fY6hyjvG+oM3eR8vovIehDdEZW7jAV4gKlY4xuAvTm7Iw1fEq7KPunh2VrJwo7oRK1XxUn1OQ==", + "path": "microsoft.aspnetcore.razor.language/5.0.0", + "hashPath": "microsoft.aspnetcore.razor.language.5.0.0.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.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.Build.Locator/1.7.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "path": "microsoft.build.locator/1.7.8", + "hashPath": "microsoft.build.locator.1.7.8.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.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.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.Razor/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s4u/6z/MQ35y/egrXf4WgJlUZf5GGvuba9mZ700dH4XxLBrA9Fw9kFZ8uymoATry7hwz5owvFhBVo+2VnoiGRg==", + "path": "microsoft.codeanalysis.razor/5.0.0", + "hashPath": "microsoft.codeanalysis.razor.5.0.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.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PbD0q5ax15r91jD4TN7xbDCjldZSz4JfpYN4ZZjAkWeUyROkV92Ydg0O2/1keFA+2u3KPsDkJMmBKv2zQ06ZVg==", + "path": "microsoft.entityframeworkcore/9.0.7", + "hashPath": "microsoft.entityframeworkcore.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YUXNerEkCf4OANO+zjuMznpUW7R8XxSCqmBfYhBrbrJVc09i84KkNgeUTaOUXCGogSK/3d7ORRhMqfUobnejBg==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.7", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HqiPjAvjVOsyA1svnjL81/Wk2MRQYMK/lxKVWvw0f5IcA//VcxBepVSAqe7CFirdsPXqe8rFKEwZROWZTz7Jqw==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.7", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zvZ2/bRwdPrBfQ2fRd2IQL6icyIOtosZSz2QpXtsn7M+c6e4GvpNfpSxBprLfoKhH6NeAFNV9ool0Vp/1DJd/A==", + "path": "microsoft.entityframeworkcore.design/9.0.7", + "hashPath": "microsoft.entityframeworkcore.design.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Proxies/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lPhrsrxYxslg5xW/vltvaKpnI7aw4FiADJ1+zRHNLRzZq8FV5L4AuyJAL6QEqp4UPewEl+yZqoRVNbuEcMzGWQ==", + "path": "microsoft.entityframeworkcore.proxies/9.0.7", + "hashPath": "microsoft.entityframeworkcore.proxies.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yo5joquG7L79H5BhtpqP8apu+KFOAYfvmj0dZnVkPElBY14wY5qva0SOcrDWzYw5BrJrhIArfCcJCJHBvMYiKg==", + "path": "microsoft.entityframeworkcore.relational/9.0.7", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Kzzf7pRey40VaUkHN9/uWxrKVkLu2AQjt+GVeeKLLpiEHAJ1xZRsLSh4ZZYEnyS7Kt2OBOPmsXNdU+wbcOl5w==", + "path": "microsoft.extensions.apidescription.server/9.0.0", + "hashPath": "microsoft.extensions.apidescription.server.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-30necCQehcg9lFkMEIE7HczcoYGML8GUH6jlincA18d896fLZM9wl5tpTPJHgzANQE/6KXRLZSWbgevgg5csSw==", + "path": "microsoft.extensions.caching.abstractions/9.0.7", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nDu6c8fwrHQYccLnWnvyElrdkL3rZ97TZNqL+niMFUcApVBHdpDmKcRvciGymJ4Y0iLDTOo5J2XhDQEbNb+dFg==", + "path": "microsoft.extensions.caching.memory/9.0.7", + "hashPath": "microsoft.extensions.caching.memory.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lut/kiVvNsQ120VERMUYSFhpXPpKjjql+giy03LesASPBBcC0o6+aoFdzJH9GaYpFTQ3fGVhVjKjvJDoAW5/IQ==", + "path": "microsoft.extensions.configuration.abstractions/9.0.7", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i05AYA91vgq0as84ROVCyltD2gnxaba/f1Qw2rG7mUsS0gv8cPTr1Gm7jPQHq7JTr4MJoQUcanLVs16tIOUJaQ==", + "path": "microsoft.extensions.dependencyinjection/9.0.7", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iPK1FxbGFr2Xb+4Y+dTYI8Gupu9pOi8I3JPuPsrogUmEhe2hzZ9LpCmolMEBhVDo2ikcSr7G5zYiwaapHSQTew==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.7", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aXEt8QW1Fj9aC81GfkMtfip4wfbkEA7VBvNkx6Rx6ZKyqXIF/9qzRtH6v/2096IDK4lt6dlQp5Ajf+kjHfUdOA==", + "path": "microsoft.extensions.dependencymodel/9.0.7", + "hashPath": "microsoft.extensions.dependencymodel.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==", + "path": "microsoft.extensions.fileproviders.abstractions/5.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==", + "path": "microsoft.extensions.fileproviders.physical/5.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==", + "path": "microsoft.extensions.filesystemglobbing/5.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yFMK7yhLYbiwiiKOI/A1rReteRbO4vnN3SPNF5YpUHf6BvSMn5K1TDa7GVszJBH/VmxP0EAsHnSH05GEV0x3cg==", + "path": "microsoft.extensions.identity.core/9.0.7", + "hashPath": "microsoft.extensions.identity.core.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mf04+xUV6HCeLROYHZeGSSSIbwXN2taLOcDpSKYO6BawqNOJoBSN9MaQ5vMNrlnH6BnXYPO8S4PuREftqXx5KA==", + "path": "microsoft.extensions.identity.stores/9.0.7", + "hashPath": "microsoft.extensions.identity.stores.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fdIeQpXYV8yxSWG03cCbU2Otdrq4NWuhnQLXokWLv3L9YcK055E7u8WFJvP+uuP4CFeCEoqZQL4yPcjuXhCZrg==", + "path": "microsoft.extensions.logging/9.0.7", + "hashPath": "microsoft.extensions.logging.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sMM6NEAdUTE/elJ2wqjOi0iBWqZmSyaTByLF9e8XHv6DRJFFnOe0N+s8Uc6C91E4SboQCfLswaBIZ+9ZXA98AA==", + "path": "microsoft.extensions.logging.abstractions/9.0.7", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-trJnF6cRWgR5uMmHpGoHmM1wOVFdIYlELlkO9zX+RfieK0321Y55zrcs4AaEymKup7dxgEN/uJU25CAcMNQRXw==", + "path": "microsoft.extensions.options/9.0.7", + "hashPath": "microsoft.extensions.options.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ti/zD9BuuO50IqlvhWQs9GHxkCmoph5BHjGiWKdg2t6Or8XoyAfRJiKag+uvd/fpASnNklfsB01WpZ4fhAe0VQ==", + "path": "microsoft.extensions.primitives/9.0.7", + "hashPath": "microsoft.extensions.primitives.9.0.7.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JzWhET0VOCORyJbqDc1Wtdl8Q/l+I1MjFB0I/Jko+Ma691JZll8X6o9XwZtUce8FkqGuV4uY4/V1808XZOpDVg==", + "path": "microsoft.identitymodel.abstractions/8.12.1", + "hashPath": "microsoft.identitymodel.abstractions.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-imi3xiRLzzKxN4m1aR9Z2X8GUmNsVH7GLA6AkwYStNnh3UzupFtHEEVk3GK1fCvnYdRbpnCGNYY6WQb9AfDAKg==", + "path": "microsoft.identitymodel.jsonwebtokens/8.12.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-39HjVkU7Voe2jRLmORRB5PoTmta1ZPKzUZCc6ldlNlLzdx+um0+fAnvfk05LUQPrNxpvb5ZoqF00SrNvyO2Fzg==", + "path": "microsoft.identitymodel.logging/8.12.1", + "hashPath": "microsoft.identitymodel.logging.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "path": "microsoft.identitymodel.protocols/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DzgPEABn3eZmIk4lhov0QPcoHkIbnAfgkyDPM7uGuWDHeockR9DdqNCD9Zy30hPfExu5VhbOXn9oPRi+tFUhEQ==", + "path": "microsoft.identitymodel.tokens/8.12.1", + "hashPath": "microsoft.identitymodel.tokens.8.12.1.nupkg.sha512" + }, + "Microsoft.OpenApi/1.6.23": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tZ1I0KXnn98CWuV8cpI247A17jaY+ILS9vvF7yhI0uPPEqF4P1d7BWL5Uwtel10w9NucllHB3nTkfYTAcHAh8g==", + "path": "microsoft.openapi/1.6.23", + "hashPath": "microsoft.openapi.1.6.23.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" + }, + "Npgsql/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "path": "npgsql/9.0.3", + "hashPath": "npgsql.9.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512" + }, + "RazorLight/2.0.0-rc.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2tzNTdXCCMesPQhIdL0x5QS2BwDvaLWVQLNcAv153gnWzUzw8vYETIZBp/Hx591BHPg9itiT8lwVx94XfAnCNA==", + "path": "razorlight/2.0.0-rc.3", + "hashPath": "razorlight.2.0.0-rc.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Akk4oFgy0ST8Q8pZTfPbrt045tWNyMMiKhlbYjG3qnjQZLz645IL5vhQm7NLicc2sAAQ+vftArIlsYWFevmb2g==", + "path": "swashbuckle.aspnetcore/9.0.3", + "hashPath": "swashbuckle.aspnetcore.9.0.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CGpkZDWj1g/yH/0wYkxUtBhiFo5TY/Esq2fS0vlBvLOs1UL2Jzef9tdtYmTdd3zBPtnMyXQcsXjMt9yCxz4VaA==", + "path": "swashbuckle.aspnetcore.swagger/9.0.3", + "hashPath": "swashbuckle.aspnetcore.swagger.9.0.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-STqjhw1TZiEGmIRgE6jcJUOcgU/Fjquc6dP4GqbuwBzqWZAWr/9T7FZOGWYEwKnmkMplzlUNepGHwnUrfTP0fw==", + "path": "swashbuckle.aspnetcore.swaggergen/9.0.3", + "hashPath": "swashbuckle.aspnetcore.swaggergen.9.0.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DgJKJASz5OAygeKv2+N0FCZVhQylESqLXrtrRAqIT0vKpX7t5ImJ1FL6+6OqxKiamGkL0jchRXR8OgpMSsMh8w==", + "path": "swashbuckle.aspnetcore.swaggerui/9.0.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.9.0.3.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.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.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jlYdVOJrdeyD80ppEqKJ8BhJdrV3MjeA+seURdhC0DnD41GyUA9Ik+P7Sb571ufVVCYIx93GjeqVvY3QyQxZAA==", + "path": "system.identitymodel.tokens.jwt/8.12.1", + "hashPath": "system.identitymodel.tokens.jwt.8.12.1.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.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.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.Text.Json/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-u/lN2FEEXs3ghj2ta8tWA4r2MS9Yni07K7jDmnz8h1UPDf0lIIIEMkWx383Zz4fJjJio7gDl+00RYuQ/7R8ZQw==", + "path": "system.text.json/9.0.7", + "hashPath": "system.text.json.9.0.7.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" + }, + "Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net9.0/Auth.dll b/Auth.API/bin/Debug/net9.0/Auth.dll new file mode 100644 index 0000000..aa9b4b5 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Auth.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Auth.pdb b/Auth.API/bin/Debug/net9.0/Auth.pdb new file mode 100644 index 0000000..466f0ea Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Auth.pdb differ diff --git a/Auth.API/bin/Debug/net9.0/Auth.runtimeconfig.json b/Auth.API/bin/Debug/net9.0/Auth.runtimeconfig.json new file mode 100644 index 0000000..1f6a32f --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/Auth.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net9.0/Auth.staticwebassets.endpoints.json b/Auth.API/bin/Debug/net9.0/Auth.staticwebassets.endpoints.json new file mode 100644 index 0000000..2b6c535 --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/Auth.staticwebassets.endpoints.json @@ -0,0 +1,5 @@ +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [] +} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net9.0/Auth.staticwebassets.runtime.json b/Auth.API/bin/Debug/net9.0/Auth.staticwebassets.runtime.json new file mode 100644 index 0000000..135432b --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/Auth.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/wwwroot/"],"Root":{"Children":null,"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net9.0/Bogus.dll b/Auth.API/bin/Debug/net9.0/Bogus.dll new file mode 100755 index 0000000..504d907 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Bogus.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Castle.Core.dll b/Auth.API/bin/Debug/net9.0/Castle.Core.dll new file mode 100755 index 0000000..eb7fd3b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Castle.Core.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Contracts.dll b/Auth.API/bin/Debug/net9.0/Contracts.dll new file mode 100644 index 0000000..7ee0998 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Contracts.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Contracts.pdb b/Auth.API/bin/Debug/net9.0/Contracts.pdb new file mode 100644 index 0000000..3479ccd Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Contracts.pdb differ diff --git a/Auth.API/bin/Debug/net9.0/Core.dll b/Auth.API/bin/Debug/net9.0/Core.dll new file mode 100644 index 0000000..cf00aa6 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Core.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Core.pdb b/Auth.API/bin/Debug/net9.0/Core.pdb new file mode 100644 index 0000000..791e297 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Core.pdb differ diff --git a/Auth.API/bin/Debug/net9.0/Domain.dll b/Auth.API/bin/Debug/net9.0/Domain.dll new file mode 100644 index 0000000..39e6dc6 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Domain.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Domain.pdb b/Auth.API/bin/Debug/net9.0/Domain.pdb new file mode 100644 index 0000000..920d5fe Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Domain.pdb differ diff --git a/Auth.API/bin/Debug/net9.0/ERP_API b/Auth.API/bin/Debug/net9.0/ERP_API new file mode 100755 index 0000000..c66e1a2 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ERP_API differ diff --git a/Auth.API/bin/Debug/net9.0/ERP_API.deps.json b/Auth.API/bin/Debug/net9.0/ERP_API.deps.json new file mode 100644 index 0000000..00b40ae --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/ERP_API.deps.json @@ -0,0 +1,1555 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "ERP_API/1.0.0": { + "dependencies": { + "Contracts": "1.0.0", + "Core": "1.0.0", + "Domain": "1.0.0", + "FluentEmail.Core": "3.0.2", + "FluentEmail.Razor": "3.0.2", + "FluentEmail.Smtp": "3.0.2", + "Microsoft.AspNetCore.Authentication.JwtBearer": "9.0.7", + "Microsoft.AspNetCore.OpenApi": "9.0.7", + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.EntityFrameworkCore.Design": "9.0.7", + "Microsoft.EntityFrameworkCore.Proxies": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4", + "Swashbuckle.AspNetCore": "9.0.3", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "ERP_API.dll": {} + } + }, + "Bogus/35.6.3": { + "runtime": { + "lib/net6.0/Bogus.dll": { + "assemblyVersion": "35.6.3.0", + "fileVersion": "35.6.3.0" + } + } + }, + "Castle.Core/5.1.1": { + "dependencies": { + "System.Diagnostics.EventLog": "6.0.0" + }, + "runtime": { + "lib/net6.0/Castle.Core.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.1.1.0" + } + } + }, + "FluentEmail.Core/3.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Core.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "FluentEmail.Razor/3.0.2": { + "dependencies": { + "FluentEmail.Core": "3.0.2", + "RazorLight": "2.0.0-rc.3" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Razor.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "FluentEmail.Smtp/3.0.2": { + "dependencies": { + "FluentEmail.Core": "3.0.2" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Smtp.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.7": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Microsoft.Extensions.Identity.Stores": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/5.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "5.0.0", + "Microsoft.CodeAnalysis.Razor": "5.0.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.52605" + } + } + }, + "Microsoft.AspNetCore.OpenApi/9.0.7": { + "dependencies": { + "Microsoft.OpenApi": "1.6.23" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Razor.Language/5.0.0": { + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.52605" + } + } + }, + "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.Build.Framework/17.8.3": {}, + "Microsoft.Build.Locator/1.7.8": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.7.8.28074" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "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.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.Razor/5.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "5.0.0", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.Common": "4.8.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": { + "assemblyVersion": "5.0.0.0", + "fileVersion": "5.0.20.52605" + } + } + }, + "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.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "dependencies": { + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0", + "System.Text.Json": "9.0.7" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + }, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.7", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.7": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.7": {}, + "Microsoft.EntityFrameworkCore.Design/9.0.7": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.7", + "Microsoft.Extensions.DependencyModel": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7", + "Mono.TextTemplating": "3.0.0", + "System.Text.Json": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Proxies/9.0.7": { + "dependencies": { + "Castle.Core": "5.1.1", + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Proxies.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.Extensions.ApiDescription.Server/9.0.0": {}, + "Microsoft.Extensions.Caching.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyModel/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "9.0.0.7", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + } + }, + "Microsoft.Extensions.FileProviders.Physical/5.0.0": { + "dependencies": { + "Microsoft.Extensions.FileProviders.Abstractions": "5.0.0", + "Microsoft.Extensions.FileSystemGlobbing": "5.0.0", + "Microsoft.Extensions.Primitives": "9.0.7" + } + }, + "Microsoft.Extensions.FileSystemGlobbing/5.0.0": {}, + "Microsoft.Extensions.Identity.Core/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.Identity.Core": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.Extensions.Logging/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Options/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.IdentityModel.Logging": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.OpenApi/1.6.23": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.6.23.0", + "fileVersion": "1.6.23.0" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + } + }, + "Npgsql/9.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Npgsql": "9.0.3" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "RazorLight/2.0.0-rc.3": { + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "5.0.0", + "Microsoft.CodeAnalysis.Razor": "5.0.0", + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.DependencyInjection": "9.0.7", + "Microsoft.Extensions.DependencyModel": "9.0.7", + "Microsoft.Extensions.FileProviders.Physical": "5.0.0", + "Microsoft.Extensions.Primitives": "9.0.7", + "System.Buffers": "4.5.1" + }, + "runtime": { + "lib/net5.0/RazorLight.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.0.0" + } + } + }, + "Swashbuckle.AspNetCore/9.0.3": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "9.0.0", + "Swashbuckle.AspNetCore.Swagger": "9.0.3", + "Swashbuckle.AspNetCore.SwaggerGen": "9.0.3", + "Swashbuckle.AspNetCore.SwaggerUI": "9.0.3" + } + }, + "Swashbuckle.AspNetCore.Swagger/9.0.3": { + "dependencies": { + "Microsoft.OpenApi": "1.6.23" + }, + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.1613" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/9.0.3": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "9.0.3" + }, + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.1613" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/9.0.3": { + "runtime": { + "lib/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.1613" + } + } + }, + "System.Buffers/4.5.1": {}, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "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.Diagnostics.EventLog/6.0.0": {}, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.12.1", + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "System.IO.Pipelines/7.0.0": {}, + "System.Reflection.Metadata/7.0.0": { + "dependencies": { + "System.Collections.Immutable": "7.0.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Text.Json/9.0.7": { + "runtime": { + "lib/net9.0/System.Text.Json.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "System.Threading.Channels/7.0.0": {}, + "Contracts/1.0.0": { + "runtime": { + "Contracts.dll": { + "assemblyVersion": "1.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Core/1.0.0": { + "dependencies": { + "Contracts": "1.0.0", + "Domain": "1.0.0", + "FluentEmail.Core": "3.0.2", + "FluentEmail.Smtp": "3.0.2", + "Microsoft.AspNetCore.Authentication.JwtBearer": "9.0.7", + "Microsoft.EntityFrameworkCore": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "Core.dll": { + "assemblyVersion": "1.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Domain/1.0.0": { + "dependencies": { + "Bogus": "35.6.3", + "Contracts": "1.0.0", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "runtime": { + "Domain.dll": { + "assemblyVersion": "1.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "ERP_API/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Bogus/35.6.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+5omfZWy8gOcbpc48vKfMI4h/ecbdf3NQm6xCl3zMbaP4J3rMMm5h3kPFeIWBgt4mbz6YY0eeZDLR/6yv1khKw==", + "path": "bogus/35.6.3", + "hashPath": "bogus.35.6.3.nupkg.sha512" + }, + "Castle.Core/5.1.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rpYtIczkzGpf+EkZgDr9CClTdemhsrwA/W5hMoPjLkRFnXzH44zDLoovXeKtmxb1ykXK9aJVODSpiJml8CTw2g==", + "path": "castle.core/5.1.1", + "hashPath": "castle.core.5.1.1.nupkg.sha512" + }, + "FluentEmail.Core/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==", + "path": "fluentemail.core/3.0.2", + "hashPath": "fluentemail.core.3.0.2.nupkg.sha512" + }, + "FluentEmail.Razor/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XdZS2n9jjrx2qzyBGvgstYFIm2laYo1j7YMUZI0rylZhpZHIic3taWqe78xF5dcsXpJvucmxRCshhF6hl02Dmw==", + "path": "fluentemail.razor/3.0.2", + "hashPath": "fluentemail.razor.3.0.2.nupkg.sha512" + }, + "FluentEmail.Smtp/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==", + "path": "fluentemail.smtp/3.0.2", + "hashPath": "fluentemail.smtp.3.0.2.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" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lloN3XvIgXmdocfghzfszOHJb45OYR3fgOg/h536o+zNB2SmP3JrqeOieCBZ7sipgGcgbxP0boA+loVhdsJxWg==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/9.0.7", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5di3GKY/a9ceGAdVk78QFGMO55NrFRN1rnh4xNr7MHjOCOMhgcWkyv9051wkPUDfX+g2cNN6+ckHvNnlxUwc2A==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.7", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ms7cTGHBzhCTfC8yIv9KfMrLKsRLg60jGsoZ/oEjoBXbqcEsXcjNtXqaOJCjpeltLDKoePrfSWzjhMUxTHHMA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.7", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tr4JHBgE/wN4Q/iQkWsi0oZXcaM7WFeZ1rpCUeTVka6az3DTtG0+RMuvZvPIq8U8vCANVuzqAcr+uUry4FUKrg==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.7", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+vVXw0oVVu5dnwseBxZFVeYZ0qPJTI03DTdghRKrcK+QhTM3Nu8orukKqdYObsI4mWZADE8wTILuYR5CowJr+w==", + "path": "microsoft.aspnetcore.mvc.razor.extensions/5.0.0", + "hashPath": "microsoft.aspnetcore.mvc.razor.extensions.5.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.OpenApi/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8aG0mkgmA38IDJ0ca5HIpdexKjHXIh0z1kIdw5WyM6CrD4+CEt97UgSwBBBCHG6QQKV0hj2mfkwtEcqrJBcu8g==", + "path": "microsoft.aspnetcore.openapi/9.0.7", + "hashPath": "microsoft.aspnetcore.openapi.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Razor.Language/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6yOBBASGfXMx1fY6hyjvG+oM3eR8vovIehDdEZW7jAV4gKlY4xuAvTm7Iw1fEq7KPunh2VrJwo7oRK1XxUn1OQ==", + "path": "microsoft.aspnetcore.razor.language/5.0.0", + "hashPath": "microsoft.aspnetcore.razor.language.5.0.0.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.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.Build.Locator/1.7.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "path": "microsoft.build.locator/1.7.8", + "hashPath": "microsoft.build.locator.1.7.8.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.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.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.Razor/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-s4u/6z/MQ35y/egrXf4WgJlUZf5GGvuba9mZ700dH4XxLBrA9Fw9kFZ8uymoATry7hwz5owvFhBVo+2VnoiGRg==", + "path": "microsoft.codeanalysis.razor/5.0.0", + "hashPath": "microsoft.codeanalysis.razor.5.0.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.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PbD0q5ax15r91jD4TN7xbDCjldZSz4JfpYN4ZZjAkWeUyROkV92Ydg0O2/1keFA+2u3KPsDkJMmBKv2zQ06ZVg==", + "path": "microsoft.entityframeworkcore/9.0.7", + "hashPath": "microsoft.entityframeworkcore.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YUXNerEkCf4OANO+zjuMznpUW7R8XxSCqmBfYhBrbrJVc09i84KkNgeUTaOUXCGogSK/3d7ORRhMqfUobnejBg==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.7", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HqiPjAvjVOsyA1svnjL81/Wk2MRQYMK/lxKVWvw0f5IcA//VcxBepVSAqe7CFirdsPXqe8rFKEwZROWZTz7Jqw==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.7", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zvZ2/bRwdPrBfQ2fRd2IQL6icyIOtosZSz2QpXtsn7M+c6e4GvpNfpSxBprLfoKhH6NeAFNV9ool0Vp/1DJd/A==", + "path": "microsoft.entityframeworkcore.design/9.0.7", + "hashPath": "microsoft.entityframeworkcore.design.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Proxies/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lPhrsrxYxslg5xW/vltvaKpnI7aw4FiADJ1+zRHNLRzZq8FV5L4AuyJAL6QEqp4UPewEl+yZqoRVNbuEcMzGWQ==", + "path": "microsoft.entityframeworkcore.proxies/9.0.7", + "hashPath": "microsoft.entityframeworkcore.proxies.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yo5joquG7L79H5BhtpqP8apu+KFOAYfvmj0dZnVkPElBY14wY5qva0SOcrDWzYw5BrJrhIArfCcJCJHBvMYiKg==", + "path": "microsoft.entityframeworkcore.relational/9.0.7", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Kzzf7pRey40VaUkHN9/uWxrKVkLu2AQjt+GVeeKLLpiEHAJ1xZRsLSh4ZZYEnyS7Kt2OBOPmsXNdU+wbcOl5w==", + "path": "microsoft.extensions.apidescription.server/9.0.0", + "hashPath": "microsoft.extensions.apidescription.server.9.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-30necCQehcg9lFkMEIE7HczcoYGML8GUH6jlincA18d896fLZM9wl5tpTPJHgzANQE/6KXRLZSWbgevgg5csSw==", + "path": "microsoft.extensions.caching.abstractions/9.0.7", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nDu6c8fwrHQYccLnWnvyElrdkL3rZ97TZNqL+niMFUcApVBHdpDmKcRvciGymJ4Y0iLDTOo5J2XhDQEbNb+dFg==", + "path": "microsoft.extensions.caching.memory/9.0.7", + "hashPath": "microsoft.extensions.caching.memory.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lut/kiVvNsQ120VERMUYSFhpXPpKjjql+giy03LesASPBBcC0o6+aoFdzJH9GaYpFTQ3fGVhVjKjvJDoAW5/IQ==", + "path": "microsoft.extensions.configuration.abstractions/9.0.7", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i05AYA91vgq0as84ROVCyltD2gnxaba/f1Qw2rG7mUsS0gv8cPTr1Gm7jPQHq7JTr4MJoQUcanLVs16tIOUJaQ==", + "path": "microsoft.extensions.dependencyinjection/9.0.7", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iPK1FxbGFr2Xb+4Y+dTYI8Gupu9pOi8I3JPuPsrogUmEhe2hzZ9LpCmolMEBhVDo2ikcSr7G5zYiwaapHSQTew==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.7", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aXEt8QW1Fj9aC81GfkMtfip4wfbkEA7VBvNkx6Rx6ZKyqXIF/9qzRtH6v/2096IDK4lt6dlQp5Ajf+kjHfUdOA==", + "path": "microsoft.extensions.dependencymodel/9.0.7", + "hashPath": "microsoft.extensions.dependencymodel.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Abstractions/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iuZIiZ3mteEb+nsUqpGXKx2cGF+cv6gWPd5jqQI4hzqdiJ6I94ddLjKhQOuRW1lueHwocIw30xbSHGhQj0zjdQ==", + "path": "microsoft.extensions.fileproviders.abstractions/5.0.0", + "hashPath": "microsoft.extensions.fileproviders.abstractions.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileProviders.Physical/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1rkd8UO2qf21biwO7X0hL9uHP7vtfmdv/NLvKgCRHkdz1XnW8zVQJXyEYiN68WYpExgtVWn55QF0qBzgfh1mGg==", + "path": "microsoft.extensions.fileproviders.physical/5.0.0", + "hashPath": "microsoft.extensions.fileproviders.physical.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.FileSystemGlobbing/5.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ArliS8lGk8sWRtrWpqI8yUVYJpRruPjCDT+EIjrgkA/AAPRctlAkRISVZ334chAKktTLzD1+PK8F5IZpGedSqA==", + "path": "microsoft.extensions.filesystemglobbing/5.0.0", + "hashPath": "microsoft.extensions.filesystemglobbing.5.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yFMK7yhLYbiwiiKOI/A1rReteRbO4vnN3SPNF5YpUHf6BvSMn5K1TDa7GVszJBH/VmxP0EAsHnSH05GEV0x3cg==", + "path": "microsoft.extensions.identity.core/9.0.7", + "hashPath": "microsoft.extensions.identity.core.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mf04+xUV6HCeLROYHZeGSSSIbwXN2taLOcDpSKYO6BawqNOJoBSN9MaQ5vMNrlnH6BnXYPO8S4PuREftqXx5KA==", + "path": "microsoft.extensions.identity.stores/9.0.7", + "hashPath": "microsoft.extensions.identity.stores.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fdIeQpXYV8yxSWG03cCbU2Otdrq4NWuhnQLXokWLv3L9YcK055E7u8WFJvP+uuP4CFeCEoqZQL4yPcjuXhCZrg==", + "path": "microsoft.extensions.logging/9.0.7", + "hashPath": "microsoft.extensions.logging.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sMM6NEAdUTE/elJ2wqjOi0iBWqZmSyaTByLF9e8XHv6DRJFFnOe0N+s8Uc6C91E4SboQCfLswaBIZ+9ZXA98AA==", + "path": "microsoft.extensions.logging.abstractions/9.0.7", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-trJnF6cRWgR5uMmHpGoHmM1wOVFdIYlELlkO9zX+RfieK0321Y55zrcs4AaEymKup7dxgEN/uJU25CAcMNQRXw==", + "path": "microsoft.extensions.options/9.0.7", + "hashPath": "microsoft.extensions.options.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ti/zD9BuuO50IqlvhWQs9GHxkCmoph5BHjGiWKdg2t6Or8XoyAfRJiKag+uvd/fpASnNklfsB01WpZ4fhAe0VQ==", + "path": "microsoft.extensions.primitives/9.0.7", + "hashPath": "microsoft.extensions.primitives.9.0.7.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JzWhET0VOCORyJbqDc1Wtdl8Q/l+I1MjFB0I/Jko+Ma691JZll8X6o9XwZtUce8FkqGuV4uY4/V1808XZOpDVg==", + "path": "microsoft.identitymodel.abstractions/8.12.1", + "hashPath": "microsoft.identitymodel.abstractions.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-imi3xiRLzzKxN4m1aR9Z2X8GUmNsVH7GLA6AkwYStNnh3UzupFtHEEVk3GK1fCvnYdRbpnCGNYY6WQb9AfDAKg==", + "path": "microsoft.identitymodel.jsonwebtokens/8.12.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-39HjVkU7Voe2jRLmORRB5PoTmta1ZPKzUZCc6ldlNlLzdx+um0+fAnvfk05LUQPrNxpvb5ZoqF00SrNvyO2Fzg==", + "path": "microsoft.identitymodel.logging/8.12.1", + "hashPath": "microsoft.identitymodel.logging.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "path": "microsoft.identitymodel.protocols/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DzgPEABn3eZmIk4lhov0QPcoHkIbnAfgkyDPM7uGuWDHeockR9DdqNCD9Zy30hPfExu5VhbOXn9oPRi+tFUhEQ==", + "path": "microsoft.identitymodel.tokens/8.12.1", + "hashPath": "microsoft.identitymodel.tokens.8.12.1.nupkg.sha512" + }, + "Microsoft.OpenApi/1.6.23": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tZ1I0KXnn98CWuV8cpI247A17jaY+ILS9vvF7yhI0uPPEqF4P1d7BWL5Uwtel10w9NucllHB3nTkfYTAcHAh8g==", + "path": "microsoft.openapi/1.6.23", + "hashPath": "microsoft.openapi.1.6.23.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" + }, + "Npgsql/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "path": "npgsql/9.0.3", + "hashPath": "npgsql.9.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512" + }, + "RazorLight/2.0.0-rc.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2tzNTdXCCMesPQhIdL0x5QS2BwDvaLWVQLNcAv153gnWzUzw8vYETIZBp/Hx591BHPg9itiT8lwVx94XfAnCNA==", + "path": "razorlight/2.0.0-rc.3", + "hashPath": "razorlight.2.0.0-rc.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Akk4oFgy0ST8Q8pZTfPbrt045tWNyMMiKhlbYjG3qnjQZLz645IL5vhQm7NLicc2sAAQ+vftArIlsYWFevmb2g==", + "path": "swashbuckle.aspnetcore/9.0.3", + "hashPath": "swashbuckle.aspnetcore.9.0.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CGpkZDWj1g/yH/0wYkxUtBhiFo5TY/Esq2fS0vlBvLOs1UL2Jzef9tdtYmTdd3zBPtnMyXQcsXjMt9yCxz4VaA==", + "path": "swashbuckle.aspnetcore.swagger/9.0.3", + "hashPath": "swashbuckle.aspnetcore.swagger.9.0.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-STqjhw1TZiEGmIRgE6jcJUOcgU/Fjquc6dP4GqbuwBzqWZAWr/9T7FZOGWYEwKnmkMplzlUNepGHwnUrfTP0fw==", + "path": "swashbuckle.aspnetcore.swaggergen/9.0.3", + "hashPath": "swashbuckle.aspnetcore.swaggergen.9.0.3.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DgJKJASz5OAygeKv2+N0FCZVhQylESqLXrtrRAqIT0vKpX7t5ImJ1FL6+6OqxKiamGkL0jchRXR8OgpMSsMh8w==", + "path": "swashbuckle.aspnetcore.swaggerui/9.0.3", + "hashPath": "swashbuckle.aspnetcore.swaggerui.9.0.3.nupkg.sha512" + }, + "System.Buffers/4.5.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rw7ijyl1qqRS0YQD/WycNst8hUUMgrMH4FCn1nNm27M4VxchZ1js3fVjQaANHO5f3sN4isvP4a+Met9Y4YomAg==", + "path": "system.buffers/4.5.1", + "hashPath": "system.buffers.4.5.1.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.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.Diagnostics.EventLog/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lcyUiXTsETK2ALsZrX+nWuHSIQeazhqPphLfaRxzdGaG93+0kELqpgEHtwWOlQe7+jSFnKwaCAgL4kjeZCQJnw==", + "path": "system.diagnostics.eventlog/6.0.0", + "hashPath": "system.diagnostics.eventlog.6.0.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jlYdVOJrdeyD80ppEqKJ8BhJdrV3MjeA+seURdhC0DnD41GyUA9Ik+P7Sb571ufVVCYIx93GjeqVvY3QyQxZAA==", + "path": "system.identitymodel.tokens.jwt/8.12.1", + "hashPath": "system.identitymodel.tokens.jwt.8.12.1.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.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.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.Text.Json/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-u/lN2FEEXs3ghj2ta8tWA4r2MS9Yni07K7jDmnz8h1UPDf0lIIIEMkWx383Zz4fJjJio7gDl+00RYuQ/7R8ZQw==", + "path": "system.text.json/9.0.7", + "hashPath": "system.text.json.9.0.7.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" + }, + "Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net9.0/ERP_API.dll b/Auth.API/bin/Debug/net9.0/ERP_API.dll new file mode 100644 index 0000000..67f7234 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ERP_API.dll differ diff --git a/Auth.API/bin/Debug/net9.0/ERP_API.pdb b/Auth.API/bin/Debug/net9.0/ERP_API.pdb new file mode 100644 index 0000000..b89c1ce Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ERP_API.pdb differ diff --git a/Auth.API/bin/Debug/net9.0/ERP_API.runtimeconfig.json b/Auth.API/bin/Debug/net9.0/ERP_API.runtimeconfig.json new file mode 100644 index 0000000..1f6a32f --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/ERP_API.runtimeconfig.json @@ -0,0 +1,20 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "frameworks": [ + { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + { + "name": "Microsoft.AspNetCore.App", + "version": "9.0.0" + } + ], + "configProperties": { + "System.GC.Server": true, + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net9.0/ERP_API.staticwebassets.endpoints.json b/Auth.API/bin/Debug/net9.0/ERP_API.staticwebassets.endpoints.json new file mode 100644 index 0000000..2b6c535 --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/ERP_API.staticwebassets.endpoints.json @@ -0,0 +1,5 @@ +{ + "Version": 1, + "ManifestType": "Build", + "Endpoints": [] +} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net9.0/ERP_API.staticwebassets.runtime.json b/Auth.API/bin/Debug/net9.0/ERP_API.staticwebassets.runtime.json new file mode 100644 index 0000000..0c67330 --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/ERP_API.staticwebassets.runtime.json @@ -0,0 +1 @@ +{"ContentRoots":["/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/wwwroot/"],"Root":{"Children":null,"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/Auth.API/bin/Debug/net9.0/FluentEmail.Core.dll b/Auth.API/bin/Debug/net9.0/FluentEmail.Core.dll new file mode 100755 index 0000000..030acbd Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/FluentEmail.Core.dll differ diff --git a/Auth.API/bin/Debug/net9.0/FluentEmail.Razor.dll b/Auth.API/bin/Debug/net9.0/FluentEmail.Razor.dll new file mode 100755 index 0000000..4197c98 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/FluentEmail.Razor.dll differ diff --git a/Auth.API/bin/Debug/net9.0/FluentEmail.Smtp.dll b/Auth.API/bin/Debug/net9.0/FluentEmail.Smtp.dll new file mode 100755 index 0000000..7f2ff40 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/FluentEmail.Smtp.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Generic.dll b/Auth.API/bin/Debug/net9.0/Generic.dll new file mode 100644 index 0000000..b9b65bd Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Generic.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Generic.pdb b/Auth.API/bin/Debug/net9.0/Generic.pdb new file mode 100644 index 0000000..5c1abbe Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Generic.pdb differ diff --git a/Auth.API/bin/Debug/net9.0/Humanizer.dll b/Auth.API/bin/Debug/net9.0/Humanizer.dll new file mode 100755 index 0000000..c9a7ef8 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Humanizer.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll new file mode 100755 index 0000000..6a37988 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll b/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll new file mode 100755 index 0000000..83130bb Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll b/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll new file mode 100755 index 0000000..4938235 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll b/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll new file mode 100755 index 0000000..6ad5144 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll b/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll new file mode 100755 index 0000000..90ec486 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll b/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll new file mode 100755 index 0000000..3b3f336 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Razor.Language.dll b/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Razor.Language.dll new file mode 100755 index 0000000..b9ee8bd Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Razor.Language.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll b/Auth.API/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll new file mode 100755 index 0000000..f5f1cee Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.Build.Locator.dll b/Auth.API/bin/Debug/net9.0/Microsoft.Build.Locator.dll new file mode 100755 index 0000000..446d341 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.Build.Locator.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll b/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll new file mode 100755 index 0000000..2e99f76 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll b/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll new file mode 100755 index 0000000..8d56de1 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Razor.dll b/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Razor.dll new file mode 100755 index 0000000..3161485 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Razor.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll b/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll new file mode 100755 index 0000000..a17c676 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll b/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll new file mode 100755 index 0000000..f70a016 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll b/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll new file mode 100755 index 0000000..7253875 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll b/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll new file mode 100755 index 0000000..7d537db Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll b/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100755 index 0000000..ec4a352 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll b/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll new file mode 100755 index 0000000..534e3eb Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Proxies.dll b/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Proxies.dll new file mode 100755 index 0000000..462d6f4 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Proxies.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll b/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100755 index 0000000..9890d5f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll b/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll new file mode 100755 index 0000000..c06340e Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll new file mode 100755 index 0000000..b6918f6 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll new file mode 100755 index 0000000..693e31b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100755 index 0000000..b05e7c4 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100755 index 0000000..54cee09 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll new file mode 100755 index 0000000..79915ab Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll new file mode 100755 index 0000000..590992f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Core.dll b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Core.dll new file mode 100755 index 0000000..dcede8b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Core.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Stores.dll b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Stores.dll new file mode 100755 index 0000000..80f4fd3 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Stores.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100755 index 0000000..a4b1edc Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll new file mode 100755 index 0000000..31f2389 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Options.dll b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Options.dll new file mode 100755 index 0000000..9da8224 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Options.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll new file mode 100755 index 0000000..441c590 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll b/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll new file mode 100755 index 0000000..13e3e4e Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll b/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100755 index 0000000..156e764 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll b/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll new file mode 100755 index 0000000..94961dc Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100755 index 0000000..6c736d2 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll b/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll new file mode 100755 index 0000000..9f30508 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll b/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll new file mode 100755 index 0000000..5a231d7 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Microsoft.OpenApi.dll b/Auth.API/bin/Debug/net9.0/Microsoft.OpenApi.dll new file mode 100755 index 0000000..5d65717 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Microsoft.OpenApi.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Mono.TextTemplating.dll b/Auth.API/bin/Debug/net9.0/Mono.TextTemplating.dll new file mode 100755 index 0000000..4a76511 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Mono.TextTemplating.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll b/Auth.API/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll new file mode 100755 index 0000000..fa6e488 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Npgsql.dll b/Auth.API/bin/Debug/net9.0/Npgsql.dll new file mode 100755 index 0000000..241198d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Npgsql.dll differ diff --git a/Auth.API/bin/Debug/net9.0/RazorLight.dll b/Auth.API/bin/Debug/net9.0/RazorLight.dll new file mode 100755 index 0000000..b3d60db Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/RazorLight.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll b/Auth.API/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll new file mode 100755 index 0000000..209dd8d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll b/Auth.API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100755 index 0000000..acb5564 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/Auth.API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll b/Auth.API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100755 index 0000000..d89c936 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/Auth.API/bin/Debug/net9.0/System.CodeDom.dll b/Auth.API/bin/Debug/net9.0/System.CodeDom.dll new file mode 100755 index 0000000..54c82b6 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/System.CodeDom.dll differ diff --git a/Auth.API/bin/Debug/net9.0/System.Composition.AttributedModel.dll b/Auth.API/bin/Debug/net9.0/System.Composition.AttributedModel.dll new file mode 100755 index 0000000..1431751 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/System.Composition.AttributedModel.dll differ diff --git a/Auth.API/bin/Debug/net9.0/System.Composition.Convention.dll b/Auth.API/bin/Debug/net9.0/System.Composition.Convention.dll new file mode 100755 index 0000000..e9dacb1 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/System.Composition.Convention.dll differ diff --git a/Auth.API/bin/Debug/net9.0/System.Composition.Hosting.dll b/Auth.API/bin/Debug/net9.0/System.Composition.Hosting.dll new file mode 100755 index 0000000..8381202 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/System.Composition.Hosting.dll differ diff --git a/Auth.API/bin/Debug/net9.0/System.Composition.Runtime.dll b/Auth.API/bin/Debug/net9.0/System.Composition.Runtime.dll new file mode 100755 index 0000000..d583c3a Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/System.Composition.Runtime.dll differ diff --git a/Auth.API/bin/Debug/net9.0/System.Composition.TypedParts.dll b/Auth.API/bin/Debug/net9.0/System.Composition.TypedParts.dll new file mode 100755 index 0000000..2b278d7 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/System.Composition.TypedParts.dll differ diff --git a/Auth.API/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll b/Auth.API/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll new file mode 100755 index 0000000..968bc65 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/Auth.API/bin/Debug/net9.0/appsettings.Development.json b/Auth.API/bin/Debug/net9.0/appsettings.Development.json new file mode 100644 index 0000000..ff66ba6 --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/appsettings.Development.json @@ -0,0 +1,8 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + } +} diff --git a/Auth.API/bin/Debug/net9.0/appsettings.json b/Auth.API/bin/Debug/net9.0/appsettings.json new file mode 100644 index 0000000..2a79d23 --- /dev/null +++ b/Auth.API/bin/Debug/net9.0/appsettings.json @@ -0,0 +1,31 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "ConnectionStrings": { + "PostgreDB": "Host=localhost;Database=Auth;Username=test;Password=test;Port=5432;IncludeErrorDetail=true;" +}, + "AllowedHosts": "*", + "JWT": { + "Key": "thisisasecretKeyIneedtoprovideenoughletterstomakeitwork", + "Issuer": "https://hello.com", + "Audience": "hello.com", + "DurationInMinutes": 10 +}, +"EmailTemplate": { + "EmailConfirmation": "placeHolder", + "ResetPassword": "placeHolder" +}, +"hostname": "placeHolder", +"MailSettings": { + "Mail": "merge1942@gmail.com", + "DisplayName": "Merge", + "UserName": "merge1942@gmail.com", + "Password": "ftyqwyqpqtixalxp", + "Host": "smtp.gmail.com", + "Port": 587 +} +} diff --git a/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..4e90e20 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..8dcc1bd Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..8ee4b4d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..62b0422 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..180a8d9 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..4b7bae7 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..05da79f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..bd0bb72 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..e128407 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..6a98feb Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..8e8ced1 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..970399e Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..9e6afdd Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..6cb47ac Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..76ddceb Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..c41ed4c Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..5fe6dd8 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..6eb37cb Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..046c953 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..368bb7b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..72bb9d5 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..6051d99 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..ad0d2cd Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..829ed5d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..9890df1 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..eaded8c Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..47f3fd5 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..28c43a1 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..203cc83 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..208b1d9 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..895ca11 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..c712a37 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..4d5b1a3 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..4790c29 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..05bc700 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..eb61aff Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..ea192cc Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..08eaeab Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..fce2d36 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..e142029 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..7c20209 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..be86033 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..4be51d2 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..768264c Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..0dc6fae Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Antiforgery.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Antiforgery.dll new file mode 100755 index 0000000..74cd5e4 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Antiforgery.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll new file mode 100755 index 0000000..b00da5f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll new file mode 100755 index 0000000..fcc01e5 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll new file mode 100755 index 0000000..2d914aa Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Core.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Core.dll new file mode 100755 index 0000000..7fb1e38 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Core.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll new file mode 100755 index 0000000..fcfc1a6 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.dll new file mode 100755 index 0000000..35c1e4e Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll new file mode 100755 index 0000000..42d847b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.dll new file mode 100755 index 0000000..78ab5fc Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Authorization.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Authorization.dll new file mode 100755 index 0000000..f404a80 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Authorization.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll new file mode 100755 index 0000000..e47a035 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Forms.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Forms.dll new file mode 100755 index 0000000..ab71eea Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Forms.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Server.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Server.dll new file mode 100755 index 0000000..f149694 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Server.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Web.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Web.dll new file mode 100755 index 0000000..4770a39 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.dll new file mode 100755 index 0000000..382967b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100755 index 0000000..42e204e Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.CookiePolicy.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.CookiePolicy.dll new file mode 100755 index 0000000..9eb1fa5 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.CookiePolicy.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cors.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cors.dll new file mode 100755 index 0000000..3dd0182 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cors.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll new file mode 100755 index 0000000..0ec5c1d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll new file mode 100755 index 0000000..a6dc713 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll new file mode 100755 index 0000000..b6aec4f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll new file mode 100755 index 0000000..03e4af3 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.dll new file mode 100755 index 0000000..32d604b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll new file mode 100755 index 0000000..0cc89df Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll new file mode 100755 index 0000000..59000d8 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.dll new file mode 100755 index 0000000..4340a25 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HostFiltering.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HostFiltering.dll new file mode 100755 index 0000000..8cfaa12 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HostFiltering.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll new file mode 100755 index 0000000..988532d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll new file mode 100755 index 0000000..597fc96 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.dll new file mode 100755 index 0000000..10ef0fc Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll new file mode 100755 index 0000000..24a1404 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll new file mode 100755 index 0000000..3bc7579 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll new file mode 100755 index 0000000..3bef5c7 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.dll new file mode 100755 index 0000000..199e867 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Extensions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Extensions.dll new file mode 100755 index 0000000..7dcb1dc Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Features.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Features.dll new file mode 100755 index 0000000..1c8959b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Features.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Results.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Results.dll new file mode 100755 index 0000000..2b27e20 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Results.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.dll new file mode 100755 index 0000000..f9da9ce Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpLogging.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpLogging.dll new file mode 100755 index 0000000..37c8f91 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpLogging.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpOverrides.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpOverrides.dll new file mode 100755 index 0000000..5c9fa6e Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpOverrides.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll new file mode 100755 index 0000000..84c0cab Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Identity.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Identity.dll new file mode 100755 index 0000000..82f8d02 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Identity.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.Routing.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.Routing.dll new file mode 100755 index 0000000..7f9a310 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.Routing.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.dll new file mode 100755 index 0000000..be6cf67 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Metadata.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Metadata.dll new file mode 100755 index 0000000..d5126c6 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Metadata.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll new file mode 100755 index 0000000..9365ac6 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll new file mode 100755 index 0000000..65d6b47 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Core.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Core.dll new file mode 100755 index 0000000..aaa4e33 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Core.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll new file mode 100755 index 0000000..8bf158c Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll new file mode 100755 index 0000000..f7607c9 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll new file mode 100755 index 0000000..5e6882b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll new file mode 100755 index 0000000..3b939cf Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll new file mode 100755 index 0000000..c4fa392 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll new file mode 100755 index 0000000..9f35208 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll new file mode 100755 index 0000000..720bc16 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll new file mode 100755 index 0000000..c50300a Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll new file mode 100755 index 0000000..8264612 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.dll new file mode 100755 index 0000000..e624c30 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.OutputCaching.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.OutputCaching.dll new file mode 100755 index 0000000..bcbe349 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.OutputCaching.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RateLimiting.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RateLimiting.dll new file mode 100755 index 0000000..2135e9a Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RateLimiting.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll new file mode 100755 index 0000000..2baae4e Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.dll new file mode 100755 index 0000000..b3679d2 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RequestDecompression.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RequestDecompression.dll new file mode 100755 index 0000000..e0276c9 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RequestDecompression.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll new file mode 100755 index 0000000..501fce9 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.dll new file mode 100755 index 0000000..e19ce3f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCompression.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCompression.dll new file mode 100755 index 0000000..c0ea36d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCompression.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Rewrite.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Rewrite.dll new file mode 100755 index 0000000..0992482 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Rewrite.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll new file mode 100755 index 0000000..88b7f27 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.dll new file mode 100755 index 0000000..380a7e7 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll new file mode 100755 index 0000000..8230984 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IIS.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IIS.dll new file mode 100755 index 0000000..ed719ba Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IIS.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll new file mode 100755 index 0000000..950199f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll new file mode 100755 index 0000000..0fdc823 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll new file mode 100755 index 0000000..8437d53 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll new file mode 100755 index 0000000..e6360a6 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll new file mode 100755 index 0000000..ca5bfab Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll new file mode 100755 index 0000000..2d55075 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Session.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Session.dll new file mode 100755 index 0000000..988164e Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Session.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Common.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100755 index 0000000..da8c9e5 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Core.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Core.dll new file mode 100755 index 0000000..4e462fc Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Core.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll new file mode 100755 index 0000000..dcff248 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.dll new file mode 100755 index 0000000..a733c1f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticAssets.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticAssets.dll new file mode 100755 index 0000000..e78bb7f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticAssets.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticFiles.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticFiles.dll new file mode 100755 index 0000000..ed497bb Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticFiles.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebSockets.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebSockets.dll new file mode 100755 index 0000000..bd3982f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebSockets.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebUtilities.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebUtilities.dll new file mode 100755 index 0000000..e9d31bf Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebUtilities.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.dll new file mode 100755 index 0000000..0527af4 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.CSharp.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.CSharp.dll new file mode 100755 index 0000000..11ad77b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.CSharp.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Abstractions.dll new file mode 100755 index 0000000..84ecc56 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Memory.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Memory.dll new file mode 100755 index 0000000..30d8716 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100755 index 0000000..16228ae Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Binder.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Binder.dll new file mode 100755 index 0000000..65dfea1 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll new file mode 100755 index 0000000..2447df3 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll new file mode 100755 index 0000000..256aed1 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100755 index 0000000..0b109b2 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Ini.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Ini.dll new file mode 100755 index 0000000..3f5090c Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Ini.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Json.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Json.dll new file mode 100755 index 0000000..ffb2749 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll new file mode 100755 index 0000000..8c30892 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll new file mode 100755 index 0000000..c915701 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Xml.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Xml.dll new file mode 100755 index 0000000..30158ff Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Xml.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.dll new file mode 100755 index 0000000..a91cf54 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100755 index 0000000..d3dcefe Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.dll new file mode 100755 index 0000000..ca70a9a Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll new file mode 100755 index 0000000..490276e Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll new file mode 100755 index 0000000..0c5af79 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll new file mode 100755 index 0000000..e36e41c Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.dll new file mode 100755 index 0000000..7c43bc1 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Features.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Features.dll new file mode 100755 index 0000000..d4b3190 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Features.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100755 index 0000000..23a1f6d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Composite.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Composite.dll new file mode 100755 index 0000000..a2e8d26 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Composite.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll new file mode 100755 index 0000000..ef665e0 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Physical.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100755 index 0000000..6af1aab Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100755 index 0000000..5734c75 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll new file mode 100755 index 0000000..83e3193 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.dll new file mode 100755 index 0000000..95e67f3 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Http.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Http.dll new file mode 100755 index 0000000..643cdbf Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Http.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Core.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Core.dll new file mode 100755 index 0000000..892bc9d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Core.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Stores.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Stores.dll new file mode 100755 index 0000000..c5caf1c Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Stores.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.Abstractions.dll new file mode 100755 index 0000000..6e72154 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.dll new file mode 100755 index 0000000..add4bab Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Abstractions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100755 index 0000000..94fbd52 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Configuration.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Configuration.dll new file mode 100755 index 0000000..0ca5161 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Console.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Console.dll new file mode 100755 index 0000000..c0803bc Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Console.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Debug.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Debug.dll new file mode 100755 index 0000000..4ffcfed Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventLog.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventLog.dll new file mode 100755 index 0000000..6a0bd43 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventLog.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventSource.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventSource.dll new file mode 100755 index 0000000..06fff2b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventSource.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.TraceSource.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.TraceSource.dll new file mode 100755 index 0000000..92e7476 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.TraceSource.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.dll new file mode 100755 index 0000000..3bc1e15 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.ObjectPool.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.ObjectPool.dll new file mode 100755 index 0000000..7760d5e Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.ObjectPool.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll new file mode 100755 index 0000000..34c7173 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll new file mode 100755 index 0000000..4dd9e54 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.dll new file mode 100755 index 0000000..4779f50 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Primitives.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Primitives.dll new file mode 100755 index 0000000..a6693c1 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.WebEncoders.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.WebEncoders.dll new file mode 100755 index 0000000..d19843d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.WebEncoders.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.JSInterop.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.JSInterop.dll new file mode 100755 index 0000000..65778fd Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.JSInterop.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Net.Http.Headers.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Net.Http.Headers.dll new file mode 100755 index 0000000..6032247 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Net.Http.Headers.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.VisualBasic.Core.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.VisualBasic.Core.dll new file mode 100755 index 0000000..409724a Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.VisualBasic.Core.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.VisualBasic.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.VisualBasic.dll new file mode 100755 index 0000000..992dc51 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.VisualBasic.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Win32.Primitives.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Win32.Primitives.dll new file mode 100755 index 0000000..6530627 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Win32.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/Microsoft.Win32.Registry.dll b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Win32.Registry.dll new file mode 100755 index 0000000..9e1719b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/Microsoft.Win32.Registry.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.AppContext.dll b/Auth.API/bin/Debug/net9.0/refs/System.AppContext.dll new file mode 100755 index 0000000..853ae8b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.AppContext.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Buffers.dll b/Auth.API/bin/Debug/net9.0/refs/System.Buffers.dll new file mode 100755 index 0000000..4260a52 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Buffers.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Collections.Concurrent.dll b/Auth.API/bin/Debug/net9.0/refs/System.Collections.Concurrent.dll new file mode 100755 index 0000000..3bd635b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Collections.Concurrent.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Collections.Immutable.dll b/Auth.API/bin/Debug/net9.0/refs/System.Collections.Immutable.dll new file mode 100755 index 0000000..a268e59 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Collections.Immutable.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Collections.NonGeneric.dll b/Auth.API/bin/Debug/net9.0/refs/System.Collections.NonGeneric.dll new file mode 100755 index 0000000..bb557e8 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Collections.NonGeneric.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Collections.Specialized.dll b/Auth.API/bin/Debug/net9.0/refs/System.Collections.Specialized.dll new file mode 100755 index 0000000..4561de6 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Collections.Specialized.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Collections.dll b/Auth.API/bin/Debug/net9.0/refs/System.Collections.dll new file mode 100755 index 0000000..eeb835d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Collections.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.Annotations.dll b/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.Annotations.dll new file mode 100755 index 0000000..da31618 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.Annotations.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.DataAnnotations.dll b/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.DataAnnotations.dll new file mode 100755 index 0000000..cd048ab Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.DataAnnotations.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.EventBasedAsync.dll b/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.EventBasedAsync.dll new file mode 100755 index 0000000..dfa0b6f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.EventBasedAsync.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.Primitives.dll b/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.Primitives.dll new file mode 100755 index 0000000..ba62522 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.TypeConverter.dll b/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.TypeConverter.dll new file mode 100755 index 0000000..097d844 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.TypeConverter.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.dll b/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.dll new file mode 100755 index 0000000..a80f65f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Configuration.dll b/Auth.API/bin/Debug/net9.0/refs/System.Configuration.dll new file mode 100755 index 0000000..9fb77be Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Configuration.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Console.dll b/Auth.API/bin/Debug/net9.0/refs/System.Console.dll new file mode 100755 index 0000000..88806cd Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Console.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Core.dll b/Auth.API/bin/Debug/net9.0/refs/System.Core.dll new file mode 100755 index 0000000..9994946 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Core.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Data.Common.dll b/Auth.API/bin/Debug/net9.0/refs/System.Data.Common.dll new file mode 100755 index 0000000..ddc5afd Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Data.Common.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Data.DataSetExtensions.dll b/Auth.API/bin/Debug/net9.0/refs/System.Data.DataSetExtensions.dll new file mode 100755 index 0000000..d60d7d9 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Data.DataSetExtensions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Data.dll b/Auth.API/bin/Debug/net9.0/refs/System.Data.dll new file mode 100755 index 0000000..497d46f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Data.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Contracts.dll b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Contracts.dll new file mode 100755 index 0000000..fc40818 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Contracts.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Debug.dll b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Debug.dll new file mode 100755 index 0000000..667cfb5 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Debug.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.DiagnosticSource.dll b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.DiagnosticSource.dll new file mode 100755 index 0000000..dc79565 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.DiagnosticSource.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.EventLog.dll b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.EventLog.dll new file mode 100755 index 0000000..b92c049 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.EventLog.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.FileVersionInfo.dll b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.FileVersionInfo.dll new file mode 100755 index 0000000..d395d83 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.FileVersionInfo.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Process.dll b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Process.dll new file mode 100755 index 0000000..b473ebc Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Process.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.StackTrace.dll b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.StackTrace.dll new file mode 100755 index 0000000..f5e83ed Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.StackTrace.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.TextWriterTraceListener.dll b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.TextWriterTraceListener.dll new file mode 100755 index 0000000..7606aa0 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.TextWriterTraceListener.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Tools.dll b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Tools.dll new file mode 100755 index 0000000..8b6e855 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Tools.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.TraceSource.dll b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.TraceSource.dll new file mode 100755 index 0000000..327b2b7 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.TraceSource.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Tracing.dll b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Tracing.dll new file mode 100755 index 0000000..37d7013 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Tracing.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Drawing.Primitives.dll b/Auth.API/bin/Debug/net9.0/refs/System.Drawing.Primitives.dll new file mode 100755 index 0000000..b4c7e7d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Drawing.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Drawing.dll b/Auth.API/bin/Debug/net9.0/refs/System.Drawing.dll new file mode 100755 index 0000000..18756df Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Drawing.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Dynamic.Runtime.dll b/Auth.API/bin/Debug/net9.0/refs/System.Dynamic.Runtime.dll new file mode 100755 index 0000000..e6c3cae Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Dynamic.Runtime.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Formats.Asn1.dll b/Auth.API/bin/Debug/net9.0/refs/System.Formats.Asn1.dll new file mode 100755 index 0000000..f2f936f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Formats.Asn1.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Formats.Tar.dll b/Auth.API/bin/Debug/net9.0/refs/System.Formats.Tar.dll new file mode 100755 index 0000000..8c9b9f9 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Formats.Tar.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Globalization.Calendars.dll b/Auth.API/bin/Debug/net9.0/refs/System.Globalization.Calendars.dll new file mode 100755 index 0000000..973c62b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Globalization.Calendars.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Globalization.Extensions.dll b/Auth.API/bin/Debug/net9.0/refs/System.Globalization.Extensions.dll new file mode 100755 index 0000000..8f42d15 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Globalization.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Globalization.dll b/Auth.API/bin/Debug/net9.0/refs/System.Globalization.dll new file mode 100755 index 0000000..3f6e0de Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Globalization.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.Brotli.dll b/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.Brotli.dll new file mode 100755 index 0000000..dbb4933 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.Brotli.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.FileSystem.dll b/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.FileSystem.dll new file mode 100755 index 0000000..0279cb5 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.FileSystem.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.ZipFile.dll b/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.ZipFile.dll new file mode 100755 index 0000000..2971465 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.ZipFile.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.dll b/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.dll new file mode 100755 index 0000000..e7f3852 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.AccessControl.dll b/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.AccessControl.dll new file mode 100755 index 0000000..ac18a85 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.AccessControl.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.DriveInfo.dll b/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.DriveInfo.dll new file mode 100755 index 0000000..3a83200 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.DriveInfo.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.Primitives.dll b/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.Primitives.dll new file mode 100755 index 0000000..da533c2 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.Watcher.dll b/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.Watcher.dll new file mode 100755 index 0000000..a07aa86 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.Watcher.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.dll b/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.dll new file mode 100755 index 0000000..986ad1b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.IO.IsolatedStorage.dll b/Auth.API/bin/Debug/net9.0/refs/System.IO.IsolatedStorage.dll new file mode 100755 index 0000000..12095ca Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.IO.IsolatedStorage.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.IO.MemoryMappedFiles.dll b/Auth.API/bin/Debug/net9.0/refs/System.IO.MemoryMappedFiles.dll new file mode 100755 index 0000000..ed99b65 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.IO.MemoryMappedFiles.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.IO.Pipelines.dll b/Auth.API/bin/Debug/net9.0/refs/System.IO.Pipelines.dll new file mode 100755 index 0000000..80e366a Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.IO.Pipelines.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.IO.Pipes.AccessControl.dll b/Auth.API/bin/Debug/net9.0/refs/System.IO.Pipes.AccessControl.dll new file mode 100755 index 0000000..310ac95 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.IO.Pipes.AccessControl.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.IO.Pipes.dll b/Auth.API/bin/Debug/net9.0/refs/System.IO.Pipes.dll new file mode 100755 index 0000000..aa8eff3 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.IO.Pipes.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.IO.UnmanagedMemoryStream.dll b/Auth.API/bin/Debug/net9.0/refs/System.IO.UnmanagedMemoryStream.dll new file mode 100755 index 0000000..be3713d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.IO.UnmanagedMemoryStream.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.IO.dll b/Auth.API/bin/Debug/net9.0/refs/System.IO.dll new file mode 100755 index 0000000..7bdbd2f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.IO.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Linq.Expressions.dll b/Auth.API/bin/Debug/net9.0/refs/System.Linq.Expressions.dll new file mode 100755 index 0000000..e2498b1 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Linq.Expressions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Linq.Parallel.dll b/Auth.API/bin/Debug/net9.0/refs/System.Linq.Parallel.dll new file mode 100755 index 0000000..bd63fa8 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Linq.Parallel.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Linq.Queryable.dll b/Auth.API/bin/Debug/net9.0/refs/System.Linq.Queryable.dll new file mode 100755 index 0000000..4ac401d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Linq.Queryable.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Linq.dll b/Auth.API/bin/Debug/net9.0/refs/System.Linq.dll new file mode 100755 index 0000000..4a58266 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Linq.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Memory.dll b/Auth.API/bin/Debug/net9.0/refs/System.Memory.dll new file mode 100755 index 0000000..96a20c7 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Memory.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.Http.Json.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.Http.Json.dll new file mode 100755 index 0000000..d6c4e33 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.Http.Json.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.Http.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.Http.dll new file mode 100755 index 0000000..a78ae96 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.Http.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.HttpListener.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.HttpListener.dll new file mode 100755 index 0000000..75d559c Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.HttpListener.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.Mail.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.Mail.dll new file mode 100755 index 0000000..7280485 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.Mail.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.NameResolution.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.NameResolution.dll new file mode 100755 index 0000000..89bf1d3 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.NameResolution.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.NetworkInformation.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.NetworkInformation.dll new file mode 100755 index 0000000..4a0861a Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.NetworkInformation.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.Ping.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.Ping.dll new file mode 100755 index 0000000..e399902 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.Ping.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.Primitives.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.Primitives.dll new file mode 100755 index 0000000..fedfa21 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.Quic.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.Quic.dll new file mode 100755 index 0000000..6d6a448 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.Quic.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.Requests.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.Requests.dll new file mode 100755 index 0000000..23e8e88 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.Requests.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.Security.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.Security.dll new file mode 100755 index 0000000..a4c6405 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.Security.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.ServicePoint.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.ServicePoint.dll new file mode 100755 index 0000000..cddef74 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.ServicePoint.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.Sockets.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.Sockets.dll new file mode 100755 index 0000000..f74596c Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.Sockets.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.WebClient.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.WebClient.dll new file mode 100755 index 0000000..ded543f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.WebClient.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.WebHeaderCollection.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.WebHeaderCollection.dll new file mode 100755 index 0000000..3d436ef Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.WebHeaderCollection.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.WebProxy.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.WebProxy.dll new file mode 100755 index 0000000..f00cdc7 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.WebProxy.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.WebSockets.Client.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.WebSockets.Client.dll new file mode 100755 index 0000000..b34f4f7 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.WebSockets.Client.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.WebSockets.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.WebSockets.dll new file mode 100755 index 0000000..186a244 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.WebSockets.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Net.dll b/Auth.API/bin/Debug/net9.0/refs/System.Net.dll new file mode 100755 index 0000000..e6f247a Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Net.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Numerics.Vectors.dll b/Auth.API/bin/Debug/net9.0/refs/System.Numerics.Vectors.dll new file mode 100755 index 0000000..1a68cd3 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Numerics.Vectors.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Numerics.dll b/Auth.API/bin/Debug/net9.0/refs/System.Numerics.dll new file mode 100755 index 0000000..5e9c73c Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Numerics.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.ObjectModel.dll b/Auth.API/bin/Debug/net9.0/refs/System.ObjectModel.dll new file mode 100755 index 0000000..74a12ff Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.ObjectModel.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Reflection.DispatchProxy.dll b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.DispatchProxy.dll new file mode 100755 index 0000000..8fd03f9 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.DispatchProxy.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Emit.ILGeneration.dll b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Emit.ILGeneration.dll new file mode 100755 index 0000000..724ef14 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Emit.ILGeneration.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Emit.Lightweight.dll b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Emit.Lightweight.dll new file mode 100755 index 0000000..32fa92d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Emit.Lightweight.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Emit.dll b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Emit.dll new file mode 100755 index 0000000..777eca2 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Emit.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Extensions.dll b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Extensions.dll new file mode 100755 index 0000000..525a6b1 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Metadata.dll b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Metadata.dll new file mode 100755 index 0000000..2389e46 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Metadata.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Primitives.dll b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Primitives.dll new file mode 100755 index 0000000..0857abc Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Reflection.TypeExtensions.dll b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.TypeExtensions.dll new file mode 100755 index 0000000..750d6de Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.TypeExtensions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Reflection.dll b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.dll new file mode 100755 index 0000000..f90ee3f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Reflection.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Resources.Reader.dll b/Auth.API/bin/Debug/net9.0/refs/System.Resources.Reader.dll new file mode 100755 index 0000000..a461e9c Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Resources.Reader.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Resources.ResourceManager.dll b/Auth.API/bin/Debug/net9.0/refs/System.Resources.ResourceManager.dll new file mode 100755 index 0000000..48e3c29 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Resources.ResourceManager.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Resources.Writer.dll b/Auth.API/bin/Debug/net9.0/refs/System.Resources.Writer.dll new file mode 100755 index 0000000..8ffcc9c Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Resources.Writer.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.Unsafe.dll b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.Unsafe.dll new file mode 100755 index 0000000..d1d4e30 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.VisualC.dll b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.VisualC.dll new file mode 100755 index 0000000..f177573 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.VisualC.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Extensions.dll b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Extensions.dll new file mode 100755 index 0000000..6acff16 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Handles.dll b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Handles.dll new file mode 100755 index 0000000..87cd29b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Handles.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Runtime.InteropServices.JavaScript.dll b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.InteropServices.JavaScript.dll new file mode 100755 index 0000000..1dffc8b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.InteropServices.JavaScript.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100755 index 0000000..6d3f3cf Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Runtime.InteropServices.dll b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.InteropServices.dll new file mode 100755 index 0000000..bd65c4c Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.InteropServices.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Intrinsics.dll b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Intrinsics.dll new file mode 100755 index 0000000..357f53d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Intrinsics.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Loader.dll b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Loader.dll new file mode 100755 index 0000000..342ac0e Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Loader.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Numerics.dll b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Numerics.dll new file mode 100755 index 0000000..c1a9579 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Numerics.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Formatters.dll b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Formatters.dll new file mode 100755 index 0000000..2500477 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Formatters.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Json.dll b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Json.dll new file mode 100755 index 0000000..aba1fd1 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Json.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Primitives.dll b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Primitives.dll new file mode 100755 index 0000000..71fc061 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Xml.dll b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Xml.dll new file mode 100755 index 0000000..8157b54 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Xml.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.dll b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.dll new file mode 100755 index 0000000..f1c103f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Runtime.dll b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.dll new file mode 100755 index 0000000..38ee9a4 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Runtime.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Security.AccessControl.dll b/Auth.API/bin/Debug/net9.0/refs/System.Security.AccessControl.dll new file mode 100755 index 0000000..b55d608 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Security.AccessControl.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Security.Claims.dll b/Auth.API/bin/Debug/net9.0/refs/System.Security.Claims.dll new file mode 100755 index 0000000..6f959e1 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Security.Claims.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Algorithms.dll b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Algorithms.dll new file mode 100755 index 0000000..d5259aa Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Algorithms.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Cng.dll b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Cng.dll new file mode 100755 index 0000000..1827bce Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Cng.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Csp.dll b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Csp.dll new file mode 100755 index 0000000..f9df5d5 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Csp.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Encoding.dll b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Encoding.dll new file mode 100755 index 0000000..17e70a9 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Encoding.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.OpenSsl.dll b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.OpenSsl.dll new file mode 100755 index 0000000..f886237 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.OpenSsl.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Primitives.dll b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Primitives.dll new file mode 100755 index 0000000..c6701a6 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Primitives.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.X509Certificates.dll b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.X509Certificates.dll new file mode 100755 index 0000000..e52ebf1 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.X509Certificates.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Xml.dll b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Xml.dll new file mode 100755 index 0000000..3b1b12f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Xml.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.dll b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.dll new file mode 100755 index 0000000..1f24f30 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Security.Principal.Windows.dll b/Auth.API/bin/Debug/net9.0/refs/System.Security.Principal.Windows.dll new file mode 100755 index 0000000..fbef70b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Security.Principal.Windows.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Security.Principal.dll b/Auth.API/bin/Debug/net9.0/refs/System.Security.Principal.dll new file mode 100755 index 0000000..3b81354 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Security.Principal.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Security.SecureString.dll b/Auth.API/bin/Debug/net9.0/refs/System.Security.SecureString.dll new file mode 100755 index 0000000..17e6b25 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Security.SecureString.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Security.dll b/Auth.API/bin/Debug/net9.0/refs/System.Security.dll new file mode 100755 index 0000000..978afeb Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Security.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.ServiceModel.Web.dll b/Auth.API/bin/Debug/net9.0/refs/System.ServiceModel.Web.dll new file mode 100755 index 0000000..97b076b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.ServiceModel.Web.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.ServiceProcess.dll b/Auth.API/bin/Debug/net9.0/refs/System.ServiceProcess.dll new file mode 100755 index 0000000..2b1528d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.ServiceProcess.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Text.Encoding.CodePages.dll b/Auth.API/bin/Debug/net9.0/refs/System.Text.Encoding.CodePages.dll new file mode 100755 index 0000000..0660c3f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Text.Encoding.CodePages.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Text.Encoding.Extensions.dll b/Auth.API/bin/Debug/net9.0/refs/System.Text.Encoding.Extensions.dll new file mode 100755 index 0000000..5022bdc Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Text.Encoding.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Text.Encoding.dll b/Auth.API/bin/Debug/net9.0/refs/System.Text.Encoding.dll new file mode 100755 index 0000000..cc7f98c Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Text.Encoding.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Text.Encodings.Web.dll b/Auth.API/bin/Debug/net9.0/refs/System.Text.Encodings.Web.dll new file mode 100755 index 0000000..207907b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Text.Encodings.Web.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Text.Json.dll b/Auth.API/bin/Debug/net9.0/refs/System.Text.Json.dll new file mode 100755 index 0000000..6a4ce26 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Text.Json.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Text.RegularExpressions.dll b/Auth.API/bin/Debug/net9.0/refs/System.Text.RegularExpressions.dll new file mode 100755 index 0000000..f7190d4 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Text.RegularExpressions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Threading.Channels.dll b/Auth.API/bin/Debug/net9.0/refs/System.Threading.Channels.dll new file mode 100755 index 0000000..c6b0f25 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Threading.Channels.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Threading.Overlapped.dll b/Auth.API/bin/Debug/net9.0/refs/System.Threading.Overlapped.dll new file mode 100755 index 0000000..647d909 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Threading.Overlapped.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Threading.RateLimiting.dll b/Auth.API/bin/Debug/net9.0/refs/System.Threading.RateLimiting.dll new file mode 100755 index 0000000..da5ae27 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Threading.RateLimiting.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.Dataflow.dll b/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.Dataflow.dll new file mode 100755 index 0000000..3ef3261 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.Dataflow.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.Extensions.dll b/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.Extensions.dll new file mode 100755 index 0000000..48e7d74 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.Extensions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.Parallel.dll b/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.Parallel.dll new file mode 100755 index 0000000..1155a44 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.Parallel.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.dll b/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.dll new file mode 100755 index 0000000..e0202b4 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Threading.Thread.dll b/Auth.API/bin/Debug/net9.0/refs/System.Threading.Thread.dll new file mode 100755 index 0000000..d2c91fb Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Threading.Thread.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Threading.ThreadPool.dll b/Auth.API/bin/Debug/net9.0/refs/System.Threading.ThreadPool.dll new file mode 100755 index 0000000..71fbbaf Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Threading.ThreadPool.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Threading.Timer.dll b/Auth.API/bin/Debug/net9.0/refs/System.Threading.Timer.dll new file mode 100755 index 0000000..c4844dd Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Threading.Timer.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Threading.dll b/Auth.API/bin/Debug/net9.0/refs/System.Threading.dll new file mode 100755 index 0000000..0a9bd54 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Threading.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Transactions.Local.dll b/Auth.API/bin/Debug/net9.0/refs/System.Transactions.Local.dll new file mode 100755 index 0000000..71cc000 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Transactions.Local.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Transactions.dll b/Auth.API/bin/Debug/net9.0/refs/System.Transactions.dll new file mode 100755 index 0000000..9628c21 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Transactions.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.ValueTuple.dll b/Auth.API/bin/Debug/net9.0/refs/System.ValueTuple.dll new file mode 100755 index 0000000..6a54b79 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.ValueTuple.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Web.HttpUtility.dll b/Auth.API/bin/Debug/net9.0/refs/System.Web.HttpUtility.dll new file mode 100755 index 0000000..d50b89f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Web.HttpUtility.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Web.dll b/Auth.API/bin/Debug/net9.0/refs/System.Web.dll new file mode 100755 index 0000000..b5782ab Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Web.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Windows.dll b/Auth.API/bin/Debug/net9.0/refs/System.Windows.dll new file mode 100755 index 0000000..7929719 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Windows.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Xml.Linq.dll b/Auth.API/bin/Debug/net9.0/refs/System.Xml.Linq.dll new file mode 100755 index 0000000..201168f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Xml.Linq.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Xml.ReaderWriter.dll b/Auth.API/bin/Debug/net9.0/refs/System.Xml.ReaderWriter.dll new file mode 100755 index 0000000..55f1ff6 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Xml.ReaderWriter.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Xml.Serialization.dll b/Auth.API/bin/Debug/net9.0/refs/System.Xml.Serialization.dll new file mode 100755 index 0000000..333c965 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Xml.Serialization.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Xml.XDocument.dll b/Auth.API/bin/Debug/net9.0/refs/System.Xml.XDocument.dll new file mode 100755 index 0000000..34b6290 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Xml.XDocument.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Xml.XPath.XDocument.dll b/Auth.API/bin/Debug/net9.0/refs/System.Xml.XPath.XDocument.dll new file mode 100755 index 0000000..af6e077 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Xml.XPath.XDocument.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Xml.XPath.dll b/Auth.API/bin/Debug/net9.0/refs/System.Xml.XPath.dll new file mode 100755 index 0000000..6e5ca7a Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Xml.XPath.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Xml.XmlDocument.dll b/Auth.API/bin/Debug/net9.0/refs/System.Xml.XmlDocument.dll new file mode 100755 index 0000000..9744519 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Xml.XmlDocument.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Xml.XmlSerializer.dll b/Auth.API/bin/Debug/net9.0/refs/System.Xml.XmlSerializer.dll new file mode 100755 index 0000000..f36e294 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Xml.XmlSerializer.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.Xml.dll b/Auth.API/bin/Debug/net9.0/refs/System.Xml.dll new file mode 100755 index 0000000..c58deaa Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.Xml.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/System.dll b/Auth.API/bin/Debug/net9.0/refs/System.dll new file mode 100755 index 0000000..9b2ad4d Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/System.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/WindowsBase.dll b/Auth.API/bin/Debug/net9.0/refs/WindowsBase.dll new file mode 100755 index 0000000..64c90e7 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/WindowsBase.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/mscorlib.dll b/Auth.API/bin/Debug/net9.0/refs/mscorlib.dll new file mode 100755 index 0000000..da296d4 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/mscorlib.dll differ diff --git a/Auth.API/bin/Debug/net9.0/refs/netstandard.dll b/Auth.API/bin/Debug/net9.0/refs/netstandard.dll new file mode 100755 index 0000000..44ab1e7 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/refs/netstandard.dll differ diff --git a/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..85dd902 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..dfd0a6b Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..f5e6b57 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..cafdf21 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..ace0504 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..9867f6f Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..2a4742e Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..8977db0 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..8012969 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..9a06288 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..e4b3c7a Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..b51ee57 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..d160925 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..e27e8be Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..22b6e95 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll new file mode 100755 index 0000000..57e4d28 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll b/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll new file mode 100755 index 0000000..305dfbf Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll b/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll new file mode 100755 index 0000000..28a5c18 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll b/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll new file mode 100755 index 0000000..cef3ebc Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll differ diff --git a/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll b/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll new file mode 100755 index 0000000..dce3bc0 Binary files /dev/null and b/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll differ diff --git a/Auth.API/build_log.txt b/Auth.API/build_log.txt new file mode 100644 index 0000000..5b5a0ab --- /dev/null +++ b/Auth.API/build_log.txt @@ -0,0 +1,88 @@ + Determining projects to restore... + All projects are up-to-date for restore. + Auth.Contracts -> /mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Contracts/bin/Debug/net9.0/Auth.Contracts.dll + Generic -> /mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/SharedLogic/Generic/bin/Debug/net9.0/Generic.dll + Auth.Domain -> /mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net9.0/Auth.Domain.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/Pagination.cs(17,20): warning CS8629: Nullable value type may be null. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/Pagination.cs(17,56): warning CS8629: Nullable value type may be null. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(33,14): error CS1061: 'TokenGenerator' does not contain a definition for 'configuration' and no accessible extension method 'configuration' accepting a first argument of type 'TokenGenerator' could be found (are you missing a using directive or an assembly reference?) [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(34,14): error CS1061: 'TokenGenerator' does not contain a definition for 'jwt' and no accessible extension method 'jwt' accepting a first argument of type 'TokenGenerator' could be found (are you missing a using directive or an assembly reference?) [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(35,14): error CS1061: 'TokenGenerator' does not contain a definition for 'userManager' and no accessible extension method 'userManager' accepting a first argument of type 'TokenGenerator' could be found (are you missing a using directive or an assembly reference?) [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/HR/Users/UserService.cs(46,24): warning CS8602: Dereference of a possibly null reference. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/HR/Users/UserService.cs(48,31): warning CS8601: Possible null reference assignment. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/HR/Users/UserService.cs(49,25): warning CS8601: Possible null reference assignment. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(61,16): warning CS8603: Possible null reference return. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(41,32): error CS0103: The name 'userManager' does not exist in the current context [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(42,27): error CS0103: The name 'userManager' does not exist in the current context [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(47,38): error CS1503: Argument 1: cannot convert from 'string' to 'System.IO.BinaryReader' [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(73,44): error CS0103: The name 'jwt' does not exist in the current context [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(80,21): error CS0103: The name 'jwt' does not exist in the current context [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(81,23): error CS0103: The name 'jwt' does not exist in the current context [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(83,49): error CS0103: The name 'jwt' does not exist in the current context [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/FilterExtension.cs(19,38): warning CS8600: Converting null literal or possible null value to non-nullable type. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/FilterExtension.cs(34,45): warning CS8600: Converting null literal or possible null value to non-nullable type. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/FilterExtension.cs(35,37): warning CS8600: Converting null literal or possible null value to non-nullable type. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/FilterExtension.cs(40,34): warning CS8600: Converting null literal or possible null value to non-nullable type. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/FilterExtension.cs(54,34): warning CS8600: Converting null literal or possible null value to non-nullable type. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/FilterExtension.cs(68,34): warning CS8600: Converting null literal or possible null value to non-nullable type. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/FilterExtension.cs(82,25): warning CS8604: Possible null reference argument for parameter 'method' in 'MethodCallExpression Expression.Call(Expression? instance, MethodInfo method, params Expression[]? arguments)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/FilterExtension.cs(98,34): warning CS8600: Converting null literal or possible null value to non-nullable type. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(103,80): error CS0103: The name 'jwt' does not exist in the current context [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(114,16): warning CS8603: Possible null reference return. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(120,53): warning CS8604: Possible null reference argument for parameter 'user' in 'Task UserManager.IsEmailConfirmedAsync(AppUser user)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(125,55): warning CS8604: Possible null reference argument for parameter 'to' in 'Task EmailService.SendChangePhoneNumberToken(string to, AppUser user, string token)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(135,13): warning CS8604: Possible null reference argument for parameter 'user' in 'Task UserManager.ChangePhoneNumberAsync(AppUser user, string phoneNumber, string token)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(145,53): warning CS8604: Possible null reference argument for parameter 'user' in 'Task UserManager.IsEmailConfirmedAsync(AppUser user)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(149,50): warning CS8604: Possible null reference argument for parameter 'to' in 'Task EmailService.SendConfirmationEmail(string to, AppUser user, string token)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(155,58): warning CS8604: Possible null reference argument for parameter 'user' in 'Task UserManager.ConfirmEmailAsync(AppUser user, string token)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(163,71): warning CS8604: Possible null reference argument for parameter 'user' in 'Task UserManager.GeneratePasswordResetTokenAsync(AppUser user)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(164,51): warning CS8604: Possible null reference argument for parameter 'to' in 'Task EmailService.SendResetPasswordEmail(string to, AppUser user, string token)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(171,13): warning CS8604: Possible null reference argument for parameter 'user' in 'Task UserManager.ResetPasswordAsync(AppUser user, string token, string newPassword)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(180,60): warning CS8604: Possible null reference argument for parameter 'user' in 'Task UserManager.CheckPasswordAsync(AppUser user, string password)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(187,54): warning CS8604: Possible null reference argument for parameter 'to' in 'Task EmailService.SendConfirmationEmail(string to, AppUser user, string token)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(195,13): warning CS8604: Possible null reference argument for parameter 'user' in 'Task UserManager.ChangeEmailAsync(AppUser user, string newEmail, string token)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] + +Build FAILED. + +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/Pagination.cs(17,20): warning CS8629: Nullable value type may be null. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/Pagination.cs(17,56): warning CS8629: Nullable value type may be null. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/HR/Users/UserService.cs(46,24): warning CS8602: Dereference of a possibly null reference. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/HR/Users/UserService.cs(48,31): warning CS8601: Possible null reference assignment. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/HR/Users/UserService.cs(49,25): warning CS8601: Possible null reference assignment. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(61,16): warning CS8603: Possible null reference return. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/FilterExtension.cs(19,38): warning CS8600: Converting null literal or possible null value to non-nullable type. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/FilterExtension.cs(34,45): warning CS8600: Converting null literal or possible null value to non-nullable type. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/FilterExtension.cs(35,37): warning CS8600: Converting null literal or possible null value to non-nullable type. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/FilterExtension.cs(40,34): warning CS8600: Converting null literal or possible null value to non-nullable type. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/FilterExtension.cs(54,34): warning CS8600: Converting null literal or possible null value to non-nullable type. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/FilterExtension.cs(68,34): warning CS8600: Converting null literal or possible null value to non-nullable type. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/FilterExtension.cs(82,25): warning CS8604: Possible null reference argument for parameter 'method' in 'MethodCallExpression Expression.Call(Expression? instance, MethodInfo method, params Expression[]? arguments)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Utility/FilterExtension.cs(98,34): warning CS8600: Converting null literal or possible null value to non-nullable type. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(114,16): warning CS8603: Possible null reference return. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(120,53): warning CS8604: Possible null reference argument for parameter 'user' in 'Task UserManager.IsEmailConfirmedAsync(AppUser user)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(125,55): warning CS8604: Possible null reference argument for parameter 'to' in 'Task EmailService.SendChangePhoneNumberToken(string to, AppUser user, string token)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(135,13): warning CS8604: Possible null reference argument for parameter 'user' in 'Task UserManager.ChangePhoneNumberAsync(AppUser user, string phoneNumber, string token)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(145,53): warning CS8604: Possible null reference argument for parameter 'user' in 'Task UserManager.IsEmailConfirmedAsync(AppUser user)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(149,50): warning CS8604: Possible null reference argument for parameter 'to' in 'Task EmailService.SendConfirmationEmail(string to, AppUser user, string token)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(155,58): warning CS8604: Possible null reference argument for parameter 'user' in 'Task UserManager.ConfirmEmailAsync(AppUser user, string token)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(163,71): warning CS8604: Possible null reference argument for parameter 'user' in 'Task UserManager.GeneratePasswordResetTokenAsync(AppUser user)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(164,51): warning CS8604: Possible null reference argument for parameter 'to' in 'Task EmailService.SendResetPasswordEmail(string to, AppUser user, string token)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(171,13): warning CS8604: Possible null reference argument for parameter 'user' in 'Task UserManager.ResetPasswordAsync(AppUser user, string token, string newPassword)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(180,60): warning CS8604: Possible null reference argument for parameter 'user' in 'Task UserManager.CheckPasswordAsync(AppUser user, string password)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(187,54): warning CS8604: Possible null reference argument for parameter 'to' in 'Task EmailService.SendConfirmationEmail(string to, AppUser user, string token)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/AuthService.cs(195,13): warning CS8604: Possible null reference argument for parameter 'user' in 'Task UserManager.ChangeEmailAsync(AppUser user, string newEmail, string token)'. [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(33,14): error CS1061: 'TokenGenerator' does not contain a definition for 'configuration' and no accessible extension method 'configuration' accepting a first argument of type 'TokenGenerator' could be found (are you missing a using directive or an assembly reference?) [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(34,14): error CS1061: 'TokenGenerator' does not contain a definition for 'jwt' and no accessible extension method 'jwt' accepting a first argument of type 'TokenGenerator' could be found (are you missing a using directive or an assembly reference?) [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(35,14): error CS1061: 'TokenGenerator' does not contain a definition for 'userManager' and no accessible extension method 'userManager' accepting a first argument of type 'TokenGenerator' could be found (are you missing a using directive or an assembly reference?) [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(41,32): error CS0103: The name 'userManager' does not exist in the current context [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(42,27): error CS0103: The name 'userManager' does not exist in the current context [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(47,38): error CS1503: Argument 1: cannot convert from 'string' to 'System.IO.BinaryReader' [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(73,44): error CS0103: The name 'jwt' does not exist in the current context [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(80,21): error CS0103: The name 'jwt' does not exist in the current context [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(81,23): error CS0103: The name 'jwt' does not exist in the current context [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(83,49): error CS0103: The name 'jwt' does not exist in the current context [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Services/Auth/TokenGenerator.cs(103,80): error CS0103: The name 'jwt' does not exist in the current context [/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj] + 27 Warning(s) + 11 Error(s) + +Time Elapsed 00:00:02.18 diff --git a/Auth.API/obj/API.csproj.EntityFrameworkCore.targets b/Auth.API/obj/API.csproj.EntityFrameworkCore.targets new file mode 100644 index 0000000..6b67a59 --- /dev/null +++ b/Auth.API/obj/API.csproj.EntityFrameworkCore.targets @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Auth.API/obj/API.csproj.nuget.dgspec.json b/Auth.API/obj/API.csproj.nuget.dgspec.json new file mode 100644 index 0000000..38af844 --- /dev/null +++ b/Auth.API/obj/API.csproj.nuget.dgspec.json @@ -0,0 +1,433 @@ +{ + "format": 1, + "restore": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/API.csproj": {} + }, + "projects": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/API.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/API.csproj", + "projectName": "API", + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/API.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj": { + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj" + }, + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/Core.csproj": { + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/Core.csproj" + }, + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/Domain.csproj": { + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/Domain.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "FluentEmail.Core": { + "target": "Package", + "version": "[3.0.2, )" + }, + "FluentEmail.Razor": { + "target": "Package", + "version": "[3.0.2, )" + }, + "FluentEmail.Smtp": { + "target": "Package", + "version": "[3.0.2, )" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Proxies": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[9.0.3, )" + }, + "System.IdentityModel.Tokens.Jwt": { + "target": "Package", + "version": "[8.12.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj", + "projectName": "Contracts", + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/Core.csproj", + "projectName": "Core", + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/Core.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj": { + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj" + }, + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/Domain.csproj": { + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/Domain.csproj" + }, + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/SharedLogic/Generic/Generic.csproj": { + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/SharedLogic/Generic/Generic.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "FluentEmail.Core": { + "target": "Package", + "version": "[3.0.2, )" + }, + "FluentEmail.Smtp": { + "target": "Package", + "version": "[3.0.2, )" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + }, + "System.IdentityModel.Tokens.Jwt": { + "target": "Package", + "version": "[8.12.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/Domain.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/Domain.csproj", + "projectName": "Domain", + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/Domain.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj": { + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Bogus": { + "target": "Package", + "version": "[35.6.3, )" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.7, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/SharedLogic/Generic/Generic.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/SharedLogic/Generic/Generic.csproj", + "projectName": "Generic", + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/SharedLogic/Generic/Generic.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/SharedLogic/Generic/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Auth.API/obj/API.csproj.nuget.g.props b/Auth.API/obj/API.csproj.nuget.g.props new file mode 100644 index 0000000..fe120db --- /dev/null +++ b/Auth.API/obj/API.csproj.nuget.g.props @@ -0,0 +1,26 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 6.14.0 + + + + + + + + + + + + + /home/yla/.nuget/packages/microsoft.extensions.apidescription.server/9.0.0 + /home/yla/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4 + + \ No newline at end of file diff --git a/Auth.API/obj/API.csproj.nuget.g.targets b/Auth.API/obj/API.csproj.nuget.g.targets new file mode 100644 index 0000000..f605118 --- /dev/null +++ b/Auth.API/obj/API.csproj.nuget.g.targets @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Auth.API/obj/Auth.API.csproj.nuget.dgspec.json b/Auth.API/obj/Auth.API.csproj.nuget.dgspec.json new file mode 100644 index 0000000..3fa0d68 --- /dev/null +++ b/Auth.API/obj/Auth.API.csproj.nuget.dgspec.json @@ -0,0 +1,1938 @@ +{ + "format": 1, + "restore": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/Auth.API.csproj": {} + }, + "projects": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/Auth.API.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/Auth.API.csproj", + "projectName": "Auth.API", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/Auth.API.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "FluentEmail.Core": { + "target": "Package", + "version": "[3.0.2, )" + }, + "FluentEmail.Razor": { + "target": "Package", + "version": "[3.0.2, )" + }, + "FluentEmail.Smtp": { + "target": "Package", + "version": "[3.0.2, )" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Proxies": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Scalar.AspNetCore": { + "target": "Package", + "version": "[2.12.11, )" + }, + "System.IdentityModel.Tokens.Jwt": { + "target": "Package", + "version": "[8.12.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj", + "projectName": "Auth.Contracts", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj", + "projectName": "Auth.Core", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "FluentEmail.Core": { + "target": "Package", + "version": "[3.0.2, )" + }, + "FluentEmail.Smtp": { + "target": "Package", + "version": "[3.0.2, )" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[10.0.0, )" + }, + "System.IdentityModel.Tokens.Jwt": { + "target": "Package", + "version": "[8.12.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj", + "projectName": "Auth.Domain", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Bogus": { + "target": "Package", + "version": "[35.6.3, )" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[10.0.0, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[10.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj", + "projectName": "Generic", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/Auth.API/obj/Auth.API.csproj.nuget.g.props b/Auth.API/obj/Auth.API.csproj.nuget.g.props new file mode 100644 index 0000000..6f716e6 --- /dev/null +++ b/Auth.API/obj/Auth.API.csproj.nuget.g.props @@ -0,0 +1,531 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 7.0.0 + + + + + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/Microsoft.Build.Locator.dll + BuildHost-net472/ + True + BuildHost-net472/Microsoft.Build.Locator.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe + BuildHost-net472/ + True + BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config + BuildHost-net472/ + True + BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/Microsoft.IO.Redist.dll + BuildHost-net472/ + True + BuildHost-net472/Microsoft.IO.Redist.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/Newtonsoft.Json.dll + BuildHost-net472/ + True + BuildHost-net472/Newtonsoft.Json.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/System.Buffers.dll + BuildHost-net472/ + True + BuildHost-net472/System.Buffers.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/System.Collections.Immutable.dll + BuildHost-net472/ + True + BuildHost-net472/System.Collections.Immutable.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/System.CommandLine.dll + BuildHost-net472/ + True + BuildHost-net472/System.CommandLine.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/System.Memory.dll + BuildHost-net472/ + True + BuildHost-net472/System.Memory.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/System.Numerics.Vectors.dll + BuildHost-net472/ + True + BuildHost-net472/System.Numerics.Vectors.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll + BuildHost-net472/ + True + BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/System.Threading.Tasks.Extensions.dll + BuildHost-net472/ + True + BuildHost-net472/System.Threading.Tasks.Extensions.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/cs/System.CommandLine.resources.dll + BuildHost-net472/cs/ + True + BuildHost-net472/cs/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/de/System.CommandLine.resources.dll + BuildHost-net472/de/ + True + BuildHost-net472/de/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/es/System.CommandLine.resources.dll + BuildHost-net472/es/ + True + BuildHost-net472/es/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/fr/System.CommandLine.resources.dll + BuildHost-net472/fr/ + True + BuildHost-net472/fr/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/it/System.CommandLine.resources.dll + BuildHost-net472/it/ + True + BuildHost-net472/it/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/ja/System.CommandLine.resources.dll + BuildHost-net472/ja/ + True + BuildHost-net472/ja/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/ko/System.CommandLine.resources.dll + BuildHost-net472/ko/ + True + BuildHost-net472/ko/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/pl/System.CommandLine.resources.dll + BuildHost-net472/pl/ + True + BuildHost-net472/pl/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/pt-BR/System.CommandLine.resources.dll + BuildHost-net472/pt-BR/ + True + BuildHost-net472/pt-BR/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/ru/System.CommandLine.resources.dll + BuildHost-net472/ru/ + True + BuildHost-net472/ru/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/tr/System.CommandLine.resources.dll + BuildHost-net472/tr/ + True + BuildHost-net472/tr/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/zh-Hans/System.CommandLine.resources.dll + BuildHost-net472/zh-Hans/ + True + BuildHost-net472/zh-Hans/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/zh-Hant/System.CommandLine.resources.dll + BuildHost-net472/zh-Hant/ + True + BuildHost-net472/zh-Hant/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/Microsoft.Build.Locator.dll + BuildHost-netcore/ + True + BuildHost-netcore/Microsoft.Build.Locator.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json + BuildHost-netcore/ + True + BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll + BuildHost-netcore/ + True + BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config + BuildHost-netcore/ + True + BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json + BuildHost-netcore/ + True + BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/Newtonsoft.Json.dll + BuildHost-netcore/ + True + BuildHost-netcore/Newtonsoft.Json.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/System.Collections.Immutable.dll + BuildHost-netcore/ + True + BuildHost-netcore/System.Collections.Immutable.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/System.CommandLine.dll + BuildHost-netcore/ + True + BuildHost-netcore/System.CommandLine.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/cs/System.CommandLine.resources.dll + BuildHost-netcore/cs/ + True + BuildHost-netcore/cs/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/de/System.CommandLine.resources.dll + BuildHost-netcore/de/ + True + BuildHost-netcore/de/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/es/System.CommandLine.resources.dll + BuildHost-netcore/es/ + True + BuildHost-netcore/es/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/fr/System.CommandLine.resources.dll + BuildHost-netcore/fr/ + True + BuildHost-netcore/fr/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/it/System.CommandLine.resources.dll + BuildHost-netcore/it/ + True + BuildHost-netcore/it/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/ja/System.CommandLine.resources.dll + BuildHost-netcore/ja/ + True + BuildHost-netcore/ja/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/ko/System.CommandLine.resources.dll + BuildHost-netcore/ko/ + True + BuildHost-netcore/ko/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/pl/System.CommandLine.resources.dll + BuildHost-netcore/pl/ + True + BuildHost-netcore/pl/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/pt-BR/System.CommandLine.resources.dll + BuildHost-netcore/pt-BR/ + True + BuildHost-netcore/pt-BR/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/ru/System.CommandLine.resources.dll + BuildHost-netcore/ru/ + True + BuildHost-netcore/ru/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/tr/System.CommandLine.resources.dll + BuildHost-netcore/tr/ + True + BuildHost-netcore/tr/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll + BuildHost-netcore/zh-Hans/ + True + BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll + BuildHost-netcore/zh-Hant/ + True + BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll + + + + + + + + + /home/yla/.nuget/packages/microsoft.codeanalysis.analyzers/3.11.0 + + \ No newline at end of file diff --git a/Auth.API/obj/Auth.API.csproj.nuget.g.targets b/Auth.API/obj/Auth.API.csproj.nuget.g.targets new file mode 100644 index 0000000..a4c1e20 --- /dev/null +++ b/Auth.API/obj/Auth.API.csproj.nuget.g.targets @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Auth.API/obj/Auth.csproj.nuget.dgspec.json b/Auth.API/obj/Auth.csproj.nuget.dgspec.json new file mode 100644 index 0000000..4592a71 --- /dev/null +++ b/Auth.API/obj/Auth.csproj.nuget.dgspec.json @@ -0,0 +1,370 @@ +{ + "format": 1, + "restore": { + "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Auth/Auth.csproj": {} + }, + "projects": { + "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Auth/Auth.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Auth/Auth.csproj", + "projectName": "Auth", + "projectPath": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Auth/Auth.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Auth/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Contracts/Contracts.csproj": { + "projectPath": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Contracts/Contracts.csproj" + }, + "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Core/Core.csproj": { + "projectPath": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Core/Core.csproj" + }, + "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Domain/Domain.csproj": { + "projectPath": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Domain/Domain.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "FluentEmail.Core": { + "target": "Package", + "version": "[3.0.2, )" + }, + "FluentEmail.Razor": { + "target": "Package", + "version": "[3.0.2, )" + }, + "FluentEmail.Smtp": { + "target": "Package", + "version": "[3.0.2, )" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Proxies": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[9.0.3, )" + }, + "System.IdentityModel.Tokens.Jwt": { + "target": "Package", + "version": "[8.12.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.106/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Contracts/Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Contracts/Contracts.csproj", + "projectName": "Contracts", + "projectPath": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Contracts/Contracts.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Contracts/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.106/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Core/Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Core/Core.csproj", + "projectName": "Core", + "projectPath": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Core/Core.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Core/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Contracts/Contracts.csproj": { + "projectPath": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Contracts/Contracts.csproj" + }, + "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Domain/Domain.csproj": { + "projectPath": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Domain/Domain.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "FluentEmail.Core": { + "target": "Package", + "version": "[3.0.2, )" + }, + "FluentEmail.Smtp": { + "target": "Package", + "version": "[3.0.2, )" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + }, + "System.IdentityModel.Tokens.Jwt": { + "target": "Package", + "version": "[8.12.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.106/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Domain/Domain.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Domain/Domain.csproj", + "projectName": "Domain", + "projectPath": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Domain/Domain.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Domain/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Contracts/Contracts.csproj": { + "projectPath": "/run/media/yla/Dataa/Programming/Projects/AllProjects/MainProgram/Backend/Auth/Contracts/Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Bogus": { + "target": "Package", + "version": "[35.6.3, )" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.7, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.106/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Auth.API/obj/Auth.csproj.nuget.g.props b/Auth.API/obj/Auth.csproj.nuget.g.props new file mode 100644 index 0000000..6e91a3b --- /dev/null +++ b/Auth.API/obj/Auth.csproj.nuget.g.props @@ -0,0 +1,26 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 6.12.4 + + + + + + + + + + + + + /home/yla/.nuget/packages/microsoft.extensions.apidescription.server/9.0.0 + /home/yla/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4 + + \ No newline at end of file diff --git a/Auth.API/obj/Auth.csproj.nuget.g.targets b/Auth.API/obj/Auth.csproj.nuget.g.targets new file mode 100644 index 0000000..f605118 --- /dev/null +++ b/Auth.API/obj/Auth.csproj.nuget.g.targets @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Auth.API/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/Auth.API/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/Auth.API/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/Auth.API/obj/Debug/net10.0/Auth.API.AssemblyInfo.cs b/Auth.API/obj/Debug/net10.0/Auth.API.AssemblyInfo.cs new file mode 100644 index 0000000..70b60a1 --- /dev/null +++ b/Auth.API/obj/Debug/net10.0/Auth.API.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Auth.API")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Auth.API")] +[assembly: System.Reflection.AssemblyTitleAttribute("Auth.API")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.API/obj/Debug/net10.0/Auth.API.AssemblyInfoInputs.cache b/Auth.API/obj/Debug/net10.0/Auth.API.AssemblyInfoInputs.cache new file mode 100644 index 0000000..934e00c --- /dev/null +++ b/Auth.API/obj/Debug/net10.0/Auth.API.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +0f2fe14b249df792a45cfa3967987c0a5224a9e0e2e81cb1935064f0ce7cd29e diff --git a/Auth.API/obj/Debug/net10.0/Auth.API.GeneratedMSBuildEditorConfig.editorconfig b/Auth.API/obj/Debug/net10.0/Auth.API.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7601364 --- /dev/null +++ b/Auth.API/obj/Debug/net10.0/Auth.API.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,31 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFramework = net10.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.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.RootNamespace = Auth.API +build_property.RootNamespace = Auth.API +build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/Auth.API/obj/Debug/net10.0/Auth.API.GlobalUsings.g.cs b/Auth.API/obj/Debug/net10.0/Auth.API.GlobalUsings.g.cs new file mode 100644 index 0000000..5e6145d --- /dev/null +++ b/Auth.API/obj/Debug/net10.0/Auth.API.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using Microsoft.AspNetCore.Builder; +global using Microsoft.AspNetCore.Hosting; +global using Microsoft.AspNetCore.Http; +global using Microsoft.AspNetCore.Routing; +global using Microsoft.Extensions.Configuration; +global using Microsoft.Extensions.DependencyInjection; +global using Microsoft.Extensions.Hosting; +global using Microsoft.Extensions.Logging; +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Net.Http.Json; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/Auth.API/obj/Debug/net10.0/Auth.API.MvcApplicationPartsAssemblyInfo.cache b/Auth.API/obj/Debug/net10.0/Auth.API.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/Auth.API/obj/Debug/net10.0/Auth.API.MvcApplicationPartsAssemblyInfo.cs b/Auth.API/obj/Debug/net10.0/Auth.API.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..1c3041b --- /dev/null +++ b/Auth.API/obj/Debug/net10.0/Auth.API.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,16 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.API/obj/Debug/net10.0/Auth.API.assets.cache b/Auth.API/obj/Debug/net10.0/Auth.API.assets.cache new file mode 100644 index 0000000..fa19177 Binary files /dev/null and b/Auth.API/obj/Debug/net10.0/Auth.API.assets.cache differ diff --git a/Auth.API/obj/Debug/net10.0/Auth.API.csproj.AssemblyReference.cache b/Auth.API/obj/Debug/net10.0/Auth.API.csproj.AssemblyReference.cache new file mode 100644 index 0000000..b9c9ef3 Binary files /dev/null and b/Auth.API/obj/Debug/net10.0/Auth.API.csproj.AssemblyReference.cache differ diff --git a/Auth.API/obj/Debug/net10.0/Auth.API.csproj.CoreCompileInputs.cache b/Auth.API/obj/Debug/net10.0/Auth.API.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..69e256a --- /dev/null +++ b/Auth.API/obj/Debug/net10.0/Auth.API.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +e6bd14d113b1b0ac97f607b8641e14579dcd10e35595ba669004db91d85bfd0b diff --git a/Auth.API/obj/Debug/net10.0/Auth.API.csproj.FileListAbsolute.txt b/Auth.API/obj/Debug/net10.0/Auth.API.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..6c93cee --- /dev/null +++ b/Auth.API/obj/Debug/net10.0/Auth.API.csproj.FileListAbsolute.txt @@ -0,0 +1,1030 @@ +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/appsettings.Development.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/appsettings.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.API.staticwebassets.runtime.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.API.staticwebassets.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.API +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.API.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.API.runtimeconfig.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.API.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.API.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Antiforgery.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Authorization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Forms.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Server.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Web.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.CookiePolicy.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cors.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HostFiltering.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Features.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Results.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpLogging.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpOverrides.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Identity.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.Routing.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Metadata.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.OutputCaching.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RateLimiting.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RequestDecompression.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCompression.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Rewrite.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IIS.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Session.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticAssets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticFiles.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebSockets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebUtilities.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.CSharp.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Caching.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Caching.Memory.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Binder.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Ini.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Xml.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.DependencyInjection.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Features.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Composite.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Physical.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Hosting.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Http.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Stores.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Configuration.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Console.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Debug.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.EventLog.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.EventSource.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.TraceSource.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.ObjectPool.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Validation.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.WebEncoders.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.JSInterop.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Net.Http.Headers.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.VisualBasic.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.VisualBasic.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Win32.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Win32.Registry.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/mscorlib.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/netstandard.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.AppContext.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Buffers.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Collections.Concurrent.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Collections.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Collections.Immutable.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Collections.NonGeneric.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Collections.Specialized.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.Annotations.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.DataAnnotations.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.EventBasedAsync.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.TypeConverter.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Configuration.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Console.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Data.Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Data.DataSetExtensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Data.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Contracts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Debug.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.DiagnosticSource.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.EventLog.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.FileVersionInfo.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Process.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.StackTrace.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.TextWriterTraceListener.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Tools.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.TraceSource.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Tracing.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Drawing.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Drawing.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Dynamic.Runtime.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Formats.Asn1.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Formats.Cbor.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Formats.Tar.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Globalization.Calendars.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Globalization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Globalization.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.Brotli.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.FileSystem.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.ZipFile.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.AccessControl.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.DriveInfo.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.Watcher.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.IsolatedStorage.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.MemoryMappedFiles.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.Pipelines.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.Pipes.AccessControl.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.Pipes.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.UnmanagedMemoryStream.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Linq.AsyncEnumerable.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Linq.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Linq.Expressions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Linq.Parallel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Linq.Queryable.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Memory.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Http.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Http.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.HttpListener.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Mail.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.NameResolution.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.NetworkInformation.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Ping.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Quic.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Requests.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Security.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.ServerSentEvents.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.ServicePoint.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Sockets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.WebClient.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.WebHeaderCollection.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.WebProxy.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.WebSockets.Client.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.WebSockets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Numerics.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Numerics.Vectors.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ObjectModel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.DispatchProxy.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Emit.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Emit.ILGeneration.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Emit.Lightweight.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Metadata.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.TypeExtensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Resources.Reader.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Resources.ResourceManager.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Resources.Writer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.Unsafe.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.VisualC.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Handles.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.InteropServices.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.InteropServices.JavaScript.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Intrinsics.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Loader.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Numerics.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Formatters.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Xml.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.AccessControl.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Claims.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Algorithms.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Cng.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Csp.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Encoding.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.OpenSsl.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.X509Certificates.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Xml.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Principal.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Principal.Windows.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.SecureString.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ServiceModel.Web.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ServiceProcess.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Text.Encoding.CodePages.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Text.Encoding.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Text.Encoding.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Text.Encodings.Web.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Text.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Text.RegularExpressions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.AccessControl.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.Channels.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.Overlapped.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.RateLimiting.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.Dataflow.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.Parallel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.Thread.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.ThreadPool.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.Timer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Transactions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Transactions.Local.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ValueTuple.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Web.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Web.HttpUtility.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Windows.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.Linq.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.ReaderWriter.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.Serialization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.XDocument.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.XmlDocument.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.XmlSerializer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.XPath.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.XPath.XDocument.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/WindowsBase.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Bogus.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Castle.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/FluentEmail.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/FluentEmail.Razor.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/FluentEmail.Smtp.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Humanizer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Razor.Language.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.Razor.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Design.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Proxies.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.OpenApi.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Mono.TextTemplating.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Npgsql.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/RazorLight.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Scalar.AspNetCore.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.CodeDom.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Composition.AttributedModel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Composition.Convention.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Composition.Hosting.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Composition.Runtime.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Composition.TypedParts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.Domain.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Generic.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.Contracts.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.Core.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.Domain.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Generic.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/rpswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.MvcApplicationPartsAssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.MvcApplicationPartsAssemblyInfo.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/rjimswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/scopedcss/bundle/Auth.API.styles.css +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/staticwebassets.build.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/staticwebassets.build.json.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/staticwebassets.development.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/swae.build.ex.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.csproj.Up2Date +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/refint/Auth.API.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.genruntimeconfig.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/ref/Auth.API.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.Build.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.Build.Framework.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.Build.Tasks.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.Build.Utilities.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.NET.StringTools.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Newtonsoft.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Configuration.ConfigurationManager.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Formats.Nrbf.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Reflection.MetadataLoadContext.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Resources.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Security.Cryptography.ProtectedData.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Security.Permissions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Windows.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/runtimes/win/lib/net9.0/System.Windows.Extensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/appsettings.Development.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/appsettings.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.API.staticwebassets.endpoints.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.API.staticwebassets.runtime.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.API +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.API.deps.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.API.runtimeconfig.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.API.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.API.pdb +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Antiforgery.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.Core.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Authorization.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Forms.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Server.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Components.Web.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.CookiePolicy.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cors.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HostFiltering.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Connections.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Extensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Features.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Http.Results.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpLogging.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpOverrides.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Identity.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Localization.Routing.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Metadata.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Core.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.OutputCaching.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RateLimiting.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.RequestDecompression.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCaching.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.ResponseCompression.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Rewrite.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Routing.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IIS.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.Session.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Common.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Core.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticAssets.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.StaticFiles.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebSockets.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.AspNetCore.WebUtilities.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.CSharp.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Caching.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Caching.Memory.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Binder.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Ini.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Json.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Configuration.Xml.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.DependencyInjection.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Features.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Composite.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileProviders.Physical.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Hosting.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Http.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Core.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Identity.Stores.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Localization.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Configuration.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Console.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.Debug.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.EventLog.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.EventSource.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Logging.TraceSource.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.ObjectPool.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Options.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Primitives.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.Validation.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Extensions.WebEncoders.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.JSInterop.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Net.Http.Headers.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.VisualBasic.Core.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.VisualBasic.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Win32.Primitives.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/Microsoft.Win32.Registry.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/mscorlib.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/netstandard.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.AppContext.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Buffers.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Collections.Concurrent.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Collections.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Collections.Immutable.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Collections.NonGeneric.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Collections.Specialized.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.Annotations.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.DataAnnotations.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.EventBasedAsync.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.Primitives.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ComponentModel.TypeConverter.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Configuration.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Console.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Core.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Data.Common.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Data.DataSetExtensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Data.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Contracts.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Debug.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.DiagnosticSource.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.EventLog.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.FileVersionInfo.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Process.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.StackTrace.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.TextWriterTraceListener.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Tools.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.TraceSource.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Diagnostics.Tracing.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Drawing.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Drawing.Primitives.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Dynamic.Runtime.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Formats.Asn1.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Formats.Cbor.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Formats.Tar.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Globalization.Calendars.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Globalization.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Globalization.Extensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.Brotli.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.FileSystem.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.Compression.ZipFile.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.AccessControl.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.DriveInfo.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.Primitives.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.FileSystem.Watcher.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.IsolatedStorage.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.MemoryMappedFiles.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.Pipelines.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.Pipes.AccessControl.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.Pipes.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.IO.UnmanagedMemoryStream.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Linq.AsyncEnumerable.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Linq.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Linq.Expressions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Linq.Parallel.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Linq.Queryable.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Memory.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Http.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Http.Json.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.HttpListener.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Mail.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.NameResolution.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.NetworkInformation.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Ping.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Primitives.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Quic.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Requests.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Security.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.ServerSentEvents.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.ServicePoint.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.Sockets.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.WebClient.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.WebHeaderCollection.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.WebProxy.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.WebSockets.Client.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Net.WebSockets.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Numerics.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Numerics.Vectors.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ObjectModel.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.DispatchProxy.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Emit.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Emit.ILGeneration.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Emit.Lightweight.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Extensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Metadata.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.Primitives.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Reflection.TypeExtensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Resources.Reader.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Resources.ResourceManager.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Resources.Writer.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.Unsafe.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.CompilerServices.VisualC.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Extensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Handles.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.InteropServices.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.InteropServices.JavaScript.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Intrinsics.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Loader.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Numerics.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Formatters.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Json.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Primitives.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Runtime.Serialization.Xml.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.AccessControl.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Claims.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Algorithms.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Cng.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Csp.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Encoding.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.OpenSsl.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Primitives.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.X509Certificates.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Cryptography.Xml.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Principal.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.Principal.Windows.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Security.SecureString.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ServiceModel.Web.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ServiceProcess.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Text.Encoding.CodePages.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Text.Encoding.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Text.Encoding.Extensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Text.Encodings.Web.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Text.Json.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Text.RegularExpressions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.AccessControl.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.Channels.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.Overlapped.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.RateLimiting.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.Dataflow.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.Extensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.Tasks.Parallel.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.Thread.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.ThreadPool.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Threading.Timer.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Transactions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Transactions.Local.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.ValueTuple.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Web.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Web.HttpUtility.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Windows.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.Linq.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.ReaderWriter.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.Serialization.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.XDocument.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.XmlDocument.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.XmlSerializer.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.XPath.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/System.Xml.XPath.XDocument.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/refs/WindowsBase.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Bogus.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Castle.Core.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/FluentEmail.Core.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/FluentEmail.Razor.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/FluentEmail.Smtp.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Humanizer.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.OpenApi.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.AspNetCore.Razor.Language.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.Build.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.Build.Framework.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.Build.Tasks.Core.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.Build.Utilities.Core.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.Razor.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Design.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Proxies.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.EntityFrameworkCore.Relational.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.Extensions.DependencyModel.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Abstractions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.JsonWebTokens.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Logging.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.IdentityModel.Tokens.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.NET.StringTools.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Microsoft.OpenApi.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Mono.TextTemplating.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Newtonsoft.Json.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Npgsql.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/RazorLight.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Scalar.AspNetCore.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.CodeDom.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Composition.AttributedModel.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Composition.Convention.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Composition.Hosting.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Composition.Runtime.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Composition.TypedParts.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Configuration.ConfigurationManager.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Formats.Nrbf.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.IdentityModel.Tokens.Jwt.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Reflection.MetadataLoadContext.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Resources.Extensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Security.Cryptography.ProtectedData.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Security.Permissions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/System.Windows.Extensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/runtimes/win/lib/net9.0/System.Windows.Extensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.Contracts.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.Core.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.Domain.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Generic.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.Contracts.pdb +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.Core.pdb +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Auth.Domain.pdb +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net10.0/Generic.pdb +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.csproj.AssemblyReference.cache +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/rpswa.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.GeneratedMSBuildEditorConfig.editorconfig +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.AssemblyInfoInputs.cache +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.AssemblyInfo.cs +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.csproj.CoreCompileInputs.cache +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.MvcApplicationPartsAssemblyInfo.cs +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.MvcApplicationPartsAssemblyInfo.cache +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/rjimswa.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/rjsmrazor.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/scopedcss/bundle/Auth.API.styles.css +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/staticwebassets.build.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/staticwebassets.build.json.cache +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/staticwebassets.development.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/staticwebassets.build.endpoints.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/swae.build.ex.cache +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.csproj.Up2Date +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/refint/Auth.API.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.pdb +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/Auth.API.genruntimeconfig.cache +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net10.0/ref/Auth.API.dll diff --git a/Auth.API/obj/Debug/net10.0/Auth.API.csproj.Up2Date b/Auth.API/obj/Debug/net10.0/Auth.API.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/Auth.API/obj/Debug/net10.0/Auth.API.dll b/Auth.API/obj/Debug/net10.0/Auth.API.dll new file mode 100644 index 0000000..a69f5f2 Binary files /dev/null and b/Auth.API/obj/Debug/net10.0/Auth.API.dll differ diff --git a/Auth.API/obj/Debug/net10.0/Auth.API.genruntimeconfig.cache b/Auth.API/obj/Debug/net10.0/Auth.API.genruntimeconfig.cache new file mode 100644 index 0000000..ad64141 --- /dev/null +++ b/Auth.API/obj/Debug/net10.0/Auth.API.genruntimeconfig.cache @@ -0,0 +1 @@ +7f04680d48da295b0030a1b38d6ea6869c8c5bf93e6886574ad7a61c86822495 diff --git a/Auth.API/obj/Debug/net10.0/Auth.API.pdb b/Auth.API/obj/Debug/net10.0/Auth.API.pdb new file mode 100644 index 0000000..0e1de4b Binary files /dev/null and b/Auth.API/obj/Debug/net10.0/Auth.API.pdb differ diff --git a/Auth.API/obj/Debug/net10.0/apphost b/Auth.API/obj/Debug/net10.0/apphost new file mode 100755 index 0000000..9ec3625 Binary files /dev/null and b/Auth.API/obj/Debug/net10.0/apphost differ diff --git a/Auth.API/obj/Debug/net10.0/ref/Auth.API.dll b/Auth.API/obj/Debug/net10.0/ref/Auth.API.dll new file mode 100644 index 0000000..8a21e89 Binary files /dev/null and b/Auth.API/obj/Debug/net10.0/ref/Auth.API.dll differ diff --git a/Auth.API/obj/Debug/net10.0/refint/Auth.API.dll b/Auth.API/obj/Debug/net10.0/refint/Auth.API.dll new file mode 100644 index 0000000..8a21e89 Binary files /dev/null and b/Auth.API/obj/Debug/net10.0/refint/Auth.API.dll differ diff --git a/Auth.API/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json b/Auth.API/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..073a165 --- /dev/null +++ b/Auth.API/obj/Debug/net10.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"Et6g4YkwuKpOx2B+JbQgcch6Xuy/SsO8JebdwGSO2II=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Yvn52c0lXemJH8VTorqk9YAkRkyVSvR/G7d8YNjqBWs=","sGH8e1qAU1fIlxAY0g60y/8tsHfpjWgF4UVjWOjEcgY=","Yn40rQmUSdr5v7Rb5yS/56saeLvsrcQ\u002Bz7lJk16Zbfo=","5l6zTeHDPgoA77sRih8leIxZ9avhkjvWXXYOkNqhCF0=","OOPmN433XrYT/RXbER3qan\u002B9zZKvchdU5ULD/Xdzxhk=","0AE5GADq5wvf7oVQrW7A9sLGFTn6wfr1i6eDkrcwLi4=","I/hfmIrTI6jmtZs0e0q\u002BHu\u002B849acj1eJioyh4wtEErk=","1Ytedv8G\u002BnyLsAgKBrZ//tSveeYcwMt\u002BY63iRXpvgO0=","WLJ6z7ZhNDd11ZUzMefFOFVX6LwNNR1K0Iwowp2rNqI=","0\u002BJ5gdt97nZ3M669F9TRIoSGKJV3rGJd5h0fR9AbV3c=","lD6XSkHJom3ge51cxV2Mk5BGbKgbEoLZnS01x4T7BSg=","PEHRCzJotlxVft35A4Jpp8j4cpOi9FEP6woPs7TNkr0=","Fz8yBg\u002B/hVQZsibAHtYMap6O0K/kQPLNrHLUGyqDa78=","NJUkYb3AdVYsZ3zxFe7P66AQAF\u002B86bOppudUWOLTa8k=","7x7ZmhZnjzqOh3BsQSO\u002BS8BCZuV7m933ItNslM4Z3oQ=","NBshK00QaBYCwxkoBl0fBjenk2bhOYu/dKBGrDIL478=","zVqQU/osV8BDEkGPhzmn7HWbcBrkhycLGgBl03bOzBI=","mUN358giVz7YLV4yhqx4UDL8VMPN\u002BPTzmp8MEmiEFHs=","R8GkfHMUuMoz3i0zlbn9pKrrgD1dB4cwbnAJxyYia5U=","K/9QJwTJUpQCUvnvP6vOdr6yCxmnbOYr6uyrlIWxaPI=","s090d78pjJ04vZkVk5LxgEEsfxfiCB5YXSO\u002BQzqUz9o=","/KXWiBpG9tymwpXB2iv38GOyEwxfNRE0AbWE14ZVDAw=","\u002BU/U01THuY4a5FjlaG8PL\u002BZ70V/0/yRwjb0oHl7V7uo=","0vvUTpgu4kcmqR5y6zr5ziuOF2kB5FN5CnRnqEQailA=","dTz50B1b74blGr0\u002BZvzrJJPvuSYZ5\u002B4QmRVYYKnI9Mo=","xgxOnslj0Cfgln/bwBxWEH8pWIOFvWOQTi68eZ1GSRc=","/nCOXQHrAfr55ovkErnR8R\u002BP5J5Dt7tC\u002BZBZSiUUP\u002B4=","Y/pG1MtK0RD8Mydx7wiIiqCu1AO2icaluV7jiQSKjJM=","xDBj06\u002BMDZ7s4rhCb\u002Bq0cIk8l8fkCHf4Z1VDtOF36HY=","/7ThyXaZWH7UbJmk/HAF6hVSvgd2kQ3342Ao02r2u3A=","7CR6Gw0W6LIjMA1lQ9LL\u002BgodxDfx4EAIoujSrWDWZlw=","16KbzfCvjSKAYesoTUKJ1zxD7m5dy509NFq\u002BtE1RahI=","wPVQNnSsZuWXUXQr0daazQK90MW5sn9PETyON4vLIns=","3TXPIC10tZEN0jOBKC0J\u002B0oYmY2C6YnsWJ5\u002B2oWzlbk=","5OBV7jQ4Vr6AnxlH0kFmt6n1V8pSb\u002BnAbg73XmFwLX0=","yVKjlPd31wTJYwwjgAotwcMsxSSQDYnz0qNED70lkDk=","/I4mgjgfnsr184fNdxYePqdchG38mMXTbwHiqNUVkYk=","FLLjnV/zf\u002BBbOAWMJG0ldB4wYr5cMQ92R4dB8fsw98w=","ez1YjEB5bC89Ot6V6Z2YQVLHVWFbQWb\u002BaHkt1pdKeRQ=","kpRIlClH\u002BfCUNOdHgo/Zp7MuUHFWDChC883cCkT18ms=","t\u002BV9DRBnXYWrpwTTKqVQXmFDygkEZwA5b/2OtfQZxxI=","h2I7nZ13b1ApZ78D2MW5/aKBVeuhbdwdHU8xdFR09rw=","ZvnUT9vkhU0kvxGQ89JY\u002Bno6RbpfWJzgtDSQnif4dQY=","WAqFgW5Qvx3LXy9s3lye46ZY0Fj5eWpVBgGCeIbIRfI=","j0qorUPOUDtw7pUmJ7xdzNRJvZrBl5N0lFTJ8aXA4BU=","FaQTSU229hU3vSBTjt/mBYS54SVtBK7/sqgtoRX\u002B9fI=","z0hBxmTmf9BK2O8vmuZ86rf1C1SKEAyVtc\u002Bz9Da0L9U=","csGZ93u2scvnGA1TvfBJHRMrx88YOvBWl5VOvRhN7Q4=","CnvAEf494BD\u002BM4EC5bKEAFM0Nc2GqoySKX0gGe6sOMk=","tv/5X9YOlq5leiFc1xadnacCXLN6LKOWqCfQaeM2yf0=","ZMu5IHDAg\u002BV2cuRRGWUtYrrO45eDxHZ0BiSLsFaffPQ=","//llIP4MS38MCKJ1oEbjXzDkcuz2xNi4v7WYG/YUnFc="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/Auth.API/obj/Debug/net10.0/rjsmrazor.dswa.cache.json b/Auth.API/obj/Debug/net10.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..bc492c5 --- /dev/null +++ b/Auth.API/obj/Debug/net10.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"/xUUNgclO3aLxwmqgyrLSkNmmL63cs/wMdO7UQDuswQ=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Yvn52c0lXemJH8VTorqk9YAkRkyVSvR/G7d8YNjqBWs=","sGH8e1qAU1fIlxAY0g60y/8tsHfpjWgF4UVjWOjEcgY=","Yn40rQmUSdr5v7Rb5yS/56saeLvsrcQ\u002Bz7lJk16Zbfo=","5l6zTeHDPgoA77sRih8leIxZ9avhkjvWXXYOkNqhCF0=","OOPmN433XrYT/RXbER3qan\u002B9zZKvchdU5ULD/Xdzxhk=","0AE5GADq5wvf7oVQrW7A9sLGFTn6wfr1i6eDkrcwLi4=","I/hfmIrTI6jmtZs0e0q\u002BHu\u002B849acj1eJioyh4wtEErk=","1Ytedv8G\u002BnyLsAgKBrZ//tSveeYcwMt\u002BY63iRXpvgO0=","WLJ6z7ZhNDd11ZUzMefFOFVX6LwNNR1K0Iwowp2rNqI=","0\u002BJ5gdt97nZ3M669F9TRIoSGKJV3rGJd5h0fR9AbV3c=","lD6XSkHJom3ge51cxV2Mk5BGbKgbEoLZnS01x4T7BSg=","PEHRCzJotlxVft35A4Jpp8j4cpOi9FEP6woPs7TNkr0=","Fz8yBg\u002B/hVQZsibAHtYMap6O0K/kQPLNrHLUGyqDa78=","NJUkYb3AdVYsZ3zxFe7P66AQAF\u002B86bOppudUWOLTa8k=","7x7ZmhZnjzqOh3BsQSO\u002BS8BCZuV7m933ItNslM4Z3oQ=","NBshK00QaBYCwxkoBl0fBjenk2bhOYu/dKBGrDIL478=","zVqQU/osV8BDEkGPhzmn7HWbcBrkhycLGgBl03bOzBI=","mUN358giVz7YLV4yhqx4UDL8VMPN\u002BPTzmp8MEmiEFHs=","R8GkfHMUuMoz3i0zlbn9pKrrgD1dB4cwbnAJxyYia5U=","K/9QJwTJUpQCUvnvP6vOdr6yCxmnbOYr6uyrlIWxaPI=","s090d78pjJ04vZkVk5LxgEEsfxfiCB5YXSO\u002BQzqUz9o=","/KXWiBpG9tymwpXB2iv38GOyEwxfNRE0AbWE14ZVDAw=","\u002BU/U01THuY4a5FjlaG8PL\u002BZ70V/0/yRwjb0oHl7V7uo=","0vvUTpgu4kcmqR5y6zr5ziuOF2kB5FN5CnRnqEQailA=","dTz50B1b74blGr0\u002BZvzrJJPvuSYZ5\u002B4QmRVYYKnI9Mo=","xgxOnslj0Cfgln/bwBxWEH8pWIOFvWOQTi68eZ1GSRc=","/nCOXQHrAfr55ovkErnR8R\u002BP5J5Dt7tC\u002BZBZSiUUP\u002B4=","Y/pG1MtK0RD8Mydx7wiIiqCu1AO2icaluV7jiQSKjJM=","xDBj06\u002BMDZ7s4rhCb\u002Bq0cIk8l8fkCHf4Z1VDtOF36HY=","/7ThyXaZWH7UbJmk/HAF6hVSvgd2kQ3342Ao02r2u3A=","7CR6Gw0W6LIjMA1lQ9LL\u002BgodxDfx4EAIoujSrWDWZlw=","16KbzfCvjSKAYesoTUKJ1zxD7m5dy509NFq\u002BtE1RahI=","wPVQNnSsZuWXUXQr0daazQK90MW5sn9PETyON4vLIns=","3TXPIC10tZEN0jOBKC0J\u002B0oYmY2C6YnsWJ5\u002B2oWzlbk=","5OBV7jQ4Vr6AnxlH0kFmt6n1V8pSb\u002BnAbg73XmFwLX0=","yVKjlPd31wTJYwwjgAotwcMsxSSQDYnz0qNED70lkDk=","/I4mgjgfnsr184fNdxYePqdchG38mMXTbwHiqNUVkYk=","FLLjnV/zf\u002BBbOAWMJG0ldB4wYr5cMQ92R4dB8fsw98w=","ez1YjEB5bC89Ot6V6Z2YQVLHVWFbQWb\u002BaHkt1pdKeRQ=","kpRIlClH\u002BfCUNOdHgo/Zp7MuUHFWDChC883cCkT18ms=","t\u002BV9DRBnXYWrpwTTKqVQXmFDygkEZwA5b/2OtfQZxxI=","h2I7nZ13b1ApZ78D2MW5/aKBVeuhbdwdHU8xdFR09rw=","ZvnUT9vkhU0kvxGQ89JY\u002Bno6RbpfWJzgtDSQnif4dQY=","WAqFgW5Qvx3LXy9s3lye46ZY0Fj5eWpVBgGCeIbIRfI=","j0qorUPOUDtw7pUmJ7xdzNRJvZrBl5N0lFTJ8aXA4BU=","FaQTSU229hU3vSBTjt/mBYS54SVtBK7/sqgtoRX\u002B9fI=","z0hBxmTmf9BK2O8vmuZ86rf1C1SKEAyVtc\u002Bz9Da0L9U=","csGZ93u2scvnGA1TvfBJHRMrx88YOvBWl5VOvRhN7Q4=","CnvAEf494BD\u002BM4EC5bKEAFM0Nc2GqoySKX0gGe6sOMk=","tv/5X9YOlq5leiFc1xadnacCXLN6LKOWqCfQaeM2yf0=","ZMu5IHDAg\u002BV2cuRRGWUtYrrO45eDxHZ0BiSLsFaffPQ=","//llIP4MS38MCKJ1oEbjXzDkcuz2xNi4v7WYG/YUnFc="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/Auth.API/obj/Debug/net10.0/rpswa.dswa.cache.json b/Auth.API/obj/Debug/net10.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..0ae5b42 --- /dev/null +++ b/Auth.API/obj/Debug/net10.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"dqzpAe7YKjviKiuDLyVERDm4kYSGu+w2kvCH/6jtj2Q=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["Yvn52c0lXemJH8VTorqk9YAkRkyVSvR/G7d8YNjqBWs=","sGH8e1qAU1fIlxAY0g60y/8tsHfpjWgF4UVjWOjEcgY=","Yn40rQmUSdr5v7Rb5yS/56saeLvsrcQ\u002Bz7lJk16Zbfo=","5l6zTeHDPgoA77sRih8leIxZ9avhkjvWXXYOkNqhCF0=","OOPmN433XrYT/RXbER3qan\u002B9zZKvchdU5ULD/Xdzxhk=","0AE5GADq5wvf7oVQrW7A9sLGFTn6wfr1i6eDkrcwLi4=","I/hfmIrTI6jmtZs0e0q\u002BHu\u002B849acj1eJioyh4wtEErk=","1Ytedv8G\u002BnyLsAgKBrZ//tSveeYcwMt\u002BY63iRXpvgO0=","WLJ6z7ZhNDd11ZUzMefFOFVX6LwNNR1K0Iwowp2rNqI=","0\u002BJ5gdt97nZ3M669F9TRIoSGKJV3rGJd5h0fR9AbV3c=","lD6XSkHJom3ge51cxV2Mk5BGbKgbEoLZnS01x4T7BSg=","PEHRCzJotlxVft35A4Jpp8j4cpOi9FEP6woPs7TNkr0=","Fz8yBg\u002B/hVQZsibAHtYMap6O0K/kQPLNrHLUGyqDa78=","NJUkYb3AdVYsZ3zxFe7P66AQAF\u002B86bOppudUWOLTa8k=","7x7ZmhZnjzqOh3BsQSO\u002BS8BCZuV7m933ItNslM4Z3oQ=","NBshK00QaBYCwxkoBl0fBjenk2bhOYu/dKBGrDIL478=","zVqQU/osV8BDEkGPhzmn7HWbcBrkhycLGgBl03bOzBI=","mUN358giVz7YLV4yhqx4UDL8VMPN\u002BPTzmp8MEmiEFHs=","R8GkfHMUuMoz3i0zlbn9pKrrgD1dB4cwbnAJxyYia5U=","K/9QJwTJUpQCUvnvP6vOdr6yCxmnbOYr6uyrlIWxaPI=","s090d78pjJ04vZkVk5LxgEEsfxfiCB5YXSO\u002BQzqUz9o=","/KXWiBpG9tymwpXB2iv38GOyEwxfNRE0AbWE14ZVDAw=","\u002BU/U01THuY4a5FjlaG8PL\u002BZ70V/0/yRwjb0oHl7V7uo=","0vvUTpgu4kcmqR5y6zr5ziuOF2kB5FN5CnRnqEQailA=","dTz50B1b74blGr0\u002BZvzrJJPvuSYZ5\u002B4QmRVYYKnI9Mo=","xgxOnslj0Cfgln/bwBxWEH8pWIOFvWOQTi68eZ1GSRc=","/nCOXQHrAfr55ovkErnR8R\u002BP5J5Dt7tC\u002BZBZSiUUP\u002B4=","Y/pG1MtK0RD8Mydx7wiIiqCu1AO2icaluV7jiQSKjJM=","xDBj06\u002BMDZ7s4rhCb\u002Bq0cIk8l8fkCHf4Z1VDtOF36HY=","/7ThyXaZWH7UbJmk/HAF6hVSvgd2kQ3342Ao02r2u3A=","7CR6Gw0W6LIjMA1lQ9LL\u002BgodxDfx4EAIoujSrWDWZlw=","16KbzfCvjSKAYesoTUKJ1zxD7m5dy509NFq\u002BtE1RahI=","wPVQNnSsZuWXUXQr0daazQK90MW5sn9PETyON4vLIns=","3TXPIC10tZEN0jOBKC0J\u002B0oYmY2C6YnsWJ5\u002B2oWzlbk=","5OBV7jQ4Vr6AnxlH0kFmt6n1V8pSb\u002BnAbg73XmFwLX0=","yVKjlPd31wTJYwwjgAotwcMsxSSQDYnz0qNED70lkDk=","/I4mgjgfnsr184fNdxYePqdchG38mMXTbwHiqNUVkYk=","FLLjnV/zf\u002BBbOAWMJG0ldB4wYr5cMQ92R4dB8fsw98w=","ez1YjEB5bC89Ot6V6Z2YQVLHVWFbQWb\u002BaHkt1pdKeRQ=","kpRIlClH\u002BfCUNOdHgo/Zp7MuUHFWDChC883cCkT18ms=","t\u002BV9DRBnXYWrpwTTKqVQXmFDygkEZwA5b/2OtfQZxxI=","h2I7nZ13b1ApZ78D2MW5/aKBVeuhbdwdHU8xdFR09rw=","ZvnUT9vkhU0kvxGQ89JY\u002Bno6RbpfWJzgtDSQnif4dQY=","WAqFgW5Qvx3LXy9s3lye46ZY0Fj5eWpVBgGCeIbIRfI=","j0qorUPOUDtw7pUmJ7xdzNRJvZrBl5N0lFTJ8aXA4BU=","FaQTSU229hU3vSBTjt/mBYS54SVtBK7/sqgtoRX\u002B9fI=","z0hBxmTmf9BK2O8vmuZ86rf1C1SKEAyVtc\u002Bz9Da0L9U=","csGZ93u2scvnGA1TvfBJHRMrx88YOvBWl5VOvRhN7Q4="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/Auth.API/obj/Debug/net10.0/staticwebassets.build.endpoints.json b/Auth.API/obj/Debug/net10.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/Auth.API/obj/Debug/net10.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/Auth.API/obj/Debug/net10.0/staticwebassets.build.json b/Auth.API/obj/Debug/net10.0/staticwebassets.build.json new file mode 100644 index 0000000..0c319cd --- /dev/null +++ b/Auth.API/obj/Debug/net10.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"aq0GT43LsAYAYU5WyphA+ZLOMYLeuvz3nHlyPBBSN28=","Source":"Auth.API","BasePath":"/","Mode":"Root","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[{"Name":"Auth.API/wwwroot","Source":"Auth.API","ContentRoot":"/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/wwwroot/","BasePath":"/","Pattern":"**"}],"Assets":[],"Endpoints":[]} \ No newline at end of file diff --git a/Auth.API/obj/Debug/net10.0/staticwebassets.build.json.cache b/Auth.API/obj/Debug/net10.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..2afac19 --- /dev/null +++ b/Auth.API/obj/Debug/net10.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +aq0GT43LsAYAYU5WyphA+ZLOMYLeuvz3nHlyPBBSN28= \ No newline at end of file diff --git a/Auth.API/obj/Debug/net10.0/staticwebassets.development.json b/Auth.API/obj/Debug/net10.0/staticwebassets.development.json new file mode 100644 index 0000000..1c104fa --- /dev/null +++ b/Auth.API/obj/Debug/net10.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/wwwroot/"],"Root":{"Children":null,"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/Auth.API/obj/Debug/net10.0/swae.build.ex.cache b/Auth.API/obj/Debug/net10.0/swae.build.ex.cache new file mode 100644 index 0000000..e69de29 diff --git a/Auth.API/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/Auth.API/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..9e76325 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/Auth.API/obj/Debug/net9.0/API.AssemblyInfo.cs b/Auth.API/obj/Debug/net9.0/API.AssemblyInfo.cs new file mode 100644 index 0000000..96fa5c2 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/API.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("API")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+89d8c7f2868cdc25655d2a003c6dc8ab9e106e46")] +[assembly: System.Reflection.AssemblyProductAttribute("API")] +[assembly: System.Reflection.AssemblyTitleAttribute("API")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.API/obj/Debug/net9.0/API.AssemblyInfoInputs.cache b/Auth.API/obj/Debug/net9.0/API.AssemblyInfoInputs.cache new file mode 100644 index 0000000..20ea4ce --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/API.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +96de8f3033e2b8b02105e7fecc17382d57971eeeaf6a9f7cd47cdcc115046a4e diff --git a/Auth.API/obj/Debug/net9.0/API.GeneratedMSBuildEditorConfig.editorconfig b/Auth.API/obj/Debug/net9.0/API.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..8651488 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/API.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,29 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetFramework = net9.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 = API +build_property.RootNamespace = API +build_property.ProjectDir = /mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/Auth.API/obj/Debug/net9.0/API.GlobalUsings.g.cs b/Auth.API/obj/Debug/net9.0/API.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/API.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/Auth.API/obj/Debug/net9.0/API.MvcApplicationPartsAssemblyInfo.cache b/Auth.API/obj/Debug/net9.0/API.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/Auth.API/obj/Debug/net9.0/API.MvcApplicationPartsAssemblyInfo.cs b/Auth.API/obj/Debug/net9.0/API.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..7a8df11 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/API.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.API/obj/Debug/net9.0/API.assets.cache b/Auth.API/obj/Debug/net9.0/API.assets.cache new file mode 100644 index 0000000..d1e0366 Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/API.assets.cache differ diff --git a/Auth.API/obj/Debug/net9.0/API.csproj.AssemblyReference.cache b/Auth.API/obj/Debug/net9.0/API.csproj.AssemblyReference.cache new file mode 100644 index 0000000..4199e5f Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/API.csproj.AssemblyReference.cache differ diff --git a/Auth.API/obj/Debug/net9.0/API.csproj.CoreCompileInputs.cache b/Auth.API/obj/Debug/net9.0/API.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..3ce48ab --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/API.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +44950558b57ce9472643af46f430cff7ca209e06d23e24c14eecf43c077745ea diff --git a/Auth.API/obj/Debug/net9.0/API.csproj.FileListAbsolute.txt b/Auth.API/obj/Debug/net9.0/API.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..9ad76a7 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/API.csproj.FileListAbsolute.txt @@ -0,0 +1,823 @@ +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/appsettings.Development.json +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/appsettings.json +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.staticwebassets.runtime.json +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.staticwebassets.endpoints.json +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.deps.json +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.runtimeconfig.json +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.pdb +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Bogus.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Castle.Core.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/FluentEmail.Core.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/FluentEmail.Razor.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/FluentEmail.Smtp.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Humanizer.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Razor.Language.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Build.Locator.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Razor.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Proxies.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Core.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Stores.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Options.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.OpenApi.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Mono.TextTemplating.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Npgsql.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/RazorLight.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.CodeDom.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.AttributedModel.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.Convention.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.Hosting.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.Runtime.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.TypedParts.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Core.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Core.pdb +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.csproj.AssemblyReference.cache +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.AssemblyInfoInputs.cache +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.AssemblyInfo.cs +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.MvcApplicationPartsAssemblyInfo.cs +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.MvcApplicationPartsAssemblyInfo.cache +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/scopedcss/bundle/API.styles.css +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.build.json +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.development.json +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets/msbuild.API.Microsoft.AspNetCore.StaticWebAssets.props +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets/msbuild.API.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets/msbuild.build.API.props +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.API.props +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.API.props +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.pack.json +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.csproj.Up2Date +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/refint/API.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.pdb +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.genruntimeconfig.cache +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/ref/API.dll +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.dll +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/refint/API.dll +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.pdb +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/rpswa.dswa.cache.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.csproj.AssemblyReference.cache +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/rpswa.dswa.cache.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.AssemblyInfoInputs.cache +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.AssemblyInfo.cs +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.MvcApplicationPartsAssemblyInfo.cs +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.MvcApplicationPartsAssemblyInfo.cache +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/refint/API.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.csproj.AssemblyReference.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/rpswa.dswa.cache.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.AssemblyInfo.cs +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.MvcApplicationPartsAssemblyInfo.cs +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.MvcApplicationPartsAssemblyInfo.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/refint/API.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/appsettings.Development.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/appsettings.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.staticwebassets.runtime.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.staticwebassets.endpoints.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.deps.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.runtimeconfig.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Bogus.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Castle.Core.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/FluentEmail.Core.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/FluentEmail.Razor.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/FluentEmail.Smtp.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Humanizer.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Razor.Language.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Build.Locator.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Razor.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Proxies.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Core.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Stores.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Options.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.OpenApi.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Mono.TextTemplating.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Npgsql.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/RazorLight.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.CodeDom.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.AttributedModel.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.Convention.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.Hosting.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.Runtime.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.TypedParts.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Core.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Generic.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Core.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Generic.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/rjimswa.dswa.cache.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/scopedcss/bundle/API.styles.css +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.build.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.build.json.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.development.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.csproj.Up2Date +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.genruntimeconfig.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/ref/API.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/appsettings.Development.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/appsettings.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.staticwebassets.endpoints.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.staticwebassets.runtime.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.deps.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.runtimeconfig.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.pdb +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Bogus.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Castle.Core.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/FluentEmail.Core.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/FluentEmail.Razor.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/FluentEmail.Smtp.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Humanizer.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Razor.Language.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Build.Locator.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Razor.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Proxies.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Core.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Stores.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Options.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.OpenApi.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Mono.TextTemplating.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Npgsql.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/RazorLight.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.CodeDom.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.AttributedModel.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.Convention.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.Hosting.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.Runtime.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.TypedParts.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Core.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Generic.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Core.pdb +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Generic.pdb +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/rjimswa.dswa.cache.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/scopedcss/bundle/API.styles.css +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.build.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.build.json.cache +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.development.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.csproj.Up2Date +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.genruntimeconfig.cache +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/ref/API.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/appsettings.Development.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/appsettings.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.staticwebassets.endpoints.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.staticwebassets.runtime.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.deps.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.runtimeconfig.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Bogus.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Castle.Core.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/FluentEmail.Core.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/FluentEmail.Razor.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/FluentEmail.Smtp.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Humanizer.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Razor.Language.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Build.Locator.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Razor.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Proxies.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Core.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Stores.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Options.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.OpenApi.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Mono.TextTemplating.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Npgsql.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/RazorLight.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.CodeDom.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.AttributedModel.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.Convention.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.Hosting.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.Runtime.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.TypedParts.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Core.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Generic.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Core.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Generic.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.csproj.AssemblyReference.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/rpswa.dswa.cache.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.AssemblyInfoInputs.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.AssemblyInfo.cs +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.MvcApplicationPartsAssemblyInfo.cs +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.MvcApplicationPartsAssemblyInfo.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/rjimswa.dswa.cache.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/scopedcss/bundle/API.styles.css +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.build.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.build.json.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.development.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.csproj.Up2Date +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/refint/API.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.genruntimeconfig.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/ref/API.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/appsettings.Development.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/appsettings.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.staticwebassets.endpoints.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.staticwebassets.runtime.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.deps.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.runtimeconfig.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/API.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Bogus.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Castle.Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/FluentEmail.Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/FluentEmail.Razor.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/FluentEmail.Smtp.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Humanizer.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.AspNetCore.Razor.Language.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Build.Locator.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Razor.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Proxies.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Stores.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Options.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Microsoft.OpenApi.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Mono.TextTemplating.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Npgsql.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/RazorLight.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.CodeDom.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.AttributedModel.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.Convention.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.Hosting.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.Runtime.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.Composition.TypedParts.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Contracts.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Domain.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Generic.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Contracts.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Core.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Domain.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/bin/Debug/net9.0/Generic.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/rpswa.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.MvcApplicationPartsAssemblyInfo.cs +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.MvcApplicationPartsAssemblyInfo.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/rjimswa.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/scopedcss/bundle/API.styles.css +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.build.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.build.json.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.development.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.csproj.Up2Date +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/refint/API.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/API.genruntimeconfig.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/API/obj/Debug/net9.0/ref/API.dll diff --git a/Auth.API/obj/Debug/net9.0/API.csproj.Up2Date b/Auth.API/obj/Debug/net9.0/API.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/Auth.API/obj/Debug/net9.0/API.dll b/Auth.API/obj/Debug/net9.0/API.dll new file mode 100644 index 0000000..dbd848a Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/API.dll differ diff --git a/Auth.API/obj/Debug/net9.0/API.genruntimeconfig.cache b/Auth.API/obj/Debug/net9.0/API.genruntimeconfig.cache new file mode 100644 index 0000000..ba8d939 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/API.genruntimeconfig.cache @@ -0,0 +1 @@ +4350bd2d2308136c67831529a4560b759c35ee77cfa1303fb811cd085f7209e9 diff --git a/Auth.API/obj/Debug/net9.0/API.pdb b/Auth.API/obj/Debug/net9.0/API.pdb new file mode 100644 index 0000000..26d20d8 Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/API.pdb differ diff --git a/Auth.API/obj/Debug/net9.0/Auth.API.AssemblyInfo.cs b/Auth.API/obj/Debug/net9.0/Auth.API.AssemblyInfo.cs new file mode 100644 index 0000000..70b60a1 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/Auth.API.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Auth.API")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Auth.API")] +[assembly: System.Reflection.AssemblyTitleAttribute("Auth.API")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.API/obj/Debug/net9.0/Auth.API.AssemblyInfoInputs.cache b/Auth.API/obj/Debug/net9.0/Auth.API.AssemblyInfoInputs.cache new file mode 100644 index 0000000..934e00c --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/Auth.API.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +0f2fe14b249df792a45cfa3967987c0a5224a9e0e2e81cb1935064f0ce7cd29e diff --git a/Auth.API/obj/Debug/net9.0/Auth.API.GeneratedMSBuildEditorConfig.editorconfig b/Auth.API/obj/Debug/net9.0/Auth.API.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..4a79dba --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/Auth.API.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,29 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetFramework = net9.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 = Auth.API +build_property.RootNamespace = Auth.API +build_property.ProjectDir = /mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/Auth.API/obj/Debug/net9.0/Auth.API.GlobalUsings.g.cs b/Auth.API/obj/Debug/net9.0/Auth.API.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/Auth.API.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/Auth.API/obj/Debug/net9.0/Auth.API.MvcApplicationPartsAssemblyInfo.cache b/Auth.API/obj/Debug/net9.0/Auth.API.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/Auth.API/obj/Debug/net9.0/Auth.API.MvcApplicationPartsAssemblyInfo.cs b/Auth.API/obj/Debug/net9.0/Auth.API.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..7a8df11 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/Auth.API.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.API/obj/Debug/net9.0/Auth.API.assets.cache b/Auth.API/obj/Debug/net9.0/Auth.API.assets.cache new file mode 100644 index 0000000..2a440ae Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/Auth.API.assets.cache differ diff --git a/Auth.API/obj/Debug/net9.0/Auth.API.csproj.AssemblyReference.cache b/Auth.API/obj/Debug/net9.0/Auth.API.csproj.AssemblyReference.cache new file mode 100644 index 0000000..ed19aff Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/Auth.API.csproj.AssemblyReference.cache differ diff --git a/Auth.API/obj/Debug/net9.0/Auth.API.csproj.CoreCompileInputs.cache b/Auth.API/obj/Debug/net9.0/Auth.API.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..00461b0 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/Auth.API.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +66f33bea55f2124bce4f5a271295665293803b306ecf915cb34610de3647951e diff --git a/Auth.API/obj/Debug/net9.0/Auth.API.csproj.FileListAbsolute.txt b/Auth.API/obj/Debug/net9.0/Auth.API.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..65df032 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/Auth.API.csproj.FileListAbsolute.txt @@ -0,0 +1,932 @@ +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/appsettings.Development.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/appsettings.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.API.staticwebassets.runtime.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.API.staticwebassets.endpoints.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.API +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.API.deps.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.API.runtimeconfig.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.API.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.API.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Bogus.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Castle.Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/FluentEmail.Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/FluentEmail.Razor.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/FluentEmail.Smtp.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Humanizer.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Razor.Language.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Build.Locator.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Razor.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Proxies.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Stores.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Options.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.OpenApi.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Mono.TextTemplating.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Npgsql.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/RazorLight.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/System.CodeDom.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/System.Composition.AttributedModel.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/System.Composition.Convention.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/System.Composition.Hosting.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/System.Composition.Runtime.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/System.Composition.TypedParts.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.Domain.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Generic.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.Contracts.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.Core.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.Domain.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Generic.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/rpswa.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.MvcApplicationPartsAssemblyInfo.cs +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.MvcApplicationPartsAssemblyInfo.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/rjimswa.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/scopedcss/bundle/Auth.API.styles.css +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/staticwebassets.build.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/staticwebassets.build.json.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/staticwebassets.development.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.csproj.Up2Date +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/refint/Auth.API.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.genruntimeconfig.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/ref/Auth.API.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Antiforgery.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Authorization.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Forms.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Server.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Web.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.CookiePolicy.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cors.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HostFiltering.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Extensions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Features.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Results.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpLogging.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpOverrides.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Identity.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.Routing.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Metadata.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.OutputCaching.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RateLimiting.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RequestDecompression.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCompression.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Rewrite.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IIS.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Session.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Common.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticAssets.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticFiles.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebSockets.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebUtilities.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.CSharp.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Memory.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Binder.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Ini.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Json.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Xml.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Features.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Composite.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Physical.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Http.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Stores.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Abstractions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Configuration.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Console.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Debug.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventLog.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventSource.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.TraceSource.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.ObjectPool.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Primitives.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.WebEncoders.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.JSInterop.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Net.Http.Headers.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.VisualBasic.Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.VisualBasic.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Win32.Primitives.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Win32.Registry.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/mscorlib.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/netstandard.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.AppContext.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Buffers.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Collections.Concurrent.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Collections.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Collections.Immutable.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Collections.NonGeneric.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Collections.Specialized.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.Annotations.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.DataAnnotations.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.EventBasedAsync.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.Primitives.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.TypeConverter.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Configuration.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Console.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Data.Common.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Data.DataSetExtensions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Data.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Contracts.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Debug.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.DiagnosticSource.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.EventLog.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.FileVersionInfo.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Process.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.StackTrace.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.TextWriterTraceListener.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Tools.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.TraceSource.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Tracing.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Drawing.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Drawing.Primitives.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Dynamic.Runtime.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Formats.Asn1.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Formats.Tar.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Globalization.Calendars.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Globalization.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Globalization.Extensions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.Brotli.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.FileSystem.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.ZipFile.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.AccessControl.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.DriveInfo.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.Primitives.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.Watcher.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.IsolatedStorage.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.MemoryMappedFiles.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.Pipes.AccessControl.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.Pipes.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.UnmanagedMemoryStream.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Linq.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Linq.Expressions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Linq.Parallel.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Linq.Queryable.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Memory.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Http.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Http.Json.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.HttpListener.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Mail.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.NameResolution.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.NetworkInformation.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Ping.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Primitives.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Quic.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Requests.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Security.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.ServicePoint.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Sockets.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.WebClient.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.WebHeaderCollection.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.WebProxy.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.WebSockets.Client.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.WebSockets.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Numerics.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Numerics.Vectors.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ObjectModel.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.DispatchProxy.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Emit.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Emit.ILGeneration.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Emit.Lightweight.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Extensions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Metadata.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Primitives.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.TypeExtensions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Resources.Reader.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Resources.ResourceManager.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Resources.Writer.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.Unsafe.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.VisualC.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Extensions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Handles.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.InteropServices.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.InteropServices.JavaScript.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Intrinsics.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Loader.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Numerics.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Formatters.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Json.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Primitives.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Xml.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.AccessControl.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Claims.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Algorithms.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Cng.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Csp.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Encoding.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.OpenSsl.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Primitives.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.X509Certificates.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Xml.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Principal.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Principal.Windows.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.SecureString.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ServiceModel.Web.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ServiceProcess.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Text.Encoding.CodePages.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Text.Encoding.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Text.Encoding.Extensions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Text.RegularExpressions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.Channels.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.Overlapped.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.RateLimiting.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.Dataflow.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.Extensions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.Parallel.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.Thread.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.ThreadPool.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.Timer.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Transactions.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Transactions.Local.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ValueTuple.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Web.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Web.HttpUtility.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Windows.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.Linq.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.ReaderWriter.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.Serialization.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.XDocument.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.XmlDocument.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.XmlSerializer.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.XPath.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.XPath.XDocument.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/WindowsBase.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.Pipelines.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Text.Encodings.Web.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Text.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/appsettings.Development.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/appsettings.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.API.staticwebassets.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.API.staticwebassets.runtime.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.API +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.API.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.API.runtimeconfig.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.API.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.API.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Antiforgery.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.BearerToken.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Cookies.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authentication.OAuth.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Authorization.Policy.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Authorization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Endpoints.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Forms.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Server.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Components.Web.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Connections.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.CookiePolicy.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cors.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.Internal.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.DataProtection.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HostFiltering.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Html.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Connections.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Features.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Http.Results.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpLogging.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpOverrides.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.HttpsPolicy.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Identity.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Localization.Routing.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Metadata.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ApiExplorer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Cors.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.DataAnnotations.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Localization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.Razor.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.RazorPages.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.TagHelpers.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Mvc.ViewFeatures.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.OutputCaching.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RateLimiting.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Razor.Runtime.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.RequestDecompression.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCaching.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.ResponseCompression.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Rewrite.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Routing.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.HttpSys.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IIS.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.IISIntegration.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.Session.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.SignalR.Protocols.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticAssets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.StaticFiles.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebSockets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.AspNetCore.WebUtilities.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.CSharp.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Caching.Memory.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Binder.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.CommandLine.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.EnvironmentVariables.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.FileExtensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Ini.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.KeyPerFile.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.UserSecrets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Configuration.Xml.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.DependencyInjection.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Diagnostics.HealthChecks.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Features.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Composite.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Embedded.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileProviders.Physical.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.FileSystemGlobbing.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Hosting.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Http.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Identity.Stores.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Localization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Configuration.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Console.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.Debug.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventLog.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.EventSource.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Logging.TraceSource.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.ObjectPool.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.ConfigurationExtensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.DataAnnotations.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Options.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Extensions.WebEncoders.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.JSInterop.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Net.Http.Headers.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.VisualBasic.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.VisualBasic.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Win32.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/Microsoft.Win32.Registry.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/mscorlib.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/netstandard.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.AppContext.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Buffers.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Collections.Concurrent.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Collections.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Collections.Immutable.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Collections.NonGeneric.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Collections.Specialized.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.Annotations.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.DataAnnotations.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.EventBasedAsync.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ComponentModel.TypeConverter.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Configuration.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Console.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Data.Common.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Data.DataSetExtensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Data.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Contracts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Debug.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.DiagnosticSource.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.EventLog.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.FileVersionInfo.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Process.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.StackTrace.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.TextWriterTraceListener.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Tools.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.TraceSource.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Diagnostics.Tracing.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Drawing.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Drawing.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Dynamic.Runtime.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Formats.Asn1.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Formats.Tar.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Globalization.Calendars.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Globalization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Globalization.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.Brotli.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.FileSystem.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.Compression.ZipFile.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.AccessControl.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.DriveInfo.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.FileSystem.Watcher.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.IsolatedStorage.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.MemoryMappedFiles.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.Pipelines.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.Pipes.AccessControl.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.Pipes.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.IO.UnmanagedMemoryStream.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Linq.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Linq.Expressions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Linq.Parallel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Linq.Queryable.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Memory.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Http.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Http.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.HttpListener.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Mail.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.NameResolution.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.NetworkInformation.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Ping.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Quic.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Requests.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Security.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.ServicePoint.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.Sockets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.WebClient.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.WebHeaderCollection.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.WebProxy.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.WebSockets.Client.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Net.WebSockets.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Numerics.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Numerics.Vectors.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ObjectModel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.DispatchProxy.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Emit.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Emit.ILGeneration.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Emit.Lightweight.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Metadata.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Reflection.TypeExtensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Resources.Reader.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Resources.ResourceManager.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Resources.Writer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.Unsafe.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.CompilerServices.VisualC.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Handles.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.InteropServices.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.InteropServices.JavaScript.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.InteropServices.RuntimeInformation.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Intrinsics.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Loader.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Numerics.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Formatters.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Runtime.Serialization.Xml.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.AccessControl.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Claims.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Algorithms.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Cng.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Csp.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Encoding.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.OpenSsl.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.X509Certificates.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Cryptography.Xml.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Principal.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.Principal.Windows.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Security.SecureString.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ServiceModel.Web.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ServiceProcess.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Text.Encoding.CodePages.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Text.Encoding.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Text.Encoding.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Text.Encodings.Web.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Text.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Text.RegularExpressions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.Channels.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.Overlapped.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.RateLimiting.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.Dataflow.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.Tasks.Parallel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.Thread.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.ThreadPool.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Threading.Timer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Transactions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Transactions.Local.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.ValueTuple.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Web.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Web.HttpUtility.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Windows.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.Linq.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.ReaderWriter.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.Serialization.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.XDocument.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.XmlDocument.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.XmlSerializer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.XPath.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/System.Xml.XPath.XDocument.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/refs/WindowsBase.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Bogus.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Castle.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/FluentEmail.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/FluentEmail.Razor.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/FluentEmail.Smtp.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Humanizer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.AspNetCore.Razor.Language.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Build.Locator.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Razor.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Proxies.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Stores.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Options.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Microsoft.OpenApi.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Mono.TextTemplating.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Npgsql.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/RazorLight.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/System.CodeDom.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/System.Composition.AttributedModel.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/System.Composition.Convention.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/System.Composition.Hosting.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/System.Composition.Runtime.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/System.Composition.TypedParts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.Domain.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Generic.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.Contracts.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.Core.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Auth.Domain.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/bin/Debug/net9.0/Generic.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/rpswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.MvcApplicationPartsAssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.MvcApplicationPartsAssemblyInfo.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/rjimswa.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/rjsmrazor.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/scopedcss/bundle/Auth.API.styles.css +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/staticwebassets.build.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/staticwebassets.build.json.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/staticwebassets.development.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.csproj.Up2Date +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/refint/Auth.API.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/Auth.API.genruntimeconfig.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/Debug/net9.0/ref/Auth.API.dll diff --git a/Auth.API/obj/Debug/net9.0/Auth.API.csproj.Up2Date b/Auth.API/obj/Debug/net9.0/Auth.API.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/Auth.API/obj/Debug/net9.0/Auth.API.dll b/Auth.API/obj/Debug/net9.0/Auth.API.dll new file mode 100644 index 0000000..9d0577f Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/Auth.API.dll differ diff --git a/Auth.API/obj/Debug/net9.0/Auth.API.genruntimeconfig.cache b/Auth.API/obj/Debug/net9.0/Auth.API.genruntimeconfig.cache new file mode 100644 index 0000000..7956c52 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/Auth.API.genruntimeconfig.cache @@ -0,0 +1 @@ +f43b0ec3b30aab2188088e7c4ad3b1b293492142c62afb1528f56f2c2cebdaad diff --git a/Auth.API/obj/Debug/net9.0/Auth.API.pdb b/Auth.API/obj/Debug/net9.0/Auth.API.pdb new file mode 100644 index 0000000..dbf9d88 Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/Auth.API.pdb differ diff --git a/Auth.API/obj/Debug/net9.0/Auth.AssemblyInfo.cs b/Auth.API/obj/Debug/net9.0/Auth.AssemblyInfo.cs new file mode 100644 index 0000000..b1e8201 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/Auth.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Auth")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+3c8c69b0e2e52eaa7d1449dcc12519885e256513")] +[assembly: System.Reflection.AssemblyProductAttribute("Auth")] +[assembly: System.Reflection.AssemblyTitleAttribute("Auth")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.API/obj/Debug/net9.0/Auth.AssemblyInfoInputs.cache b/Auth.API/obj/Debug/net9.0/Auth.AssemblyInfoInputs.cache new file mode 100644 index 0000000..9a4c8d2 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/Auth.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +8aa217b9874e04a1777c6d6682f4e390d81678311b2cd6e92453bed54babfa9f diff --git a/Auth.API/obj/Debug/net9.0/Auth.GeneratedMSBuildEditorConfig.editorconfig b/Auth.API/obj/Debug/net9.0/Auth.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..e99951b --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/Auth.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,29 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetFramework = net9.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 = Auth +build_property.RootNamespace = Auth +build_property.ProjectDir = /run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/Auth.API/obj/Debug/net9.0/Auth.GlobalUsings.g.cs b/Auth.API/obj/Debug/net9.0/Auth.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/Auth.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/Auth.API/obj/Debug/net9.0/Auth.MvcApplicationPartsAssemblyInfo.cache b/Auth.API/obj/Debug/net9.0/Auth.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/Auth.API/obj/Debug/net9.0/Auth.MvcApplicationPartsAssemblyInfo.cs b/Auth.API/obj/Debug/net9.0/Auth.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..7a8df11 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/Auth.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.API/obj/Debug/net9.0/Auth.assets.cache b/Auth.API/obj/Debug/net9.0/Auth.assets.cache new file mode 100644 index 0000000..1cbf985 Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/Auth.assets.cache differ diff --git a/Auth.API/obj/Debug/net9.0/Auth.csproj.AssemblyReference.cache b/Auth.API/obj/Debug/net9.0/Auth.csproj.AssemblyReference.cache new file mode 100644 index 0000000..8a66dce Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/Auth.csproj.AssemblyReference.cache differ diff --git a/Auth.API/obj/Debug/net9.0/Auth.csproj.CoreCompileInputs.cache b/Auth.API/obj/Debug/net9.0/Auth.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..627363f --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/Auth.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +7ba126d6ab885ecfc917cf11e3d3cf1ce6db6665de2b4efbe77e2dd8c02dc900 diff --git a/Auth.API/obj/Debug/net9.0/Auth.csproj.FileListAbsolute.txt b/Auth.API/obj/Debug/net9.0/Auth.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..ec7e434 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/Auth.csproj.FileListAbsolute.txt @@ -0,0 +1,165 @@ +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/appsettings.Development.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/appsettings.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Auth.staticwebassets.runtime.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Auth.staticwebassets.endpoints.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Auth +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Auth.deps.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Auth.runtimeconfig.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Auth.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Auth.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Bogus.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Castle.Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/FluentEmail.Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/FluentEmail.Razor.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/FluentEmail.Smtp.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Humanizer.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.AspNetCore.Razor.Language.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.Build.Locator.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.CodeAnalysis.Razor.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Proxies.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.Extensions.Identity.Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.Extensions.Identity.Stores.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.Extensions.Options.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Microsoft.OpenApi.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Mono.TextTemplating.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Npgsql.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/RazorLight.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/System.CodeDom.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/System.Composition.AttributedModel.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/System.Composition.Convention.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/System.Composition.Hosting.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/System.Composition.Runtime.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/System.Composition.TypedParts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/System.Text.Json.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Core.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/Auth.csproj.AssemblyReference.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/Auth.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/Auth.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/Auth.AssemblyInfo.cs +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/Auth.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/Auth.MvcApplicationPartsAssemblyInfo.cs +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/Auth.MvcApplicationPartsAssemblyInfo.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/Auth.sourcelink.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/scopedcss/bundle/Auth.styles.css +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/staticwebassets.build.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/staticwebassets.development.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/staticwebassets/msbuild.Auth.Microsoft.AspNetCore.StaticWebAssets.props +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/staticwebassets/msbuild.Auth.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/staticwebassets/msbuild.build.Auth.props +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Auth.props +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Auth.props +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/staticwebassets.pack.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/Auth.csproj.Up2Date +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/Auth.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/refint/Auth.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/Auth.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/Auth.genruntimeconfig.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Auth/obj/Debug/net9.0/ref/Auth.dll diff --git a/Auth.API/obj/Debug/net9.0/Auth.csproj.Up2Date b/Auth.API/obj/Debug/net9.0/Auth.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/Auth.API/obj/Debug/net9.0/Auth.dll b/Auth.API/obj/Debug/net9.0/Auth.dll new file mode 100644 index 0000000..aa9b4b5 Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/Auth.dll differ diff --git a/Auth.API/obj/Debug/net9.0/Auth.genruntimeconfig.cache b/Auth.API/obj/Debug/net9.0/Auth.genruntimeconfig.cache new file mode 100644 index 0000000..3dae7c3 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/Auth.genruntimeconfig.cache @@ -0,0 +1 @@ +383caf460903ac521974b115735d4ee97ff62fa756f7547a357c37ceb48bc02a diff --git a/Auth.API/obj/Debug/net9.0/Auth.pdb b/Auth.API/obj/Debug/net9.0/Auth.pdb new file mode 100644 index 0000000..466f0ea Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/Auth.pdb differ diff --git a/Auth.API/obj/Debug/net9.0/Auth.sourcelink.json b/Auth.API/obj/Debug/net9.0/Auth.sourcelink.json new file mode 100644 index 0000000..290bfb6 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/Auth.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/*":"https://api.bitbucket.org/2.0/repositories/said1996/erp/src/816c83f971294aedc44dfcf60a5033edffc5c400/*"}} \ No newline at end of file diff --git a/Auth.API/obj/Debug/net9.0/ERP_API.AssemblyInfo.cs b/Auth.API/obj/Debug/net9.0/ERP_API.AssemblyInfo.cs new file mode 100644 index 0000000..0ae77a7 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/ERP_API.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("ERP_API")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+816c83f971294aedc44dfcf60a5033edffc5c400")] +[assembly: System.Reflection.AssemblyProductAttribute("ERP_API")] +[assembly: System.Reflection.AssemblyTitleAttribute("ERP_API")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.API/obj/Debug/net9.0/ERP_API.AssemblyInfoInputs.cache b/Auth.API/obj/Debug/net9.0/ERP_API.AssemblyInfoInputs.cache new file mode 100644 index 0000000..948e819 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/ERP_API.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +e17a3cb7ddfb93f81a806d3f0a5bdc4b3b97f06d367d559905c77111cbd60917 diff --git a/Auth.API/obj/Debug/net9.0/ERP_API.GeneratedMSBuildEditorConfig.editorconfig b/Auth.API/obj/Debug/net9.0/ERP_API.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..0df35f6 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/ERP_API.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,29 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetFramework = net9.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 = ERP_API +build_property.RootNamespace = ERP_API +build_property.ProjectDir = /run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.RazorLangVersion = 9.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = /run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API +build_property._RazorSourceGeneratorDebug = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/Auth.API/obj/Debug/net9.0/ERP_API.GlobalUsings.g.cs b/Auth.API/obj/Debug/net9.0/ERP_API.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/ERP_API.GlobalUsings.g.cs @@ -0,0 +1,17 @@ +// +global using global::Microsoft.AspNetCore.Builder; +global using global::Microsoft.AspNetCore.Hosting; +global using global::Microsoft.AspNetCore.Http; +global using global::Microsoft.AspNetCore.Routing; +global using global::Microsoft.Extensions.Configuration; +global using global::Microsoft.Extensions.DependencyInjection; +global using global::Microsoft.Extensions.Hosting; +global using global::Microsoft.Extensions.Logging; +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Net.Http.Json; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/Auth.API/obj/Debug/net9.0/ERP_API.MvcApplicationPartsAssemblyInfo.cache b/Auth.API/obj/Debug/net9.0/ERP_API.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/Auth.API/obj/Debug/net9.0/ERP_API.MvcApplicationPartsAssemblyInfo.cs b/Auth.API/obj/Debug/net9.0/ERP_API.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..7a8df11 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/ERP_API.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,17 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.API/obj/Debug/net9.0/ERP_API.assets.cache b/Auth.API/obj/Debug/net9.0/ERP_API.assets.cache new file mode 100644 index 0000000..b94636e Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/ERP_API.assets.cache differ diff --git a/Auth.API/obj/Debug/net9.0/ERP_API.csproj.AssemblyReference.cache b/Auth.API/obj/Debug/net9.0/ERP_API.csproj.AssemblyReference.cache new file mode 100644 index 0000000..bf64537 Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/ERP_API.csproj.AssemblyReference.cache differ diff --git a/Auth.API/obj/Debug/net9.0/ERP_API.csproj.CoreCompileInputs.cache b/Auth.API/obj/Debug/net9.0/ERP_API.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..a5def02 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/ERP_API.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c165ae52659042285c6aac582943d6c9085c382c604865ea64cd4441134ac9e5 diff --git a/Auth.API/obj/Debug/net9.0/ERP_API.csproj.FileListAbsolute.txt b/Auth.API/obj/Debug/net9.0/ERP_API.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..b451fe4 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/ERP_API.csproj.FileListAbsolute.txt @@ -0,0 +1,330 @@ +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/ERP_API.csproj.AssemblyReference.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/ERP_API.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/ERP_API.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/ERP_API.AssemblyInfo.cs +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/ERP_API.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/ERP_API.MvcApplicationPartsAssemblyInfo.cs +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/ERP_API.MvcApplicationPartsAssemblyInfo.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/ERP_API.sourcelink.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/appsettings.Development.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/appsettings.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ERP_API.staticwebassets.runtime.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ERP_API.staticwebassets.endpoints.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ERP_API +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ERP_API.deps.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ERP_API.runtimeconfig.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ERP_API.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ERP_API.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Bogus.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Castle.Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/FluentEmail.Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/FluentEmail.Razor.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/FluentEmail.Smtp.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Humanizer.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.AspNetCore.Razor.Language.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.Build.Locator.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Razor.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Proxies.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Stores.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Options.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Microsoft.OpenApi.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Mono.TextTemplating.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Npgsql.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/RazorLight.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/System.CodeDom.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/System.Composition.AttributedModel.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/System.Composition.Convention.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/System.Composition.Hosting.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/System.Composition.Runtime.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/System.Composition.TypedParts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/System.Text.Json.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Core.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/scopedcss/bundle/ERP_API.styles.css +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/staticwebassets.build.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/staticwebassets.development.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/staticwebassets/msbuild.ERP_API.Microsoft.AspNetCore.StaticWebAssets.props +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/staticwebassets/msbuild.ERP_API.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/staticwebassets/msbuild.build.ERP_API.props +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.ERP_API.props +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.ERP_API.props +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/staticwebassets.pack.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/ERP_API.csproj.Up2Date +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/ERP_API.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/refint/ERP_API.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/ERP_API.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/ERP_API.genruntimeconfig.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/ERP_API/obj/Debug/net9.0/ref/ERP_API.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/appsettings.Development.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/appsettings.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ERP_API.staticwebassets.endpoints.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ERP_API.staticwebassets.runtime.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ERP_API +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ERP_API.deps.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ERP_API.runtimeconfig.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ERP_API.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ERP_API.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Bogus.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Castle.Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/FluentEmail.Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/FluentEmail.Razor.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/FluentEmail.Smtp.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Humanizer.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.AspNetCore.OpenApi.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.AspNetCore.Razor.Language.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.Bcl.AsyncInterfaces.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.Build.Locator.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.CodeAnalysis.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Razor.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Design.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Proxies.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.EntityFrameworkCore.Relational.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Caching.Memory.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.DependencyModel.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Identity.Stores.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Logging.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Logging.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Options.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.Extensions.Primitives.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.IdentityModel.Abstractions.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.IdentityModel.Logging.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.IdentityModel.Tokens.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Microsoft.OpenApi.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Mono.TextTemplating.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Npgsql.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/RazorLight.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Swashbuckle.AspNetCore.Swagger.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerGen.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Swashbuckle.AspNetCore.SwaggerUI.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/System.CodeDom.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/System.Composition.AttributedModel.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/System.Composition.Convention.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/System.Composition.Hosting.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/System.Composition.Runtime.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/System.Composition.TypedParts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/System.IdentityModel.Tokens.Jwt.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/System.Text.Json.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Core.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/ERP_API.csproj.AssemblyReference.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/ERP_API.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/ERP_API.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/ERP_API.AssemblyInfo.cs +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/ERP_API.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/ERP_API.MvcApplicationPartsAssemblyInfo.cs +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/ERP_API.MvcApplicationPartsAssemblyInfo.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/ERP_API.sourcelink.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/scopedcss/bundle/ERP_API.styles.css +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/staticwebassets.build.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/staticwebassets.development.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/staticwebassets.build.endpoints.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/staticwebassets/msbuild.ERP_API.Microsoft.AspNetCore.StaticWebAssets.props +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/staticwebassets/msbuild.ERP_API.Microsoft.AspNetCore.StaticWebAssetEndpoints.props +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/staticwebassets/msbuild.build.ERP_API.props +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.ERP_API.props +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.ERP_API.props +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/staticwebassets.pack.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/ERP_API.csproj.Up2Date +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/ERP_API.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/refint/ERP_API.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/ERP_API.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/ERP_API.genruntimeconfig.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/Debug/net9.0/ref/ERP_API.dll diff --git a/Auth.API/obj/Debug/net9.0/ERP_API.csproj.Up2Date b/Auth.API/obj/Debug/net9.0/ERP_API.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/Auth.API/obj/Debug/net9.0/ERP_API.dll b/Auth.API/obj/Debug/net9.0/ERP_API.dll new file mode 100644 index 0000000..67f7234 Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/ERP_API.dll differ diff --git a/Auth.API/obj/Debug/net9.0/ERP_API.genruntimeconfig.cache b/Auth.API/obj/Debug/net9.0/ERP_API.genruntimeconfig.cache new file mode 100644 index 0000000..323fc81 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/ERP_API.genruntimeconfig.cache @@ -0,0 +1 @@ +1873b3b5b884d9075a92586f7cb15f30485b7bb82bb8fd46c65f4e647c84f249 diff --git a/Auth.API/obj/Debug/net9.0/ERP_API.pdb b/Auth.API/obj/Debug/net9.0/ERP_API.pdb new file mode 100644 index 0000000..b89c1ce Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/ERP_API.pdb differ diff --git a/Auth.API/obj/Debug/net9.0/ERP_API.sourcelink.json b/Auth.API/obj/Debug/net9.0/ERP_API.sourcelink.json new file mode 100644 index 0000000..290bfb6 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/ERP_API.sourcelink.json @@ -0,0 +1 @@ +{"documents":{"/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/*":"https://api.bitbucket.org/2.0/repositories/said1996/erp/src/816c83f971294aedc44dfcf60a5033edffc5c400/*"}} \ No newline at end of file diff --git a/Auth.API/obj/Debug/net9.0/apphost b/Auth.API/obj/Debug/net9.0/apphost new file mode 100755 index 0000000..63b5bd0 Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/apphost differ diff --git a/Auth.API/obj/Debug/net9.0/ref/API.dll b/Auth.API/obj/Debug/net9.0/ref/API.dll new file mode 100644 index 0000000..9d93769 Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/ref/API.dll differ diff --git a/Auth.API/obj/Debug/net9.0/ref/Auth.API.dll b/Auth.API/obj/Debug/net9.0/ref/Auth.API.dll new file mode 100644 index 0000000..d5a8115 Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/ref/Auth.API.dll differ diff --git a/Auth.API/obj/Debug/net9.0/ref/Auth.dll b/Auth.API/obj/Debug/net9.0/ref/Auth.dll new file mode 100644 index 0000000..b98b5a5 Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/ref/Auth.dll differ diff --git a/Auth.API/obj/Debug/net9.0/ref/ERP_API.dll b/Auth.API/obj/Debug/net9.0/ref/ERP_API.dll new file mode 100644 index 0000000..777fb38 Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/ref/ERP_API.dll differ diff --git a/Auth.API/obj/Debug/net9.0/refint/API.dll b/Auth.API/obj/Debug/net9.0/refint/API.dll new file mode 100644 index 0000000..9d93769 Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/refint/API.dll differ diff --git a/Auth.API/obj/Debug/net9.0/refint/Auth.API.dll b/Auth.API/obj/Debug/net9.0/refint/Auth.API.dll new file mode 100644 index 0000000..d5a8115 Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/refint/Auth.API.dll differ diff --git a/Auth.API/obj/Debug/net9.0/refint/Auth.dll b/Auth.API/obj/Debug/net9.0/refint/Auth.dll new file mode 100644 index 0000000..b98b5a5 Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/refint/Auth.dll differ diff --git a/Auth.API/obj/Debug/net9.0/refint/ERP_API.dll b/Auth.API/obj/Debug/net9.0/refint/ERP_API.dll new file mode 100644 index 0000000..777fb38 Binary files /dev/null and b/Auth.API/obj/Debug/net9.0/refint/ERP_API.dll differ diff --git a/Auth.API/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json b/Auth.API/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json new file mode 100644 index 0000000..fade0ba --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/rjsmcshtml.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"6p8VWNllC7YkiTvlfmiw3p+AdRUso+sva8BqqhtqTvA=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["YWxTKpGX2xst1lmHF2cPJlRXpUDdxoW/mKned07dM0w=","JiS0ToPVUWzIREjNTDrlfEmtnRTsyksPOa9w\u002BvCTwEA=","0O1bfAq16MIDlqaB2OpHYoUWO6II6f6xD0vTfYzets4=","3gPQ\u002Bv1hBOpdgdpgleOWgcFN2XODSCpohAtrH/rpbAg=","YFKetlPRtQPZkH3GumxTJIfrXIcPlMgl8gJiS5eUQ5Q=","il9s5gzd8\u002BeiT6pEBeDIC7vnAVtnYsgoAzPk\u002BXVOwgw="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/Auth.API/obj/Debug/net9.0/rjsmrazor.dswa.cache.json b/Auth.API/obj/Debug/net9.0/rjsmrazor.dswa.cache.json new file mode 100644 index 0000000..a5a988b --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/rjsmrazor.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"6W6TqYWzE2m5z8mAW4bHUvqb9pgPYWhRqteNqhmFRRI=","FingerprintPatternsHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["YWxTKpGX2xst1lmHF2cPJlRXpUDdxoW/mKned07dM0w=","JiS0ToPVUWzIREjNTDrlfEmtnRTsyksPOa9w\u002BvCTwEA=","0O1bfAq16MIDlqaB2OpHYoUWO6II6f6xD0vTfYzets4=","3gPQ\u002Bv1hBOpdgdpgleOWgcFN2XODSCpohAtrH/rpbAg=","YFKetlPRtQPZkH3GumxTJIfrXIcPlMgl8gJiS5eUQ5Q=","il9s5gzd8\u002BeiT6pEBeDIC7vnAVtnYsgoAzPk\u002BXVOwgw="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/Auth.API/obj/Debug/net9.0/rpswa.dswa.cache.json b/Auth.API/obj/Debug/net9.0/rpswa.dswa.cache.json new file mode 100644 index 0000000..fc68131 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/rpswa.dswa.cache.json @@ -0,0 +1 @@ +{"GlobalPropertiesHash":"N8j8Lo/W/BX3WB+y8XK8QsAaTJiLGgwmHXoyq9Ok3pU=","FingerprintPatternsHash":"gq3WsqcKBUGTSNle7RKKyXRIwh7M8ccEqOqYvIzoM04=","PropertyOverridesHash":"8ZRc1sGeVrPBx4lD717BgRaQekyh78QKV9SKsdt638U=","InputHashes":["YWxTKpGX2xst1lmHF2cPJlRXpUDdxoW/mKned07dM0w=","JiS0ToPVUWzIREjNTDrlfEmtnRTsyksPOa9w\u002BvCTwEA="],"CachedAssets":{},"CachedCopyCandidates":{}} \ No newline at end of file diff --git a/Auth.API/obj/Debug/net9.0/staticwebassets.build.endpoints.json b/Auth.API/obj/Debug/net9.0/staticwebassets.build.endpoints.json new file mode 100644 index 0000000..5576e88 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/staticwebassets.build.endpoints.json @@ -0,0 +1 @@ +{"Version":1,"ManifestType":"Build","Endpoints":[]} \ No newline at end of file diff --git a/Auth.API/obj/Debug/net9.0/staticwebassets.build.json b/Auth.API/obj/Debug/net9.0/staticwebassets.build.json new file mode 100644 index 0000000..1a2e939 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/staticwebassets.build.json @@ -0,0 +1 @@ +{"Version":1,"Hash":"fO+izCq9rO53oLruLCzKUNAPgKZWndXDzbu3XxtT5hg=","Source":"Auth.API","BasePath":"_content/Auth.API","Mode":"Default","ManifestType":"Build","ReferencedProjectsConfiguration":[],"DiscoveryPatterns":[{"Name":"Auth.API/wwwroot","Source":"Auth.API","ContentRoot":"/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/wwwroot/","BasePath":"_content/Auth.API","Pattern":"**"}],"Assets":[],"Endpoints":[]} \ No newline at end of file diff --git a/Auth.API/obj/Debug/net9.0/staticwebassets.build.json.cache b/Auth.API/obj/Debug/net9.0/staticwebassets.build.json.cache new file mode 100644 index 0000000..3cfc2bd --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/staticwebassets.build.json.cache @@ -0,0 +1 @@ +fO+izCq9rO53oLruLCzKUNAPgKZWndXDzbu3XxtT5hg= \ No newline at end of file diff --git a/Auth.API/obj/Debug/net9.0/staticwebassets.development.json b/Auth.API/obj/Debug/net9.0/staticwebassets.development.json new file mode 100644 index 0000000..4c18b95 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/staticwebassets.development.json @@ -0,0 +1 @@ +{"ContentRoots":["/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/wwwroot/"],"Root":{"Children":null,"Asset":null,"Patterns":[{"ContentRootIndex":0,"Pattern":"**","Depth":0}]}} \ No newline at end of file diff --git a/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.build.API.props b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.build.API.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.build.API.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.build.Auth.props b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.build.Auth.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.build.Auth.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.build.ERP_API.props b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.build.ERP_API.props new file mode 100644 index 0000000..ddaed44 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.build.ERP_API.props @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.API.props b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.API.props new file mode 100644 index 0000000..6aa6df8 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.API.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Auth.props b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Auth.props new file mode 100644 index 0000000..93fe2a9 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.Auth.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.ERP_API.props b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.ERP_API.props new file mode 100644 index 0000000..a95bd84 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildMultiTargeting.ERP_API.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.API.props b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.API.props new file mode 100644 index 0000000..90e1133 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.API.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Auth.props b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Auth.props new file mode 100644 index 0000000..63f9f7a --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.Auth.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.ERP_API.props b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.ERP_API.props new file mode 100644 index 0000000..853e4b8 --- /dev/null +++ b/Auth.API/obj/Debug/net9.0/staticwebassets/msbuild.buildTransitive.ERP_API.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Auth.API/obj/Domain.EntityFrameworkCore.targets b/Auth.API/obj/Domain.EntityFrameworkCore.targets new file mode 100644 index 0000000..6b67a59 --- /dev/null +++ b/Auth.API/obj/Domain.EntityFrameworkCore.targets @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Auth.API/obj/ERP_API.csproj.EntityFrameworkCore.targets b/Auth.API/obj/ERP_API.csproj.EntityFrameworkCore.targets new file mode 100644 index 0000000..6b67a59 --- /dev/null +++ b/Auth.API/obj/ERP_API.csproj.EntityFrameworkCore.targets @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Auth.API/obj/ERP_API.csproj.nuget.dgspec.json b/Auth.API/obj/ERP_API.csproj.nuget.dgspec.json new file mode 100644 index 0000000..85b67a9 --- /dev/null +++ b/Auth.API/obj/ERP_API.csproj.nuget.dgspec.json @@ -0,0 +1,370 @@ +{ + "format": 1, + "restore": { + "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/ERP_API.csproj": {} + }, + "projects": { + "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/Contracts.csproj", + "projectName": "Contracts", + "projectPath": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/Contracts.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.106/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/Core.csproj", + "projectName": "Core", + "projectPath": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/Core.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/Contracts.csproj": { + "projectPath": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/Contracts.csproj" + }, + "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/Domain.csproj": { + "projectPath": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/Domain.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "FluentEmail.Core": { + "target": "Package", + "version": "[3.0.2, )" + }, + "FluentEmail.Smtp": { + "target": "Package", + "version": "[3.0.2, )" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + }, + "System.IdentityModel.Tokens.Jwt": { + "target": "Package", + "version": "[8.12.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.106/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/Domain.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/Domain.csproj", + "projectName": "Domain", + "projectPath": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/Domain.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/Contracts.csproj": { + "projectPath": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Bogus": { + "target": "Package", + "version": "[35.6.3, )" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.7, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.106/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/ERP_API.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/ERP_API.csproj", + "projectName": "ERP_API", + "projectPath": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/ERP_API.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/ERP_API/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/Contracts.csproj": { + "projectPath": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/Contracts.csproj" + }, + "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/Core.csproj": { + "projectPath": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/Core.csproj" + }, + "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/Domain.csproj": { + "projectPath": "/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/Domain.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.100" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "FluentEmail.Core": { + "target": "Package", + "version": "[3.0.2, )" + }, + "FluentEmail.Razor": { + "target": "Package", + "version": "[3.0.2, )" + }, + "FluentEmail.Smtp": { + "target": "Package", + "version": "[3.0.2, )" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Proxies": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[9.0.3, )" + }, + "System.IdentityModel.Tokens.Jwt": { + "target": "Package", + "version": "[8.12.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.106/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Auth.API/obj/ERP_API.csproj.nuget.g.props b/Auth.API/obj/ERP_API.csproj.nuget.g.props new file mode 100644 index 0000000..6e91a3b --- /dev/null +++ b/Auth.API/obj/ERP_API.csproj.nuget.g.props @@ -0,0 +1,26 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 6.12.4 + + + + + + + + + + + + + /home/yla/.nuget/packages/microsoft.extensions.apidescription.server/9.0.0 + /home/yla/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4 + + \ No newline at end of file diff --git a/Auth.API/obj/ERP_API.csproj.nuget.g.targets b/Auth.API/obj/ERP_API.csproj.nuget.g.targets new file mode 100644 index 0000000..f605118 --- /dev/null +++ b/Auth.API/obj/ERP_API.csproj.nuget.g.targets @@ -0,0 +1,11 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Auth.API/obj/project.assets.json b/Auth.API/obj/project.assets.json new file mode 100644 index 0000000..40c58bd --- /dev/null +++ b/Auth.API/obj/project.assets.json @@ -0,0 +1,4319 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Bogus/35.6.3": { + "type": "package", + "compile": { + "lib/net6.0/Bogus.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Bogus.dll": { + "related": ".xml" + } + } + }, + "Castle.Core/5.2.1": { + "type": "package", + "compile": { + "lib/net6.0/Castle.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Castle.Core.dll": { + "related": ".xml" + } + } + }, + "FluentEmail.Core/3.0.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/FluentEmail.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Core.dll": {} + } + }, + "FluentEmail.Razor/3.0.2": { + "type": "package", + "dependencies": { + "FluentEmail.Core": "3.0.2", + "RazorLight": "2.0.0-rc.3" + }, + "compile": { + "lib/netstandard2.0/FluentEmail.Razor.dll": {} + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Razor.dll": {} + } + }, + "FluentEmail.Smtp/3.0.2": { + "type": "package", + "dependencies": { + "FluentEmail.Core": "3.0.2" + }, + "compile": { + "lib/netstandard2.0/FluentEmail.Smtp.dll": {} + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Smtp.dll": {} + } + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "5.0.0", + "Microsoft.CodeAnalysis.Razor": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll": {} + } + }, + "Microsoft.AspNetCore.OpenApi/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "2.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ], + "build": { + "build/Microsoft.AspNetCore.OpenApi.targets": {} + } + }, + "Microsoft.AspNetCore.Razor.Language/5.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll": {} + } + }, + "Microsoft.Build/17.7.2": { + "type": "package", + "dependencies": { + "Microsoft.Build.Framework": "17.7.2", + "Microsoft.NET.StringTools": "17.7.2", + "System.Configuration.ConfigurationManager": "7.0.0", + "System.Reflection.MetadataLoadContext": "7.0.0", + "System.Security.Permissions": "7.0.0" + }, + "compile": { + "ref/net7.0/Microsoft.Build.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Build.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Build.Framework/17.14.28": { + "type": "package", + "compile": { + "ref/net9.0/Microsoft.Build.Framework.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Build.Framework.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Build.Tasks.Core/17.14.28": { + "type": "package", + "dependencies": { + "Microsoft.Build.Framework": "17.14.28", + "Microsoft.Build.Utilities.Core": "17.14.28", + "Microsoft.NET.StringTools": "17.14.28", + "System.CodeDom": "9.0.0", + "System.Configuration.ConfigurationManager": "9.0.0", + "System.Formats.Nrbf": "9.0.0", + "System.Resources.Extensions": "9.0.0", + "System.Security.Cryptography.Pkcs": "9.0.0", + "System.Security.Cryptography.ProtectedData": "9.0.0" + }, + "compile": { + "ref/net9.0/Microsoft.Build.Tasks.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Build.Tasks.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Build.Utilities.Core/17.14.28": { + "type": "package", + "dependencies": { + "Microsoft.Build.Framework": "17.14.28", + "Microsoft.NET.StringTools": "17.14.28", + "System.Configuration.ConfigurationManager": "9.0.0", + "System.Security.Cryptography.ProtectedData": "9.0.0" + }, + "compile": { + "ref/net9.0/Microsoft.Build.Utilities.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Build.Utilities.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.11.0": { + "type": "package", + "build": { + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props": {}, + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets": {} + } + }, + "Microsoft.CodeAnalysis.Common/4.14.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.14.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[4.14.0]" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.14.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp": "[4.14.0]", + "Microsoft.CodeAnalysis.Common": "[4.14.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[4.14.0]", + "System.Composition": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Razor/5.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Razor.Language": "5.0.0", + "Microsoft.CodeAnalysis.CSharp": "3.7.0", + "Microsoft.CodeAnalysis.Common": "3.7.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + }, + "runtime": { + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll": {} + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.14.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[4.14.0]", + "System.Composition": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.14.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build": "17.7.2", + "Microsoft.Build.Framework": "17.7.2", + "Microsoft.Build.Tasks.Core": "17.7.2", + "Microsoft.Build.Utilities.Core": "17.7.2", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "[4.14.0]", + "Newtonsoft.Json": "13.0.3", + "System.CodeDom": "7.0.0", + "System.Composition": "9.0.0", + "System.Configuration.ConfigurationManager": "9.0.0", + "System.Resources.Extensions": "9.0.0", + "System.Security.Cryptography.Pkcs": "7.0.2", + "System.Security.Cryptography.ProtectedData": "9.0.0", + "System.Security.Permissions": "9.0.0", + "System.Windows.Extensions": "9.0.0" + }, + "compile": { + "lib/net9.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll": {}, + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll": {}, + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "zh-Hant" + } + }, + "contentFiles": { + "contentFiles/any/any/BuildHost-net472/Microsoft.Build.Locator.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/Microsoft.Build.Locator.dll" + }, + "contentFiles/any/any/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe" + }, + "contentFiles/any/any/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config" + }, + "contentFiles/any/any/BuildHost-net472/Microsoft.IO.Redist.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/Microsoft.IO.Redist.dll" + }, + "contentFiles/any/any/BuildHost-net472/Newtonsoft.Json.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/Newtonsoft.Json.dll" + }, + "contentFiles/any/any/BuildHost-net472/System.Buffers.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/System.Buffers.dll" + }, + "contentFiles/any/any/BuildHost-net472/System.Collections.Immutable.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/System.Collections.Immutable.dll" + }, + "contentFiles/any/any/BuildHost-net472/System.CommandLine.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/System.CommandLine.dll" + }, + "contentFiles/any/any/BuildHost-net472/System.Memory.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/System.Memory.dll" + }, + "contentFiles/any/any/BuildHost-net472/System.Numerics.Vectors.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/System.Numerics.Vectors.dll" + }, + "contentFiles/any/any/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll" + }, + "contentFiles/any/any/BuildHost-net472/System.Threading.Tasks.Extensions.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/System.Threading.Tasks.Extensions.dll" + }, + "contentFiles/any/any/BuildHost-net472/cs/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/cs/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/de/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/de/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/es/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/es/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/fr/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/fr/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/it/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/it/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/ja/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/ja/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/ko/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/ko/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/pl/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/pl/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/pt-BR/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/pt-BR/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/ru/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/ru/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/tr/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/tr/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/zh-Hans/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/zh-Hant/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/Microsoft.Build.Locator.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/Microsoft.Build.Locator.dll" + }, + "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json" + }, + "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll" + }, + "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config" + }, + "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json" + }, + "contentFiles/any/any/BuildHost-netcore/Newtonsoft.Json.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/Newtonsoft.Json.dll" + }, + "contentFiles/any/any/BuildHost-netcore/System.Collections.Immutable.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/System.Collections.Immutable.dll" + }, + "contentFiles/any/any/BuildHost-netcore/System.CommandLine.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/System.CommandLine.dll" + }, + "contentFiles/any/any/BuildHost-netcore/cs/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/cs/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/de/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/de/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/es/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/es/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/fr/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/fr/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/it/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/it/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/ja/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/ja/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/ko/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/ko/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/pl/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/pl/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/pt-BR/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/ru/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/ru/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/tr/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/tr/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll" + } + } + }, + "Microsoft.EntityFrameworkCore/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "10.0.0", + "Microsoft.EntityFrameworkCore.Analyzers": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/10.0.0": { + "type": "package" + }, + "Microsoft.EntityFrameworkCore.Design/10.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.14.28", + "Microsoft.Build.Tasks.Core": "17.14.28", + "Microsoft.Build.Utilities.Core": "17.14.28", + "Microsoft.CodeAnalysis.CSharp": "4.14.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.14.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.14.0", + "Microsoft.EntityFrameworkCore.Relational": "10.0.0", + "Microsoft.Extensions.DependencyModel": "10.0.0", + "Mono.TextTemplating": "3.0.0", + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Design.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Design.dll": { + "related": ".xml" + } + }, + "build": { + "build/net10.0/Microsoft.EntityFrameworkCore.Design.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Proxies/10.0.0": { + "type": "package", + "dependencies": { + "Castle.Core": "5.2.1", + "Microsoft.EntityFrameworkCore": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Proxies.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Proxies.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.DependencyModel/10.0.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.12.1" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "8.12.1" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.NET.StringTools/17.14.28": { + "type": "package", + "compile": { + "ref/net9.0/Microsoft.NET.StringTools.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.NET.StringTools.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.OpenApi/2.0.0": { + "type": "package", + "compile": { + "lib/net8.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net8.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "compile": { + "lib/net6.0/Mono.TextTemplating.dll": {} + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": {} + }, + "build": { + "buildTransitive/Mono.TextTemplating.targets": {} + } + }, + "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/10.0.0": { + "type": "package", + "compile": { + "lib/net10.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "[10.0.0, 11.0.0)", + "Microsoft.EntityFrameworkCore.Relational": "[10.0.0, 11.0.0)", + "Npgsql": "10.0.0" + }, + "compile": { + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + } + }, + "RazorLight/2.0.0-rc.3": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Mvc.Razor.Extensions": "5.0.0", + "Microsoft.CodeAnalysis.Razor": "5.0.0", + "Microsoft.Extensions.DependencyModel": "5.0.0" + }, + "compile": { + "lib/net5.0/RazorLight.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net5.0/RazorLight.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Scalar.AspNetCore/2.12.11": { + "type": "package", + "compile": { + "lib/net10.0/Scalar.AspNetCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Scalar.AspNetCore.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "System.CodeDom/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "9.0.0", + "System.Composition.Convention": "9.0.0", + "System.Composition.Hosting": "9.0.0", + "System.Composition.Runtime": "9.0.0", + "System.Composition.TypedParts": "9.0.0" + }, + "compile": { + "lib/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.AttributedModel/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.Composition.AttributedModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.AttributedModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Convention/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Composition.Convention.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Convention.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Hosting/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.Runtime": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Composition.Hosting.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Runtime/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.Composition.Runtime.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Runtime.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.TypedParts/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "9.0.0", + "System.Composition.Hosting": "9.0.0", + "System.Composition.Runtime": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Composition.TypedParts.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.TypedParts.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Configuration.ConfigurationManager/9.0.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.ProtectedData": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Formats.Nrbf/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.Formats.Nrbf.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Formats.Nrbf.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.12.1", + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "compile": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.MetadataLoadContext/7.0.0": { + "type": "package", + "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.Resources.Extensions/9.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Nrbf": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Resources.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Resources.Extensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Security.Cryptography.Pkcs/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net9.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Security.Permissions/9.0.0": { + "type": "package", + "dependencies": { + "System.Windows.Extensions": "9.0.0" + }, + "compile": { + "lib/net9.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Windows.Extensions/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net9.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Auth.Contracts/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "compile": { + "bin/placeholder/Auth.Contracts.dll": {} + }, + "runtime": { + "bin/placeholder/Auth.Contracts.dll": {} + } + }, + "Auth.Core/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "Auth.Contracts": "1.0.0", + "Auth.Domain": "1.0.0", + "FluentEmail.Core": "3.0.2", + "FluentEmail.Smtp": "3.0.2", + "Generic": "1.0.0", + "Microsoft.AspNetCore.Authentication.JwtBearer": "10.0.0", + "Microsoft.EntityFrameworkCore": "10.0.0", + "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "compile": { + "bin/placeholder/Auth.Core.dll": {} + }, + "runtime": { + "bin/placeholder/Auth.Core.dll": {} + } + }, + "Auth.Domain/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "Auth.Contracts": "1.0.0", + "Bogus": "35.6.3", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "10.0.0", + "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0" + }, + "compile": { + "bin/placeholder/Auth.Domain.dll": {} + }, + "runtime": { + "bin/placeholder/Auth.Domain.dll": {} + } + }, + "Generic/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "compile": { + "bin/placeholder/Generic.dll": {} + }, + "runtime": { + "bin/placeholder/Generic.dll": {} + } + } + } + }, + "libraries": { + "Bogus/35.6.3": { + "sha512": "+5omfZWy8gOcbpc48vKfMI4h/ecbdf3NQm6xCl3zMbaP4J3rMMm5h3kPFeIWBgt4mbz6YY0eeZDLR/6yv1khKw==", + "type": "package", + "path": "bogus/35.6.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "bogus.128.png", + "bogus.35.6.3.nupkg.sha512", + "bogus.nuspec", + "lib/net40/Bogus.dll", + "lib/net40/Bogus.xml", + "lib/net6.0/Bogus.dll", + "lib/net6.0/Bogus.xml", + "lib/netstandard1.3/Bogus.dll", + "lib/netstandard1.3/Bogus.xml", + "lib/netstandard2.0/Bogus.dll", + "lib/netstandard2.0/Bogus.xml" + ] + }, + "Castle.Core/5.2.1": { + "sha512": "wHARzQA695jwwKreOzNsq54KiGqKP38tv8hi8e2FXDEC/sA6BtrX90tVPDkOfVu13PbEzr00TCV8coikl+D1Iw==", + "type": "package", + "path": "castle.core/5.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "ASL - Apache Software Foundation License.txt", + "CHANGELOG.md", + "LICENSE", + "castle-logo.png", + "castle.core.5.2.1.nupkg.sha512", + "castle.core.nuspec", + "lib/net462/Castle.Core.dll", + "lib/net462/Castle.Core.xml", + "lib/net6.0/Castle.Core.dll", + "lib/net6.0/Castle.Core.xml", + "lib/netstandard2.0/Castle.Core.dll", + "lib/netstandard2.0/Castle.Core.xml", + "lib/netstandard2.1/Castle.Core.dll", + "lib/netstandard2.1/Castle.Core.xml", + "readme.txt" + ] + }, + "FluentEmail.Core/3.0.2": { + "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==", + "type": "package", + "path": "fluentemail.core/3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentemail.core.3.0.2.nupkg.sha512", + "fluentemail.core.nuspec", + "fluentemail_logo_64x64.png", + "lib/netstandard2.0/FluentEmail.Core.dll" + ] + }, + "FluentEmail.Razor/3.0.2": { + "sha512": "XdZS2n9jjrx2qzyBGvgstYFIm2laYo1j7YMUZI0rylZhpZHIic3taWqe78xF5dcsXpJvucmxRCshhF6hl02Dmw==", + "type": "package", + "path": "fluentemail.razor/3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentemail.razor.3.0.2.nupkg.sha512", + "fluentemail.razor.nuspec", + "fluentemail_logo_64x64.png", + "lib/netstandard2.0/FluentEmail.Razor.dll" + ] + }, + "FluentEmail.Smtp/3.0.2": { + "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==", + "type": "package", + "path": "fluentemail.smtp/3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentemail.smtp.3.0.2.nupkg.sha512", + "fluentemail.smtp.nuspec", + "fluentemail_logo_64x64.png", + "lib/netstandard2.0/FluentEmail.Smtp.dll" + ] + }, + "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" + ] + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/10.0.0": { + "sha512": "0BgDfT1GoZnzjJOBwx5vFMK5JtqsTEas9pCEwd1/KKxNUAqFmreN60WeUoF+CsmSd9tOQuqWedvdBo/QqHuNTQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.jwtbearer/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll", + "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml", + "microsoft.aspnetcore.authentication.jwtbearer.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.jwtbearer.nuspec" + ] + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/10.0.0": { + "sha512": "mH1+58nbX5RWSd8hajSnXSdpQ1MN3oca488Zd+DvKX2nPTAyTVNRzubMV06BmPcjOZ9waLr/AjwcNiCQ8bCscQ==", + "type": "package", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll", + "lib/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml", + "microsoft.aspnetcore.identity.entityframeworkcore.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.identity.entityframeworkcore.nuspec" + ] + }, + "Microsoft.AspNetCore.Mvc.Razor.Extensions/5.0.0": { + "sha512": "+vVXw0oVVu5dnwseBxZFVeYZ0qPJTI03DTdghRKrcK+QhTM3Nu8orukKqdYObsI4mWZADE8wTILuYR5CowJr+w==", + "type": "package", + "path": "microsoft.aspnetcore.mvc.razor.extensions/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.Extensions.dll", + "microsoft.aspnetcore.mvc.razor.extensions.5.0.0.nupkg.sha512", + "microsoft.aspnetcore.mvc.razor.extensions.nuspec" + ] + }, + "Microsoft.AspNetCore.OpenApi/10.0.0": { + "sha512": "0aqIF1t+sA2T62LIeMtXGSiaV7keGQaJnvwwmu+htQdjCaKYARfXAeqp4nHH9y2etpilyZ/tnQzZg4Ilmo/c4Q==", + "type": "package", + "path": "microsoft.aspnetcore.openapi/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/cs/Microsoft.AspNetCore.OpenApi.SourceGenerators.dll", + "build/Microsoft.AspNetCore.OpenApi.targets", + "lib/net10.0/Microsoft.AspNetCore.OpenApi.dll", + "lib/net10.0/Microsoft.AspNetCore.OpenApi.xml", + "microsoft.aspnetcore.openapi.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.openapi.nuspec" + ] + }, + "Microsoft.AspNetCore.Razor.Language/5.0.0": { + "sha512": "6yOBBASGfXMx1fY6hyjvG+oM3eR8vovIehDdEZW7jAV4gKlY4xuAvTm7Iw1fEq7KPunh2VrJwo7oRK1XxUn1OQ==", + "type": "package", + "path": "microsoft.aspnetcore.razor.language/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.AspNetCore.Razor.Language.dll", + "microsoft.aspnetcore.razor.language.5.0.0.nupkg.sha512", + "microsoft.aspnetcore.razor.language.nuspec" + ] + }, + "Microsoft.Build/17.7.2": { + "sha512": "AmWnumxsMiRycFfE3kq/XnFFTAoPpCWl3UuiKQWCa5Z0+hBKVoiydzS2iXJGd3x+jry+qaTR9GzoezjV9NFT5A==", + "type": "package", + "path": "microsoft.build/17.7.2", + "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/net7.0/Microsoft.Build.dll", + "lib/net7.0/Microsoft.Build.pdb", + "lib/net7.0/Microsoft.Build.xml", + "microsoft.build.17.7.2.nupkg.sha512", + "microsoft.build.nuspec", + "notices/THIRDPARTYNOTICES.txt", + "ref/net472/Microsoft.Build.dll", + "ref/net472/Microsoft.Build.xml", + "ref/net7.0/Microsoft.Build.dll", + "ref/net7.0/Microsoft.Build.xml" + ] + }, + "Microsoft.Build.Framework/17.14.28": { + "sha512": "wRcyTzGV0LRAtFdrddtioh59Ky4/zbvyraP0cQkDzRSRkhgAQb0K88D/JNC6VHLIXanRi3mtV1jU0uQkBwmiVg==", + "type": "package", + "path": "microsoft.build.framework/17.14.28", + "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/net9.0/Microsoft.Build.Framework.dll", + "lib/net9.0/Microsoft.Build.Framework.pdb", + "lib/net9.0/Microsoft.Build.Framework.xml", + "microsoft.build.framework.17.14.28.nupkg.sha512", + "microsoft.build.framework.nuspec", + "notices/THIRDPARTYNOTICES.txt", + "ref/net472/Microsoft.Build.Framework.dll", + "ref/net472/Microsoft.Build.Framework.xml", + "ref/net9.0/Microsoft.Build.Framework.dll", + "ref/net9.0/Microsoft.Build.Framework.xml", + "ref/netstandard2.0/Microsoft.Build.Framework.dll", + "ref/netstandard2.0/Microsoft.Build.Framework.xml" + ] + }, + "Microsoft.Build.Tasks.Core/17.14.28": { + "sha512": "jk3O0tXp9QWPXhLJ7Pl8wm/eGtGgA1++vwHGWEmnwMU6eP//ghtcCUpQh9CQMwEKGDnH0aJf285V1s8yiSlKfQ==", + "type": "package", + "path": "microsoft.build.tasks.core/17.14.28", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MSBuild-NuGet-Icon.png", + "README.md", + "lib/net472/Microsoft.Build.Tasks.Core.dll", + "lib/net472/Microsoft.Build.Tasks.Core.pdb", + "lib/net472/Microsoft.Build.Tasks.Core.xml", + "lib/net9.0/Microsoft.Build.Tasks.Core.dll", + "lib/net9.0/Microsoft.Build.Tasks.Core.pdb", + "lib/net9.0/Microsoft.Build.Tasks.Core.xml", + "microsoft.build.tasks.core.17.14.28.nupkg.sha512", + "microsoft.build.tasks.core.nuspec", + "notices/THIRDPARTYNOTICES.txt", + "ref/net472/Microsoft.Build.Tasks.Core.dll", + "ref/net472/Microsoft.Build.Tasks.Core.xml", + "ref/net9.0/Microsoft.Build.Tasks.Core.dll", + "ref/net9.0/Microsoft.Build.Tasks.Core.xml", + "ref/netstandard2.0/Microsoft.Build.Tasks.Core.dll", + "ref/netstandard2.0/Microsoft.Build.Tasks.Core.xml" + ] + }, + "Microsoft.Build.Utilities.Core/17.14.28": { + "sha512": "rhSdPo8QfLXXWM+rY0x0z1G4KK4ZhMoIbHROyDj8MUBFab9nvHR0NaMnjzOgXldhmD2zi2ir8d6xCatNzlhF5g==", + "type": "package", + "path": "microsoft.build.utilities.core/17.14.28", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MSBuild-NuGet-Icon.png", + "README.md", + "lib/net472/Microsoft.Build.Utilities.Core.dll", + "lib/net472/Microsoft.Build.Utilities.Core.pdb", + "lib/net472/Microsoft.Build.Utilities.Core.xml", + "lib/net9.0/Microsoft.Build.Utilities.Core.dll", + "lib/net9.0/Microsoft.Build.Utilities.Core.pdb", + "lib/net9.0/Microsoft.Build.Utilities.Core.xml", + "microsoft.build.utilities.core.17.14.28.nupkg.sha512", + "microsoft.build.utilities.core.nuspec", + "notices/THIRDPARTYNOTICES.txt", + "ref/net472/Microsoft.Build.Utilities.Core.dll", + "ref/net472/Microsoft.Build.Utilities.Core.xml", + "ref/net9.0/Microsoft.Build.Utilities.Core.dll", + "ref/net9.0/Microsoft.Build.Utilities.Core.xml", + "ref/netstandard2.0/Microsoft.Build.Utilities.Core.dll", + "ref/netstandard2.0/Microsoft.Build.Utilities.Core.xml" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.11.0": { + "sha512": "v/EW3UE8/lbEYHoC2Qq7AR/DnmvpgdtAMndfQNmpuIMx/Mto8L5JnuCfdBYtgvalQOtfNCnxFejxuRrryvUTsg==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.11.0", + "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_4_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_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", + "documentation/readme.md", + "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.11.0.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.Common/4.14.0": { + "sha512": "PC3tuwZYnC+idaPuoC/AZpEdwrtX7qFpmnrfQkgobGIWiYmGi5MCRtl5mx6QrfMGQpK78X2lfIEoZDLg/qnuHg==", + "type": "package", + "path": "microsoft.codeanalysis.common/4.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.dll", + "lib/net8.0/Microsoft.CodeAnalysis.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.dll", + "lib/net9.0/Microsoft.CodeAnalysis.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.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.14.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/4.14.0": { + "sha512": "568a6wcTivauIhbeWcCwfWwIn7UV7MeHEBvFB2uzGIpM2OhJ4eM/FZ8KS0yhPoNxnSpjGzz7x7CIjTxhslojQA==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/4.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.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.14.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.14.0": { + "sha512": "QkgCEM4qJo6gdtblXtNgHqtykS61fxW+820hx5JN6n9DD4mQtqNB+6fPeJ3GQWg6jkkGz6oG9yZq7H3Gf0zwYw==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.workspaces/4.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.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.14.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.workspaces.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Razor/5.0.0": { + "sha512": "s4u/6z/MQ35y/egrXf4WgJlUZf5GGvuba9mZ700dH4XxLBrA9Fw9kFZ8uymoATry7hwz5owvFhBVo+2VnoiGRg==", + "type": "package", + "path": "microsoft.codeanalysis.razor/5.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard2.0/Microsoft.CodeAnalysis.Razor.dll", + "microsoft.codeanalysis.razor.5.0.0.nupkg.sha512", + "microsoft.codeanalysis.razor.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.14.0": { + "sha512": "wNVK9JrqjqDC/WgBUFV6henDfrW87NPfo98nzah/+M/G1D6sBOPtXwqce3UQNn+6AjTnmkHYN1WV9XmTlPemTw==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.common/4.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.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.14.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.14.0": { + "sha512": "YU7Sguzm1Cuhi2U6S0DRKcVpqAdBd2QmatpyE0KqYMJogJ9E27KHOWGUzAOjsyjAM7sNaUk+a8VPz24knDseFw==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "contentFiles/any/any/BuildHost-net472/Microsoft.Build.Locator.dll", + "contentFiles/any/any/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe", + "contentFiles/any/any/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config", + "contentFiles/any/any/BuildHost-net472/Microsoft.IO.Redist.dll", + "contentFiles/any/any/BuildHost-net472/Newtonsoft.Json.dll", + "contentFiles/any/any/BuildHost-net472/System.Buffers.dll", + "contentFiles/any/any/BuildHost-net472/System.Collections.Immutable.dll", + "contentFiles/any/any/BuildHost-net472/System.CommandLine.dll", + "contentFiles/any/any/BuildHost-net472/System.Memory.dll", + "contentFiles/any/any/BuildHost-net472/System.Numerics.Vectors.dll", + "contentFiles/any/any/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll", + "contentFiles/any/any/BuildHost-net472/System.Threading.Tasks.Extensions.dll", + "contentFiles/any/any/BuildHost-net472/cs/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/de/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/es/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/fr/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/it/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/ja/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/ko/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/pl/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/pt-BR/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/ru/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/tr/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/Microsoft.Build.Locator.dll", + "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json", + "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll", + "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config", + "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json", + "contentFiles/any/any/BuildHost-netcore/Newtonsoft.Json.dll", + "contentFiles/any/any/BuildHost-netcore/System.Collections.Immutable.dll", + "contentFiles/any/any/BuildHost-netcore/System.CommandLine.dll", + "contentFiles/any/any/BuildHost-netcore/cs/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/de/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/es/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/fr/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/it/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/ja/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/ko/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/pl/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/ru/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/tr/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll", + "lib/net472/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml", + "lib/net472/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "microsoft.codeanalysis.workspaces.msbuild.4.14.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.msbuild.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore/10.0.0": { + "sha512": "hHa2amRjMyBLUH/KTML6FgIAhZ0VFYkhCKwWEax0rO6iNeM1P5MflyeQLE5dniSIOZHc3Oqyv5UIyTFO4e1Auw==", + "type": "package", + "path": "microsoft.entityframeworkcore/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props", + "lib/net10.0/Microsoft.EntityFrameworkCore.dll", + "lib/net10.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.10.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { + "sha512": "C+TT9k7f1GQ8agOfV512K9iwrzi76RXVSDiLx+iWC9pz3QhEpSF1Dyk+FpVvd8ULQ+rqymfM8KQ7g48ttQVyMg==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/10.0.0": { + "sha512": "TxHQq0kn0tpYs2ljeRl8jtmWk720B0nteqI6mAZM77HWJpYT9Zj8SkkBBlj8K3Yeq18a6NBjz6YutE+shEk4Ag==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "microsoft.entityframeworkcore.analyzers.10.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Design/10.0.0": { + "sha512": "R7BeFniEpBrHw8kKVtWiMG4PRAwJ4K1RZoQWB32Ak8ws3uvYH98DVp9Y2UBUgbwY5lR9wPlrxp7P3GGDQ7LUSQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.design/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "build/net10.0/Microsoft.EntityFrameworkCore.Design.props", + "lib/net10.0/Microsoft.EntityFrameworkCore.Design.dll", + "lib/net10.0/Microsoft.EntityFrameworkCore.Design.xml", + "microsoft.entityframeworkcore.design.10.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.design.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Proxies/10.0.0": { + "sha512": "zskhc/SHCORogkdZZpPupe189/mj52PxzU21/MyOxTHD+7cwv0KD5B54szd9WdT0fapz5NULJ+PzvNiDn3AqCg==", + "type": "package", + "path": "microsoft.entityframeworkcore.proxies/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net10.0/Microsoft.EntityFrameworkCore.Proxies.dll", + "lib/net10.0/Microsoft.EntityFrameworkCore.Proxies.xml", + "microsoft.entityframeworkcore.proxies.10.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.proxies.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.0": { + "sha512": "A3MX1ee7RDxWCUdx/KqP+74fbksz0UIhkVZh56YHvbPkEKsffCXgHU3LGkRDwqR/MrBNWLCWC/IVX79tzM30ZA==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.Extensions.DependencyModel/10.0.0": { + "sha512": "RFYJR7APio/BiqdQunRq6DB+nDB6nc2qhHr77mlvZ0q0BT8PubMXN7XicmfzCbrDE/dzhBnUKBRXLTcqUiZDGg==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net10.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net10.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net9.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.10.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "sha512": "JzWhET0VOCORyJbqDc1Wtdl8Q/l+I1MjFB0I/Jko+Ma691JZll8X6o9XwZtUce8FkqGuV4uY4/V1808XZOpDVg==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/8.12.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.12.1.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "sha512": "imi3xiRLzzKxN4m1aR9Z2X8GUmNsVH7GLA6AkwYStNnh3UzupFtHEEVk3GK1fCvnYdRbpnCGNYY6WQb9AfDAKg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/8.12.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.12.1.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "sha512": "39HjVkU7Voe2jRLmORRB5PoTmta1ZPKzUZCc6ldlNlLzdx+um0+fAnvfk05LUQPrNxpvb5ZoqF00SrNvyO2Fzg==", + "type": "package", + "path": "microsoft.identitymodel.logging/8.12.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.12.1.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "sha512": "uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "type": "package", + "path": "microsoft.identitymodel.protocols/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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/net9.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net9.0/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "sha512": "AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net9.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.8.0.1.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "sha512": "DzgPEABn3eZmIk4lhov0QPcoHkIbnAfgkyDPM7uGuWDHeockR9DdqNCD9Zy30hPfExu5VhbOXn9oPRi+tFUhEQ==", + "type": "package", + "path": "microsoft.identitymodel.tokens/8.12.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.12.1.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.NET.StringTools/17.14.28": { + "sha512": "DMIeWDlxe0Wz0DIhJZ2FMoGQAN2yrGZOi5jjFhRYHWR5ONd0CS6IpAHlRnA7uA/5BF+BADvgsETxW2XrPiFc1A==", + "type": "package", + "path": "microsoft.net.stringtools/17.14.28", + "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/net9.0/Microsoft.NET.StringTools.dll", + "lib/net9.0/Microsoft.NET.StringTools.pdb", + "lib/net9.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.14.28.nupkg.sha512", + "microsoft.net.stringtools.nuspec", + "notices/THIRDPARTYNOTICES.txt", + "ref/net472/Microsoft.NET.StringTools.dll", + "ref/net472/Microsoft.NET.StringTools.xml", + "ref/net9.0/Microsoft.NET.StringTools.dll", + "ref/net9.0/Microsoft.NET.StringTools.xml", + "ref/netstandard2.0/Microsoft.NET.StringTools.dll", + "ref/netstandard2.0/Microsoft.NET.StringTools.xml" + ] + }, + "Microsoft.OpenApi/2.0.0": { + "sha512": "GGYLfzV/G/ct80OZ45JxnWP7NvMX1BCugn/lX7TH5o0lcVaviavsLMTxmFV2AybXWjbi3h6FF1vgZiTK6PXndw==", + "type": "package", + "path": "microsoft.openapi/2.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net8.0/Microsoft.OpenApi.dll", + "lib/net8.0/Microsoft.OpenApi.pdb", + "lib/net8.0/Microsoft.OpenApi.xml", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.2.0.0.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Mono.TextTemplating/3.0.0": { + "sha512": "YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "type": "package", + "path": "mono.texttemplating/3.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt/LICENSE", + "buildTransitive/Mono.TextTemplating.targets", + "lib/net472/Mono.TextTemplating.dll", + "lib/net6.0/Mono.TextTemplating.dll", + "lib/netstandard2.0/Mono.TextTemplating.dll", + "mono.texttemplating.3.0.0.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/10.0.0": { + "sha512": "xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", + "type": "package", + "path": "npgsql/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net10.0/Npgsql.dll", + "lib/net10.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "lib/net9.0/Npgsql.dll", + "lib/net9.0/Npgsql.xml", + "npgsql.10.0.0.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { + "sha512": "E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", + "type": "package", + "path": "npgsql.entityframeworkcore.postgresql/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", + "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", + "npgsql.entityframeworkcore.postgresql.nuspec", + "postgresql.png" + ] + }, + "RazorLight/2.0.0-rc.3": { + "sha512": "2tzNTdXCCMesPQhIdL0x5QS2BwDvaLWVQLNcAv153gnWzUzw8vYETIZBp/Hx591BHPg9itiT8lwVx94XfAnCNA==", + "type": "package", + "path": "razorlight/2.0.0-rc.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "lib/net5.0/RazorLight.dll", + "lib/net5.0/RazorLight.xml", + "lib/netcoreapp3.1/RazorLight.dll", + "lib/netcoreapp3.1/RazorLight.xml", + "lib/netstandard2.0/RazorLight.dll", + "lib/netstandard2.0/RazorLight.xml", + "razorlight.2.0.0-rc.3.nupkg.sha512", + "razorlight.nuspec" + ] + }, + "Scalar.AspNetCore/2.12.11": { + "sha512": "3QqVTb8juNA7oW1of14vyoE+Eg694w6TwEQZuEr6Sr/6Jb3DMS7X7V/qkGjiguvMT6PNq6qd5O1gXA2wIC1vgw==", + "type": "package", + "path": "scalar.aspnetcore/2.12.11", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "icon.png", + "lib/net10.0/Scalar.AspNetCore.dll", + "lib/net10.0/Scalar.AspNetCore.xml", + "lib/net8.0/Scalar.AspNetCore.dll", + "lib/net8.0/Scalar.AspNetCore.xml", + "lib/net9.0/Scalar.AspNetCore.dll", + "lib/net9.0/Scalar.AspNetCore.xml", + "scalar.aspnetcore.2.12.11.nupkg.sha512", + "scalar.aspnetcore.nuspec" + ] + }, + "System.CodeDom/9.0.0": { + "sha512": "oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA==", + "type": "package", + "path": "system.codedom/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.CodeDom.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "lib/net462/System.CodeDom.dll", + "lib/net462/System.CodeDom.xml", + "lib/net8.0/System.CodeDom.dll", + "lib/net8.0/System.CodeDom.xml", + "lib/net9.0/System.CodeDom.dll", + "lib/net9.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.9.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition/9.0.0": { + "sha512": "3Djj70fFTraOarSKmRnmRy/zm4YurICm+kiCtI0dYRqGJnLX6nJ+G3WYuFJ173cAPax/gh96REcbNiVqcrypFQ==", + "type": "package", + "path": "system.composition/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.targets", + "lib/net461/_._", + "lib/netcoreapp2.0/_._", + "lib/netstandard2.0/_._", + "system.composition.9.0.0.nupkg.sha512", + "system.composition.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.AttributedModel/9.0.0": { + "sha512": "iri00l/zIX9g4lHMY+Nz0qV1n40+jFYAmgsaiNn16xvt2RDwlqByNG4wgblagnDYxm3YSQQ0jLlC/7Xlk9CzyA==", + "type": "package", + "path": "system.composition.attributedmodel/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.AttributedModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets", + "lib/net462/System.Composition.AttributedModel.dll", + "lib/net462/System.Composition.AttributedModel.xml", + "lib/net8.0/System.Composition.AttributedModel.dll", + "lib/net8.0/System.Composition.AttributedModel.xml", + "lib/net9.0/System.Composition.AttributedModel.dll", + "lib/net9.0/System.Composition.AttributedModel.xml", + "lib/netstandard2.0/System.Composition.AttributedModel.dll", + "lib/netstandard2.0/System.Composition.AttributedModel.xml", + "system.composition.attributedmodel.9.0.0.nupkg.sha512", + "system.composition.attributedmodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Convention/9.0.0": { + "sha512": "+vuqVP6xpi582XIjJi6OCsIxuoTZfR0M7WWufk3uGDeCl3wGW6KnpylUJ3iiXdPByPE0vR5TjJgR6hDLez4FQg==", + "type": "package", + "path": "system.composition.convention/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Convention.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets", + "lib/net462/System.Composition.Convention.dll", + "lib/net462/System.Composition.Convention.xml", + "lib/net8.0/System.Composition.Convention.dll", + "lib/net8.0/System.Composition.Convention.xml", + "lib/net9.0/System.Composition.Convention.dll", + "lib/net9.0/System.Composition.Convention.xml", + "lib/netstandard2.0/System.Composition.Convention.dll", + "lib/netstandard2.0/System.Composition.Convention.xml", + "system.composition.convention.9.0.0.nupkg.sha512", + "system.composition.convention.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Hosting/9.0.0": { + "sha512": "OFqSeFeJYr7kHxDfaViGM1ymk7d4JxK//VSoNF9Ux0gpqkLsauDZpu89kTHHNdCWfSljbFcvAafGyBoY094btQ==", + "type": "package", + "path": "system.composition.hosting/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Hosting.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets", + "lib/net462/System.Composition.Hosting.dll", + "lib/net462/System.Composition.Hosting.xml", + "lib/net8.0/System.Composition.Hosting.dll", + "lib/net8.0/System.Composition.Hosting.xml", + "lib/net9.0/System.Composition.Hosting.dll", + "lib/net9.0/System.Composition.Hosting.xml", + "lib/netstandard2.0/System.Composition.Hosting.dll", + "lib/netstandard2.0/System.Composition.Hosting.xml", + "system.composition.hosting.9.0.0.nupkg.sha512", + "system.composition.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Runtime/9.0.0": { + "sha512": "w1HOlQY1zsOWYussjFGZCEYF2UZXgvoYnS94NIu2CBnAGMbXFAX8PY8c92KwUItPmowal68jnVLBCzdrWLeEKA==", + "type": "package", + "path": "system.composition.runtime/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Runtime.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets", + "lib/net462/System.Composition.Runtime.dll", + "lib/net462/System.Composition.Runtime.xml", + "lib/net8.0/System.Composition.Runtime.dll", + "lib/net8.0/System.Composition.Runtime.xml", + "lib/net9.0/System.Composition.Runtime.dll", + "lib/net9.0/System.Composition.Runtime.xml", + "lib/netstandard2.0/System.Composition.Runtime.dll", + "lib/netstandard2.0/System.Composition.Runtime.xml", + "system.composition.runtime.9.0.0.nupkg.sha512", + "system.composition.runtime.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.TypedParts/9.0.0": { + "sha512": "aRZlojCCGEHDKqh43jaDgaVpYETsgd7Nx4g1zwLKMtv4iTo0627715ajEFNpEEBTgLmvZuv8K0EVxc3sM4NWJA==", + "type": "package", + "path": "system.composition.typedparts/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.TypedParts.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets", + "lib/net462/System.Composition.TypedParts.dll", + "lib/net462/System.Composition.TypedParts.xml", + "lib/net8.0/System.Composition.TypedParts.dll", + "lib/net8.0/System.Composition.TypedParts.xml", + "lib/net9.0/System.Composition.TypedParts.dll", + "lib/net9.0/System.Composition.TypedParts.xml", + "lib/netstandard2.0/System.Composition.TypedParts.dll", + "lib/netstandard2.0/System.Composition.TypedParts.xml", + "system.composition.typedparts.9.0.0.nupkg.sha512", + "system.composition.typedparts.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Configuration.ConfigurationManager/9.0.0": { + "sha512": "PdkuMrwDhXoKFo/JxISIi9E8L+QGn9Iquj2OKDWHB6Y/HnUOuBouF7uS3R4Hw3FoNmwwMo6hWgazQdyHIIs27A==", + "type": "package", + "path": "system.configuration.configurationmanager/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Configuration.ConfigurationManager.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "lib/net462/System.Configuration.ConfigurationManager.dll", + "lib/net462/System.Configuration.ConfigurationManager.xml", + "lib/net8.0/System.Configuration.ConfigurationManager.dll", + "lib/net8.0/System.Configuration.ConfigurationManager.xml", + "lib/net9.0/System.Configuration.ConfigurationManager.dll", + "lib/net9.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.9.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Formats.Nrbf/9.0.0": { + "sha512": "F/6tNE+ckmdFeSQAyQo26bQOqfPFKEfZcuqnp4kBE6/7jP26diP+QTHCJJ6vpEfaY6bLy+hBLiIQUSxSmNwLkA==", + "type": "package", + "path": "system.formats.nrbf/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Formats.Nrbf.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Formats.Nrbf.targets", + "lib/net462/System.Formats.Nrbf.dll", + "lib/net462/System.Formats.Nrbf.xml", + "lib/net8.0/System.Formats.Nrbf.dll", + "lib/net8.0/System.Formats.Nrbf.xml", + "lib/net9.0/System.Formats.Nrbf.dll", + "lib/net9.0/System.Formats.Nrbf.xml", + "lib/netstandard2.0/System.Formats.Nrbf.dll", + "lib/netstandard2.0/System.Formats.Nrbf.xml", + "system.formats.nrbf.9.0.0.nupkg.sha512", + "system.formats.nrbf.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "sha512": "jlYdVOJrdeyD80ppEqKJ8BhJdrV3MjeA+seURdhC0DnD41GyUA9Ik+P7Sb571ufVVCYIx93GjeqVvY3QyQxZAA==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/8.12.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.12.1.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "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.Resources.Extensions/9.0.0": { + "sha512": "tvhuT1D2OwPROdL1kRWtaTJliQo0WdyhvwDpd8RM997G7m3Hya5nhbYhNTS75x6Vu+ypSOgL5qxDCn8IROtCxw==", + "type": "package", + "path": "system.resources.extensions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Resources.Extensions.targets", + "buildTransitive/net462/System.Resources.Extensions.targets", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Resources.Extensions.targets", + "lib/net462/System.Resources.Extensions.dll", + "lib/net462/System.Resources.Extensions.xml", + "lib/net8.0/System.Resources.Extensions.dll", + "lib/net8.0/System.Resources.Extensions.xml", + "lib/net9.0/System.Resources.Extensions.dll", + "lib/net9.0/System.Resources.Extensions.xml", + "lib/netstandard2.0/System.Resources.Extensions.dll", + "lib/netstandard2.0/System.Resources.Extensions.xml", + "system.resources.extensions.9.0.0.nupkg.sha512", + "system.resources.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Pkcs/9.0.0": { + "sha512": "8tluJF8w9si+2yoHeL8rgVJS6lKvWomTDC8px65Z8MCzzdME5eaPtEQf4OfVGrAxB5fW93ncucy1+221O9EQaw==", + "type": "package", + "path": "system.security.cryptography.pkcs/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.Pkcs.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets", + "lib/net462/System.Security.Cryptography.Pkcs.dll", + "lib/net462/System.Security.Cryptography.Pkcs.xml", + "lib/net8.0/System.Security.Cryptography.Pkcs.dll", + "lib/net8.0/System.Security.Cryptography.Pkcs.xml", + "lib/net9.0/System.Security.Cryptography.Pkcs.dll", + "lib/net9.0/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/net8.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net9.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net9.0/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.9.0.0.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/9.0.0": { + "sha512": "CJW+x/F6fmRQ7N6K8paasTw9PDZp4t7G76UjGNlSDgoHPF0h08vTzLYbLZpOLEJSg35d5wy2jCXGo84EN05DpQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.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/net8.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net8.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net9.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net9.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/_._", + "system.security.cryptography.protecteddata.9.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/9.0.0": { + "sha512": "H2VFD4SFVxieywNxn9/epb63/IOcPPfA0WOtfkljzNfu7GCcHIBQNuwP6zGCEIi7Ci/oj8aLPUNK9sYImMFf4Q==", + "type": "package", + "path": "system.security.permissions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Permissions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "lib/net462/System.Security.Permissions.dll", + "lib/net462/System.Security.Permissions.xml", + "lib/net8.0/System.Security.Permissions.dll", + "lib/net8.0/System.Security.Permissions.xml", + "lib/net9.0/System.Security.Permissions.dll", + "lib/net9.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.9.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Windows.Extensions/9.0.0": { + "sha512": "U9msthvnH2Fsw7xwAvIhNHOdnIjOQTwOc8Vd0oGOsiRcGMGoBFlUD6qtYawRUoQdKH9ysxesZ9juFElt1Jw/7A==", + "type": "package", + "path": "system.windows.extensions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/System.Windows.Extensions.dll", + "lib/net8.0/System.Windows.Extensions.xml", + "lib/net9.0/System.Windows.Extensions.dll", + "lib/net9.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net8.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net8.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net9.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net9.0/System.Windows.Extensions.xml", + "system.windows.extensions.9.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Auth.Contracts/1.0.0": { + "type": "project", + "path": "../Auth.Contracts/Auth.Contracts.csproj", + "msbuildProject": "../Auth.Contracts/Auth.Contracts.csproj" + }, + "Auth.Core/1.0.0": { + "type": "project", + "path": "../Auth.Core/Auth.Core.csproj", + "msbuildProject": "../Auth.Core/Auth.Core.csproj" + }, + "Auth.Domain/1.0.0": { + "type": "project", + "path": "../Auth.Domain/Auth.Domain.csproj", + "msbuildProject": "../Auth.Domain/Auth.Domain.csproj" + }, + "Generic/1.0.0": { + "type": "project", + "path": "../../../SharedLogic/Generic/Generic.csproj", + "msbuildProject": "../../../SharedLogic/Generic/Generic.csproj" + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Auth.Contracts >= 1.0.0", + "Auth.Core >= 1.0.0", + "Auth.Domain >= 1.0.0", + "FluentEmail.Core >= 3.0.2", + "FluentEmail.Razor >= 3.0.2", + "FluentEmail.Smtp >= 3.0.2", + "Microsoft.AspNetCore.Authentication.JwtBearer >= 10.0.0", + "Microsoft.AspNetCore.OpenApi >= 10.0.0", + "Microsoft.EntityFrameworkCore >= 10.0.0", + "Microsoft.EntityFrameworkCore.Design >= 10.0.0", + "Microsoft.EntityFrameworkCore.Proxies >= 10.0.0", + "Npgsql.EntityFrameworkCore.PostgreSQL >= 10.0.0", + "Scalar.AspNetCore >= 2.12.11", + "System.IdentityModel.Tokens.Jwt >= 8.12.1" + ] + }, + "packageFolders": { + "/home/yla/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/Auth.API.csproj", + "projectName": "Auth.API", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/Auth.API.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "FluentEmail.Core": { + "target": "Package", + "version": "[3.0.2, )" + }, + "FluentEmail.Razor": { + "target": "Package", + "version": "[3.0.2, )" + }, + "FluentEmail.Smtp": { + "target": "Package", + "version": "[3.0.2, )" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Proxies": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Scalar.AspNetCore": { + "target": "Package", + "version": "[2.12.11, )" + }, + "System.IdentityModel.Tokens.Jwt": { + "target": "Package", + "version": "[8.12.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.AspNetCore": "(,10.0.32767]", + "Microsoft.AspNetCore.Antiforgery": "(,10.0.32767]", + "Microsoft.AspNetCore.App": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.BearerToken": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Cookies": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Authentication.OAuth": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Authorization.Policy": "(,10.0.32767]", + "Microsoft.AspNetCore.Components": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Authorization": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Endpoints": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Forms": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Server": "(,10.0.32767]", + "Microsoft.AspNetCore.Components.Web": "(,10.0.32767]", + "Microsoft.AspNetCore.Connections.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.CookiePolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.Internal": "(,10.0.32767]", + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.DataProtection.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.AspNetCore.HostFiltering": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Hosting.Server.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Html.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Connections.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Extensions": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Features": "(,10.0.32767]", + "Microsoft.AspNetCore.Http.Results": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpLogging": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpOverrides": "(,10.0.32767]", + "Microsoft.AspNetCore.HttpsPolicy": "(,10.0.32767]", + "Microsoft.AspNetCore.Identity": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Localization.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Metadata": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ApiExplorer": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Cors": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.DataAnnotations": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Formatters.Xml": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Localization": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.RazorPages": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.TagHelpers": "(,10.0.32767]", + "Microsoft.AspNetCore.Mvc.ViewFeatures": "(,10.0.32767]", + "Microsoft.AspNetCore.OutputCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.RateLimiting": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor": "(,10.0.32767]", + "Microsoft.AspNetCore.Razor.Runtime": "(,10.0.32767]", + "Microsoft.AspNetCore.RequestDecompression": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCaching.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.ResponseCompression": "(,10.0.32767]", + "Microsoft.AspNetCore.Rewrite": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing": "(,10.0.32767]", + "Microsoft.AspNetCore.Routing.Abstractions": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.HttpSys": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IIS": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.IISIntegration": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.NamedPipes": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic": "(,10.0.32767]", + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets": "(,10.0.32767]", + "Microsoft.AspNetCore.Session": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Common": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Core": "(,10.0.32767]", + "Microsoft.AspNetCore.SignalR.Protocols.Json": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticAssets": "(,10.0.32767]", + "Microsoft.AspNetCore.StaticFiles": "(,10.0.32767]", + "Microsoft.AspNetCore.WebSockets": "(,10.0.32767]", + "Microsoft.AspNetCore.WebUtilities": "(,10.0.32767]", + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.Extensions.Caching.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Caching.Memory": "(,10.0.32767]", + "Microsoft.Extensions.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Binder": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.CommandLine": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.EnvironmentVariables": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.FileExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Ini": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Json": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.KeyPerFile": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.UserSecrets": "(,10.0.32767]", + "Microsoft.Extensions.Configuration.Xml": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection": "(,10.0.32767]", + "Microsoft.Extensions.DependencyInjection.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks": "(,10.0.32767]", + "Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Features": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Composite": "(,10.0.32767]", + "Microsoft.Extensions.FileProviders.Physical": "(,10.0.32767]", + "Microsoft.Extensions.FileSystemGlobbing": "(,10.0.32767]", + "Microsoft.Extensions.Hosting": "(,10.0.32767]", + "Microsoft.Extensions.Hosting.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Http": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Core": "(,10.0.32767]", + "Microsoft.Extensions.Identity.Stores": "(,10.0.32767]", + "Microsoft.Extensions.Localization": "(,10.0.32767]", + "Microsoft.Extensions.Localization.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Abstractions": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Configuration": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Console": "(,10.0.32767]", + "Microsoft.Extensions.Logging.Debug": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventLog": "(,10.0.32767]", + "Microsoft.Extensions.Logging.EventSource": "(,10.0.32767]", + "Microsoft.Extensions.Logging.TraceSource": "(,10.0.32767]", + "Microsoft.Extensions.ObjectPool": "(,10.0.32767]", + "Microsoft.Extensions.Options": "(,10.0.32767]", + "Microsoft.Extensions.Options.ConfigurationExtensions": "(,10.0.32767]", + "Microsoft.Extensions.Options.DataAnnotations": "(,10.0.32767]", + "Microsoft.Extensions.Primitives": "(,10.0.32767]", + "Microsoft.Extensions.Validation": "(,10.0.32767]", + "Microsoft.Extensions.WebEncoders": "(,10.0.32767]", + "Microsoft.JSInterop": "(,10.0.32767]", + "Microsoft.Net.Http.Headers": "(,10.0.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.EventLog": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Cbor": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Cryptography.Xml": "(,10.0.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.RateLimiting": "(,10.0.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/Auth.API/obj/project.nuget.cache b/Auth.API/obj/project.nuget.cache new file mode 100644 index 0000000..fe248f4 --- /dev/null +++ b/Auth.API/obj/project.nuget.cache @@ -0,0 +1,68 @@ +{ + "version": 2, + "dgSpecHash": "d2T62UHqOlw=", + "success": true, + "projectFilePath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.API/Auth.API.csproj", + "expectedPackageFiles": [ + "/home/yla/.nuget/packages/bogus/35.6.3/bogus.35.6.3.nupkg.sha512", + "/home/yla/.nuget/packages/castle.core/5.2.1/castle.core.5.2.1.nupkg.sha512", + "/home/yla/.nuget/packages/fluentemail.core/3.0.2/fluentemail.core.3.0.2.nupkg.sha512", + "/home/yla/.nuget/packages/fluentemail.razor/3.0.2/fluentemail.razor.3.0.2.nupkg.sha512", + "/home/yla/.nuget/packages/fluentemail.smtp/3.0.2/fluentemail.smtp.3.0.2.nupkg.sha512", + "/home/yla/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.authentication.jwtbearer/10.0.0/microsoft.aspnetcore.authentication.jwtbearer.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.identity.entityframeworkcore/10.0.0/microsoft.aspnetcore.identity.entityframeworkcore.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.mvc.razor.extensions/5.0.0/microsoft.aspnetcore.mvc.razor.extensions.5.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.openapi/10.0.0/microsoft.aspnetcore.openapi.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.razor.language/5.0.0/microsoft.aspnetcore.razor.language.5.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.build/17.7.2/microsoft.build.17.7.2.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.build.framework/17.14.28/microsoft.build.framework.17.14.28.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.build.tasks.core/17.14.28/microsoft.build.tasks.core.17.14.28.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.build.utilities.core/17.14.28/microsoft.build.utilities.core.17.14.28.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.codeanalysis.analyzers/3.11.0/microsoft.codeanalysis.analyzers.3.11.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.codeanalysis.common/4.14.0/microsoft.codeanalysis.common.4.14.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.codeanalysis.csharp/4.14.0/microsoft.codeanalysis.csharp.4.14.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/4.14.0/microsoft.codeanalysis.csharp.workspaces.4.14.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.codeanalysis.razor/5.0.0/microsoft.codeanalysis.razor.5.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.codeanalysis.workspaces.common/4.14.0/microsoft.codeanalysis.workspaces.common.4.14.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.codeanalysis.workspaces.msbuild/4.14.0/microsoft.codeanalysis.workspaces.msbuild.4.14.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.entityframeworkcore/10.0.0/microsoft.entityframeworkcore.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.entityframeworkcore.abstractions/10.0.0/microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.entityframeworkcore.analyzers/10.0.0/microsoft.entityframeworkcore.analyzers.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.entityframeworkcore.design/10.0.0/microsoft.entityframeworkcore.design.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.entityframeworkcore.proxies/10.0.0/microsoft.entityframeworkcore.proxies.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.entityframeworkcore.relational/10.0.0/microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.dependencymodel/10.0.0/microsoft.extensions.dependencymodel.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.abstractions/8.12.1/microsoft.identitymodel.abstractions.8.12.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.jsonwebtokens/8.12.1/microsoft.identitymodel.jsonwebtokens.8.12.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.logging/8.12.1/microsoft.identitymodel.logging.8.12.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.protocols/8.0.1/microsoft.identitymodel.protocols.8.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/8.0.1/microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.tokens/8.12.1/microsoft.identitymodel.tokens.8.12.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.net.stringtools/17.14.28/microsoft.net.stringtools.17.14.28.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.openapi/2.0.0/microsoft.openapi.2.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/mono.texttemplating/3.0.0/mono.texttemplating.3.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512", + "/home/yla/.nuget/packages/npgsql/10.0.0/npgsql.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/npgsql.entityframeworkcore.postgresql/10.0.0/npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/razorlight/2.0.0-rc.3/razorlight.2.0.0-rc.3.nupkg.sha512", + "/home/yla/.nuget/packages/scalar.aspnetcore/2.12.11/scalar.aspnetcore.2.12.11.nupkg.sha512", + "/home/yla/.nuget/packages/system.codedom/9.0.0/system.codedom.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.composition/9.0.0/system.composition.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.composition.attributedmodel/9.0.0/system.composition.attributedmodel.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.composition.convention/9.0.0/system.composition.convention.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.composition.hosting/9.0.0/system.composition.hosting.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.composition.runtime/9.0.0/system.composition.runtime.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.composition.typedparts/9.0.0/system.composition.typedparts.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.configuration.configurationmanager/9.0.0/system.configuration.configurationmanager.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.formats.nrbf/9.0.0/system.formats.nrbf.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.identitymodel.tokens.jwt/8.12.1/system.identitymodel.tokens.jwt.8.12.1.nupkg.sha512", + "/home/yla/.nuget/packages/system.reflection.metadataloadcontext/7.0.0/system.reflection.metadataloadcontext.7.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.resources.extensions/9.0.0/system.resources.extensions.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.security.cryptography.pkcs/9.0.0/system.security.cryptography.pkcs.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.security.cryptography.protecteddata/9.0.0/system.security.cryptography.protecteddata.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.security.permissions/9.0.0/system.security.permissions.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.windows.extensions/9.0.0/system.windows.extensions.9.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Auth.Contracts/AppEnum.cs b/Auth.Contracts/AppEnum.cs new file mode 100644 index 0000000..f8c7ce3 --- /dev/null +++ b/Auth.Contracts/AppEnum.cs @@ -0,0 +1,62 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Contracts; + +public static class AppEnum +{ + public enum Roles + { + [Display(Name = "أدمن للموقع")] + Owner, + + [Display(Name = "أدمن")] + Admin, + + [Display(Name = "منظم")] + Moderator, + + [Display(Name = "طبيعي")] + Standard, + + } + + public enum RequestType + { + [Display(Name = "مالية")] + Financial, + + [Display(Name = "بصمة")] + Punches, + + [Display(Name = "إذن غياب")] + AbsencePermission, + + [Display(Name = "إذن تأخير - خروج مبكر")] + LeavePermission + } + + public enum FinancialType + { + [Display(Name = "سلفة")] + Loan, + + [Display(Name = "حافز")] + Incentive + } + + public enum RequestStatus + { + [Display(Name = "منتظرة")] + Postponed, + + [Display(Name = "مقبولة")] + Accepted, + + [Display(Name = "مرفوضة")] + Declined + } +} diff --git a/Auth.Contracts/Auth.Contracts.csproj b/Auth.Contracts/Auth.Contracts.csproj new file mode 100644 index 0000000..b7eb9cb --- /dev/null +++ b/Auth.Contracts/Auth.Contracts.csproj @@ -0,0 +1,7 @@ + + + net10.0 + enable + enable + + diff --git a/Auth.Contracts/DTOs/Auth/ChangeEmailModel.cs b/Auth.Contracts/DTOs/Auth/ChangeEmailModel.cs new file mode 100644 index 0000000..752d593 --- /dev/null +++ b/Auth.Contracts/DTOs/Auth/ChangeEmailModel.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Contracts.DTOs.Auth; + +public class ChangeEmailModel +{ + public string NewEmail { get; set; } + + public string Token { get; set; } +} diff --git a/Auth.Contracts/DTOs/Auth/ConfirmEmailModel.cs b/Auth.Contracts/DTOs/Auth/ConfirmEmailModel.cs new file mode 100755 index 0000000..753e3f7 --- /dev/null +++ b/Auth.Contracts/DTOs/Auth/ConfirmEmailModel.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Contracts.DTOs.Auth; + +public class ConfirmEmailModel +{ + public string Email { get; set; } + + public string Token { get; set; } +} diff --git a/Auth.Contracts/DTOs/Auth/JWT.cs b/Auth.Contracts/DTOs/Auth/JWT.cs new file mode 100644 index 0000000..3e814fc --- /dev/null +++ b/Auth.Contracts/DTOs/Auth/JWT.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Contracts.DTOs.Auth; + +public class JWT +{ + public string Key { get; set; } + public string Issuer { get; set; } + public string Audience { get; set; } + public double DurationInMinutes { get; set; } + +} diff --git a/Auth.Contracts/DTOs/Auth/LoginModel.cs b/Auth.Contracts/DTOs/Auth/LoginModel.cs new file mode 100755 index 0000000..801fbd5 --- /dev/null +++ b/Auth.Contracts/DTOs/Auth/LoginModel.cs @@ -0,0 +1,14 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Contracts.DTOs.Auth; + +public class LoginModel +{ + public string Email { get; set; } + + public string Password { get; set; } + +} diff --git a/Auth.Contracts/DTOs/Auth/LoginResult.cs b/Auth.Contracts/DTOs/Auth/LoginResult.cs new file mode 100755 index 0000000..cc25331 --- /dev/null +++ b/Auth.Contracts/DTOs/Auth/LoginResult.cs @@ -0,0 +1,18 @@ +namespace Auth.Contracts.DTOs.Auth; + +public class LoginResult +{ + // public string Message { get; set; } + // public string FullName { get; set; } + // public string PhotoPath { get; set; } + // public string PhoneNumber { get; set; } + // public string Email { get; set; } + // public List Roles { get; set; } + + public bool IsSuccessful { get; set; } + + public string RefreshToken { get; set; } + public string AccessToken { get; set; } + public DateTime Expiry { get; set; } + +} diff --git a/Auth.Contracts/DTOs/Auth/MailRequest.cs b/Auth.Contracts/DTOs/Auth/MailRequest.cs new file mode 100755 index 0000000..eb5a4c6 --- /dev/null +++ b/Auth.Contracts/DTOs/Auth/MailRequest.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Contracts.DTOs.Auth; + +public class MailRequest +{ + public string ToEmail { get; set; } + public string Subject { get; set; } + public string Body { get; set; } + + +} diff --git a/Auth.Contracts/DTOs/Auth/MailSettings.cs b/Auth.Contracts/DTOs/Auth/MailSettings.cs new file mode 100755 index 0000000..2b9b7f8 --- /dev/null +++ b/Auth.Contracts/DTOs/Auth/MailSettings.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Contracts.DTOs.Auth; + +public class MailSettings +{ + public string Mail { get; set; } + public string DisplayName { get; set; } + public string Password { get; set; } + public string Host { get; set; } + public int Port { get; set; } +} diff --git a/Auth.Contracts/DTOs/Auth/PasswordResetModel.cs b/Auth.Contracts/DTOs/Auth/PasswordResetModel.cs new file mode 100755 index 0000000..16e5e8d --- /dev/null +++ b/Auth.Contracts/DTOs/Auth/PasswordResetModel.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Contracts.DTOs.Auth; + +public class PasswordResetModel +{ + public string Email { get; set; } + public string Password { get; set; } + public string Token { get; set; } +} diff --git a/Auth.Contracts/DTOs/Auth/RegisterModel.cs b/Auth.Contracts/DTOs/Auth/RegisterModel.cs new file mode 100755 index 0000000..4524e07 --- /dev/null +++ b/Auth.Contracts/DTOs/Auth/RegisterModel.cs @@ -0,0 +1,33 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel.DataAnnotations; +using System.Linq; +using System.Text.Json.Serialization; +using System.Threading.Tasks; + +namespace Auth.Contracts.DTOs.Auth; + +public class RegisterModel +{ + [Required(ErrorMessage = "Name is required.")] + [MaxLength(150, ErrorMessage = "Maximum name length is 150.")] + [MinLength(2, ErrorMessage = "Minimum name length is 2.")] + [DataType(DataType.Text)] + public string FullName { get; set; } + + [Required] + [EmailAddress(ErrorMessage = "Not a valid Email address.")] + public string Email { get; set; } + + + [Required(ErrorMessage = "Password is required.")] + [DataType(DataType.Password)] + public string Password { get; set; } + + [JsonIgnore] + [Required(ErrorMessage = "Confirmation Password is required.")] + [Compare("Password", ErrorMessage = "Password and Confirmation Password must match.")] + [DataType(DataType.Password)] + public string ConfirmPassword { get; set; } + +} diff --git a/Auth.Contracts/DTOs/Auth/RequestChangeEmail.cs b/Auth.Contracts/DTOs/Auth/RequestChangeEmail.cs new file mode 100644 index 0000000..2c3649b --- /dev/null +++ b/Auth.Contracts/DTOs/Auth/RequestChangeEmail.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Contracts.DTOs.Auth; + +public class RequestChangeEmail +{ + public string NewEmail { get; set; } + + // public string OldEmail { get; set; } + + public string Password { get; set; } +} diff --git a/Auth.Contracts/DTOs/Auth/TokenModel.cs b/Auth.Contracts/DTOs/Auth/TokenModel.cs new file mode 100755 index 0000000..51a1ab9 --- /dev/null +++ b/Auth.Contracts/DTOs/Auth/TokenModel.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Contracts.DTOs.Auth; + +public class TokenModel +{ + public string AccessToken { get; set; } + + public string RefreshToken { get; set; } + + public DateTime Expiry { get; set; } +} diff --git a/Auth.Contracts/DTOs/Auth/TokenRequestModel.cs b/Auth.Contracts/DTOs/Auth/TokenRequestModel.cs new file mode 100755 index 0000000..309f661 --- /dev/null +++ b/Auth.Contracts/DTOs/Auth/TokenRequestModel.cs @@ -0,0 +1,15 @@ +using System.ComponentModel.DataAnnotations; + +namespace Auth.Contracts.DTOs.Auth; + +public class TokenRequestModel +{ + + [Required] + [EmailAddress(ErrorMessage = "Not a valid Email address.")] + public string Email { get; set; } + + [Required(ErrorMessage = "Password is required.")] + [DataType(DataType.Password)] + public string Password { get; set; } +} diff --git a/Auth.Contracts/DTOs/Auth/UpdatePhoneNumber.cs b/Auth.Contracts/DTOs/Auth/UpdatePhoneNumber.cs new file mode 100644 index 0000000..7ad79a6 --- /dev/null +++ b/Auth.Contracts/DTOs/Auth/UpdatePhoneNumber.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Contracts.DTOs.Auth; + +public class UpdatePhoneNumber +{ + public string PhoneNumber { get; set; } + public string Token { get; set; } +} diff --git a/Auth.Contracts/DTOs/Users/RoleVM.cs b/Auth.Contracts/DTOs/Users/RoleVM.cs new file mode 100644 index 0000000..484ed35 --- /dev/null +++ b/Auth.Contracts/DTOs/Users/RoleVM.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Contracts.DTOs.Users; + +public class RoleVM +{ + public Guid Id { get; set; } + + public string Name { get; set; } + + public string NormalizedName { get; set; } + +} diff --git a/Auth.Contracts/DTOs/Users/UserInfoUpdate.cs b/Auth.Contracts/DTOs/Users/UserInfoUpdate.cs new file mode 100755 index 0000000..7f8a86a --- /dev/null +++ b/Auth.Contracts/DTOs/Users/UserInfoUpdate.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Contracts.DTOs.Users; + +public class UserInfoUpdate +{ + // public string AccessToken { get; set; } + + public string Name { get; set; } + + public string PhotoPath { get; set; } + +} diff --git a/Auth.Contracts/DTOs/Users/UserRoleVM.cs b/Auth.Contracts/DTOs/Users/UserRoleVM.cs new file mode 100644 index 0000000..34c596a --- /dev/null +++ b/Auth.Contracts/DTOs/Users/UserRoleVM.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Contracts.DTOs.Users; + +public class UserRoleVM +{ + +} diff --git a/Auth.Contracts/DTOs/Users/UserVM.cs b/Auth.Contracts/DTOs/Users/UserVM.cs new file mode 100644 index 0000000..c5a342a --- /dev/null +++ b/Auth.Contracts/DTOs/Users/UserVM.cs @@ -0,0 +1,26 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Contracts.DTOs.Users; + +public class UserVM +{ + public string Id { get; set; } + + public string Name { get; set; } + + public string PhotoPath { get; set; } + + public string PhoneNumber { get; set; } + public string Email { get; set; } + + // public string JobTitle { get; set; } + + // public int Holidays { get; set; } + + public List Roles { get; set; } + + // public List SalaryVMs { get; set; } +} diff --git a/Auth.Contracts/DTOs/Users/UserView.cs b/Auth.Contracts/DTOs/Users/UserView.cs new file mode 100755 index 0000000..c85fe3c --- /dev/null +++ b/Auth.Contracts/DTOs/Users/UserView.cs @@ -0,0 +1,16 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Contracts.DTOs.Users; + +public class UserView +{ + public string Name { get; set; } + + public string PhotoPath { get; set; } + + public string PhoneNumber { get; set; } + public string Email { get; set; } +} diff --git a/Auth.Contracts/EmailTemplates/ConfirmEmail.cshtml b/Auth.Contracts/EmailTemplates/ConfirmEmail.cshtml new file mode 100644 index 0000000..f048585 --- /dev/null +++ b/Auth.Contracts/EmailTemplates/ConfirmEmail.cshtml @@ -0,0 +1,5 @@ +@model (Auth.Domain.Entities.HR.AppUser user, string token) + +

Confirm Email

+

Hello @Model.user.Name,

+

Your token is: @Model.token

diff --git a/Auth.Contracts/EmailTemplates/ResetPassword.cshtml b/Auth.Contracts/EmailTemplates/ResetPassword.cshtml new file mode 100644 index 0000000..14616d1 --- /dev/null +++ b/Auth.Contracts/EmailTemplates/ResetPassword.cshtml @@ -0,0 +1,5 @@ +@model (Auth.Domain.Entities.HR.AppUser user, string token) + +

Reset Password

+

Hello @Model.user.Name,

+

Your token is: @Model.token

diff --git a/Auth.Contracts/EmailTemplates/SendPhoneNumber.cshtml b/Auth.Contracts/EmailTemplates/SendPhoneNumber.cshtml new file mode 100644 index 0000000..e36f4ca --- /dev/null +++ b/Auth.Contracts/EmailTemplates/SendPhoneNumber.cshtml @@ -0,0 +1,5 @@ +@model (Auth.Domain.Entities.HR.AppUser user, string token) + +

Phone Number Token

+

Hello @Model.user.Name,

+

Your token is: @Model.token

diff --git a/Auth.Contracts/Permissions/AuthPermissions.cs b/Auth.Contracts/Permissions/AuthPermissions.cs new file mode 100644 index 0000000..4c88a72 --- /dev/null +++ b/Auth.Contracts/Permissions/AuthPermissions.cs @@ -0,0 +1,31 @@ +using System.Collections.Generic; + +namespace Auth.Contracts.Permissions; + +public static class AuthPermissions +{ + public static class Users + { + public const string View = "Permissions.Users.View"; + public const string Create = "Permissions.Users.Create"; + public const string Edit = "Permissions.Users.Edit"; + public const string Delete = "Permissions.Users.Delete"; + } + + public static class Roles + { + public const string View = "Permissions.Roles.View"; + public const string Create = "Permissions.Roles.Create"; + public const string Edit = "Permissions.Roles.Edit"; + public const string Delete = "Permissions.Roles.Delete"; + } + + public static List GetAllPermissions() + { + return new List + { + Users.View, Users.Create, Users.Edit, Users.Delete, + Roles.View, Roles.Create, Roles.Edit, Roles.Delete + }; + } +} diff --git a/Auth.Contracts/bin/Debug/net10.0/Auth.Contracts.deps.json b/Auth.Contracts/bin/Debug/net10.0/Auth.Contracts.deps.json new file mode 100644 index 0000000..d144810 --- /dev/null +++ b/Auth.Contracts/bin/Debug/net10.0/Auth.Contracts.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "Auth.Contracts/1.0.0": { + "runtime": { + "Auth.Contracts.dll": {} + } + } + } + }, + "libraries": { + "Auth.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Auth.Contracts/bin/Debug/net10.0/Auth.Contracts.dll b/Auth.Contracts/bin/Debug/net10.0/Auth.Contracts.dll new file mode 100644 index 0000000..0002357 Binary files /dev/null and b/Auth.Contracts/bin/Debug/net10.0/Auth.Contracts.dll differ diff --git a/Auth.Contracts/bin/Debug/net10.0/Auth.Contracts.pdb b/Auth.Contracts/bin/Debug/net10.0/Auth.Contracts.pdb new file mode 100644 index 0000000..0ea86a1 Binary files /dev/null and b/Auth.Contracts/bin/Debug/net10.0/Auth.Contracts.pdb differ diff --git a/Auth.Contracts/bin/Debug/net9.0/Auth.Contracts.deps.json b/Auth.Contracts/bin/Debug/net9.0/Auth.Contracts.deps.json new file mode 100644 index 0000000..4acd0c5 --- /dev/null +++ b/Auth.Contracts/bin/Debug/net9.0/Auth.Contracts.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Auth.Contracts/1.0.0": { + "runtime": { + "Auth.Contracts.dll": {} + } + } + } + }, + "libraries": { + "Auth.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Auth.Contracts/bin/Debug/net9.0/Auth.Contracts.dll b/Auth.Contracts/bin/Debug/net9.0/Auth.Contracts.dll new file mode 100644 index 0000000..7122b9c Binary files /dev/null and b/Auth.Contracts/bin/Debug/net9.0/Auth.Contracts.dll differ diff --git a/Auth.Contracts/bin/Debug/net9.0/Auth.Contracts.pdb b/Auth.Contracts/bin/Debug/net9.0/Auth.Contracts.pdb new file mode 100644 index 0000000..07eea5e Binary files /dev/null and b/Auth.Contracts/bin/Debug/net9.0/Auth.Contracts.pdb differ diff --git a/Auth.Contracts/bin/Debug/net9.0/Contracts.deps.json b/Auth.Contracts/bin/Debug/net9.0/Contracts.deps.json new file mode 100644 index 0000000..ac231d1 --- /dev/null +++ b/Auth.Contracts/bin/Debug/net9.0/Contracts.deps.json @@ -0,0 +1,23 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Contracts/1.0.0": { + "runtime": { + "Contracts.dll": {} + } + } + } + }, + "libraries": { + "Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Auth.Contracts/bin/Debug/net9.0/Contracts.dll b/Auth.Contracts/bin/Debug/net9.0/Contracts.dll new file mode 100644 index 0000000..7ee0998 Binary files /dev/null and b/Auth.Contracts/bin/Debug/net9.0/Contracts.dll differ diff --git a/Auth.Contracts/bin/Debug/net9.0/Contracts.pdb b/Auth.Contracts/bin/Debug/net9.0/Contracts.pdb new file mode 100644 index 0000000..3479ccd Binary files /dev/null and b/Auth.Contracts/bin/Debug/net9.0/Contracts.pdb differ diff --git a/Auth.Contracts/obj/Auth.Contracts.csproj.nuget.dgspec.json b/Auth.Contracts/obj/Auth.Contracts.csproj.nuget.dgspec.json new file mode 100644 index 0000000..4528767 --- /dev/null +++ b/Auth.Contracts/obj/Auth.Contracts.csproj.nuget.dgspec.json @@ -0,0 +1,341 @@ +{ + "format": 1, + "restore": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj": {} + }, + "projects": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj", + "projectName": "Auth.Contracts", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/Auth.Contracts/obj/Auth.Contracts.csproj.nuget.g.props b/Auth.Contracts/obj/Auth.Contracts.csproj.nuget.g.props new file mode 100644 index 0000000..ac65a2f --- /dev/null +++ b/Auth.Contracts/obj/Auth.Contracts.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 7.0.0 + + + + + \ No newline at end of file diff --git a/Auth.Contracts/obj/Auth.Contracts.csproj.nuget.g.targets b/Auth.Contracts/obj/Auth.Contracts.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Auth.Contracts/obj/Auth.Contracts.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Auth.Contracts/obj/Contracts.csproj.nuget.dgspec.json b/Auth.Contracts/obj/Contracts.csproj.nuget.dgspec.json new file mode 100644 index 0000000..4a7b674 --- /dev/null +++ b/Auth.Contracts/obj/Contracts.csproj.nuget.dgspec.json @@ -0,0 +1,68 @@ +{ + "format": 1, + "restore": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj": {} + }, + "projects": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj", + "projectName": "Contracts", + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Auth.Contracts/obj/Contracts.csproj.nuget.g.props b/Auth.Contracts/obj/Contracts.csproj.nuget.g.props new file mode 100644 index 0000000..37b7f19 --- /dev/null +++ b/Auth.Contracts/obj/Contracts.csproj.nuget.g.props @@ -0,0 +1,15 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 6.14.0 + + + + + \ No newline at end of file diff --git a/Auth.Contracts/obj/Contracts.csproj.nuget.g.targets b/Auth.Contracts/obj/Contracts.csproj.nuget.g.targets new file mode 100644 index 0000000..3dc06ef --- /dev/null +++ b/Auth.Contracts/obj/Contracts.csproj.nuget.g.targets @@ -0,0 +1,2 @@ + + \ No newline at end of file diff --git a/Auth.Contracts/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/Auth.Contracts/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/Auth.Contracts/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.AssemblyInfo.cs b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.AssemblyInfo.cs new file mode 100644 index 0000000..b319323 --- /dev/null +++ b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Auth.Contracts")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Auth.Contracts")] +[assembly: System.Reflection.AssemblyTitleAttribute("Auth.Contracts")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.AssemblyInfoInputs.cache b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.AssemblyInfoInputs.cache new file mode 100644 index 0000000..1452fdb --- /dev/null +++ b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6f6d4e9339172d62b05f0215e9beba4131c82cc422f86391996e937a609e1c03 diff --git a/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.GeneratedMSBuildEditorConfig.editorconfig b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..7d54f31 --- /dev/null +++ b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Auth.Contracts +build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.GlobalUsings.g.cs b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.assets.cache b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.assets.cache new file mode 100644 index 0000000..956570a Binary files /dev/null and b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.assets.cache differ diff --git a/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.csproj.CoreCompileInputs.cache b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..0b7ba15 --- /dev/null +++ b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a05f4ecefcf222618ad872b140b5f0377f9a4ecaca5df0929a91d468b2bccae7 diff --git a/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.csproj.FileListAbsolute.txt b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..cd78507 --- /dev/null +++ b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.csproj.FileListAbsolute.txt @@ -0,0 +1,22 @@ +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/bin/Debug/net10.0/Auth.Contracts.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/bin/Debug/net10.0/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/bin/Debug/net10.0/Auth.Contracts.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net10.0/refint/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net10.0/ref/Auth.Contracts.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/bin/Debug/net10.0/Auth.Contracts.deps.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/bin/Debug/net10.0/Auth.Contracts.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/bin/Debug/net10.0/Auth.Contracts.pdb +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.GeneratedMSBuildEditorConfig.editorconfig +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.AssemblyInfoInputs.cache +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.AssemblyInfo.cs +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.csproj.CoreCompileInputs.cache +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net10.0/refint/Auth.Contracts.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.pdb +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net10.0/ref/Auth.Contracts.dll diff --git a/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.dll b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.dll new file mode 100644 index 0000000..0002357 Binary files /dev/null and b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.dll differ diff --git a/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.pdb b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.pdb new file mode 100644 index 0000000..0ea86a1 Binary files /dev/null and b/Auth.Contracts/obj/Debug/net10.0/Auth.Contracts.pdb differ diff --git a/Auth.Contracts/obj/Debug/net10.0/ref/Auth.Contracts.dll b/Auth.Contracts/obj/Debug/net10.0/ref/Auth.Contracts.dll new file mode 100644 index 0000000..d745832 Binary files /dev/null and b/Auth.Contracts/obj/Debug/net10.0/ref/Auth.Contracts.dll differ diff --git a/Auth.Contracts/obj/Debug/net10.0/refint/Auth.Contracts.dll b/Auth.Contracts/obj/Debug/net10.0/refint/Auth.Contracts.dll new file mode 100644 index 0000000..d745832 Binary files /dev/null and b/Auth.Contracts/obj/Debug/net10.0/refint/Auth.Contracts.dll differ diff --git a/Auth.Contracts/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/Auth.Contracts/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..9e76325 --- /dev/null +++ b/Auth.Contracts/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.AssemblyInfo.cs b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.AssemblyInfo.cs new file mode 100644 index 0000000..b319323 --- /dev/null +++ b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Auth.Contracts")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Auth.Contracts")] +[assembly: System.Reflection.AssemblyTitleAttribute("Auth.Contracts")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.AssemblyInfoInputs.cache b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.AssemblyInfoInputs.cache new file mode 100644 index 0000000..1452fdb --- /dev/null +++ b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +6f6d4e9339172d62b05f0215e9beba4131c82cc422f86391996e937a609e1c03 diff --git a/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.GeneratedMSBuildEditorConfig.editorconfig b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..0ca5a16 --- /dev/null +++ b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,15 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Auth.Contracts +build_property.ProjectDir = /mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.GlobalUsings.g.cs b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.assets.cache b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.assets.cache new file mode 100644 index 0000000..377ade6 Binary files /dev/null and b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.assets.cache differ diff --git a/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.csproj.CoreCompileInputs.cache b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..397ea9a --- /dev/null +++ b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +4681f52b87241e73f3ed73772914381d1ba37acd2ee0903794776ff2fa18c19a diff --git a/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.csproj.FileListAbsolute.txt b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..ec1ffab --- /dev/null +++ b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.csproj.FileListAbsolute.txt @@ -0,0 +1,22 @@ +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Contracts/bin/Debug/net9.0/Auth.Contracts.deps.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Contracts/bin/Debug/net9.0/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Contracts/bin/Debug/net9.0/Auth.Contracts.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net9.0/refint/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net9.0/ref/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/bin/Debug/net9.0/Auth.Contracts.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/bin/Debug/net9.0/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/bin/Debug/net9.0/Auth.Contracts.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net9.0/refint/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/Debug/net9.0/ref/Auth.Contracts.dll diff --git a/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.dll b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.dll new file mode 100644 index 0000000..7122b9c Binary files /dev/null and b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.dll differ diff --git a/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.pdb b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.pdb new file mode 100644 index 0000000..07eea5e Binary files /dev/null and b/Auth.Contracts/obj/Debug/net9.0/Auth.Contracts.pdb differ diff --git a/Auth.Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs b/Auth.Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs new file mode 100644 index 0000000..58bf77c --- /dev/null +++ b/Auth.Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Contracts")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+89d8c7f2868cdc25655d2a003c6dc8ab9e106e46")] +[assembly: System.Reflection.AssemblyProductAttribute("Contracts")] +[assembly: System.Reflection.AssemblyTitleAttribute("Contracts")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache b/Auth.Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache new file mode 100644 index 0000000..f5aba86 --- /dev/null +++ b/Auth.Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +cd734acc8465ebb5d282f618102f6659d26ba0b56e6a6f83a66e4b8527b26d39 diff --git a/Auth.Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig b/Auth.Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..b679eec --- /dev/null +++ b/Auth.Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,15 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Contracts +build_property.ProjectDir = /mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/Auth.Contracts/obj/Debug/net9.0/Contracts.GlobalUsings.g.cs b/Auth.Contracts/obj/Debug/net9.0/Contracts.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/Auth.Contracts/obj/Debug/net9.0/Contracts.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/Auth.Contracts/obj/Debug/net9.0/Contracts.assets.cache b/Auth.Contracts/obj/Debug/net9.0/Contracts.assets.cache new file mode 100644 index 0000000..779067a Binary files /dev/null and b/Auth.Contracts/obj/Debug/net9.0/Contracts.assets.cache differ diff --git a/Auth.Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache b/Auth.Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..6459723 --- /dev/null +++ b/Auth.Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a2bd3395daf9e720248a4a105971b4f088f74dac9f6fbcd85a46e74f3caaf067 diff --git a/Auth.Contracts/obj/Debug/net9.0/Contracts.csproj.FileListAbsolute.txt b/Auth.Contracts/obj/Debug/net9.0/Contracts.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..6daa5c0 --- /dev/null +++ b/Auth.Contracts/obj/Debug/net9.0/Contracts.csproj.FileListAbsolute.txt @@ -0,0 +1,102 @@ +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Contracts/bin/Debug/net9.0/Contracts.deps.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Contracts/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Contracts/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Contracts/obj/Debug/net9.0/Contracts.sourcelink.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Contracts/obj/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Contracts/obj/Debug/net9.0/refint/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Contracts/obj/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Contracts/obj/Debug/net9.0/ref/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/bin/Debug/net9.0/Contracts.deps.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/obj/Debug/net9.0/Contracts.sourcelink.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/obj/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/obj/Debug/net9.0/refint/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/obj/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Contracts/obj/Debug/net9.0/ref/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Contracts/bin/Debug/net9.0/Contracts.deps.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Contracts/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Contracts/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Contracts/obj/Debug/net9.0/Contracts.sourcelink.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Contracts/obj/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Contracts/obj/Debug/net9.0/refint/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Contracts/obj/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Contracts/obj/Debug/net9.0/ref/Contracts.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.deps.json +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/refint/Contracts.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/ref/Contracts.dll +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.deps.json +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/refint/Contracts.dll +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/ref/Contracts.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.deps.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/refint/Contracts.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/ref/Contracts.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.deps.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/refint/Contracts.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/ref/Contracts.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.deps.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/refint/Contracts.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/ref/Contracts.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.deps.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/bin/Debug/net9.0/Contracts.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/refint/Contracts.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/Contracts.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/Debug/net9.0/ref/Contracts.dll diff --git a/Auth.Contracts/obj/Debug/net9.0/Contracts.dll b/Auth.Contracts/obj/Debug/net9.0/Contracts.dll new file mode 100644 index 0000000..7ee0998 Binary files /dev/null and b/Auth.Contracts/obj/Debug/net9.0/Contracts.dll differ diff --git a/Auth.Contracts/obj/Debug/net9.0/Contracts.pdb b/Auth.Contracts/obj/Debug/net9.0/Contracts.pdb new file mode 100644 index 0000000..3479ccd Binary files /dev/null and b/Auth.Contracts/obj/Debug/net9.0/Contracts.pdb differ diff --git a/Auth.Contracts/obj/Debug/net9.0/ref/Auth.Contracts.dll b/Auth.Contracts/obj/Debug/net9.0/ref/Auth.Contracts.dll new file mode 100644 index 0000000..f8317be Binary files /dev/null and b/Auth.Contracts/obj/Debug/net9.0/ref/Auth.Contracts.dll differ diff --git a/Auth.Contracts/obj/Debug/net9.0/ref/Contracts.dll b/Auth.Contracts/obj/Debug/net9.0/ref/Contracts.dll new file mode 100644 index 0000000..79950be Binary files /dev/null and b/Auth.Contracts/obj/Debug/net9.0/ref/Contracts.dll differ diff --git a/Auth.Contracts/obj/Debug/net9.0/refint/Auth.Contracts.dll b/Auth.Contracts/obj/Debug/net9.0/refint/Auth.Contracts.dll new file mode 100644 index 0000000..f8317be Binary files /dev/null and b/Auth.Contracts/obj/Debug/net9.0/refint/Auth.Contracts.dll differ diff --git a/Auth.Contracts/obj/Debug/net9.0/refint/Contracts.dll b/Auth.Contracts/obj/Debug/net9.0/refint/Contracts.dll new file mode 100644 index 0000000..79950be Binary files /dev/null and b/Auth.Contracts/obj/Debug/net9.0/refint/Contracts.dll differ diff --git a/Auth.Contracts/obj/project.assets.json b/Auth.Contracts/obj/project.assets.json new file mode 100644 index 0000000..c589095 --- /dev/null +++ b/Auth.Contracts/obj/project.assets.json @@ -0,0 +1,346 @@ +{ + "version": 3, + "targets": { + "net10.0": {} + }, + "libraries": {}, + "projectFileDependencyGroups": { + "net10.0": [] + }, + "packageFolders": { + "/home/yla/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj", + "projectName": "Auth.Contracts", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/Auth.Contracts/obj/project.nuget.cache b/Auth.Contracts/obj/project.nuget.cache new file mode 100644 index 0000000..554f4c6 --- /dev/null +++ b/Auth.Contracts/obj/project.nuget.cache @@ -0,0 +1,8 @@ +{ + "version": 2, + "dgSpecHash": "WCg+fXqEAMk=", + "success": true, + "projectFilePath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj", + "expectedPackageFiles": [], + "logs": [] +} \ No newline at end of file diff --git a/Auth.Core/Auth.Core.csproj b/Auth.Core/Auth.Core.csproj new file mode 100644 index 0000000..ca3b537 --- /dev/null +++ b/Auth.Core/Auth.Core.csproj @@ -0,0 +1,26 @@ + + + + net10.0 + enable + enable + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Auth.Core/Services/Auth/AuthService.cs b/Auth.Core/Services/Auth/AuthService.cs new file mode 100644 index 0000000..ffc1ea2 --- /dev/null +++ b/Auth.Core/Services/Auth/AuthService.cs @@ -0,0 +1,212 @@ +using System; +using System.Collections.Generic; +using System.IdentityModel.Tokens.Jwt; +using System.Linq; +using System.Threading.Tasks; +using Auth.Contracts.DTOs.Auth; +using Auth.Contracts.DTOs.Users; +using Auth.Core; +using Auth.Domain; +using Auth.Domain.Entities; +using Auth.Domain.Entities.HR; +using Generic.Contracts.Generics; +using Generic.Services; +using Microsoft.AspNetCore.Identity; +using Microsoft.EntityFrameworkCore; + +namespace Auth.Core.Services.Auth; + +public class AuthService +{ + private readonly UserManager userManager; + private readonly TokenGenerator tokenGenerator; + private readonly Context context; + private readonly EmailService emailService; + + public AuthService( + UserManager userManager, + TokenGenerator tokenGenerator, + Context appDbContext, + EmailService emailService + ) + { + this.emailService = emailService; + this.tokenGenerator = tokenGenerator; + this.context = appDbContext; + this.userManager = userManager; + } + + public async Task Login(LoginModel loginModel) + { + var user = await userManager.Users.FirstOrDefaultAsync(x => x.Email == loginModel.Email); + + if (user != null) + { + if (await userManager.CheckPasswordAsync(user, loginModel.Password)) + { + user.RefreshToken = tokenGenerator.CreateRefreshToken(); + user.RefreshTokenExpiryDate = DateTime.UtcNow.AddDays(30); + await userManager.UpdateAsync(user); + + var newAccessToken = await tokenGenerator.CreateJWT(user); + + return new TokenModel + { + AccessToken = new JwtSecurityTokenHandler().WriteToken(newAccessToken), + RefreshToken = user.RefreshToken, + Expiry = newAccessToken.ValidTo, + }; + } + } + return null; + } + + public async Task SignUp(RegisterModel registerModel) + { + var user = new AppUser() + { + UserName = registerModel.Email, + Email = registerModel.Email, + Name = registerModel.FullName, + }; + + var userWithSameEmail = await userManager.FindByEmailAsync(registerModel.Email); + if (userWithSameEmail is null) + { + var result = await userManager.CreateAsync(user, registerModel.Password); + + if (!result.Succeeded) + return $"Error registering user: {user.UserName} ({result.Errors.First().Description})"; + + await userManager.AddToRoleAsync(user, "User"); + var confirmToken = await userManager.GenerateEmailConfirmationTokenAsync(user); + await emailService.SendConfirmationEmail(user.Email, user, confirmToken); + + return ""; + } + + return $"Email {user.Email} is already registered."; + } + + public async Task RefreshToken(TokenModel tokenModel) + { + var principle = tokenGenerator.GetPrincipalFromExpiredToken(tokenModel.AccessToken); + if (principle != null) + { + var user = await userManager.FindByEmailAsync( + principle.Claims.First(x => x.Type == "UserName").Value + ); + if ( + user != null + && user.RefreshToken == tokenModel.RefreshToken + && user.RefreshTokenExpiryDate > DateTime.Now + ) + { + var newAccessToken = await tokenGenerator.CreateJWT(user); + return new TokenModel() + { + AccessToken = new JwtSecurityTokenHandler().WriteToken(newAccessToken), + RefreshToken = tokenModel.RefreshToken, + Expiry = newAccessToken.ValidTo, + }; + } + } + return null; + } + + public async Task SendChangePhoneNumberToken(string id, string phoneNumber) + { + var user = await userManager.FindByIdAsync(id); + if (await userManager.IsEmailConfirmedAsync(user)) + throw new Exception(); + + var token = await userManager.GenerateChangePhoneNumberTokenAsync(user, phoneNumber); + + await emailService.SendChangePhoneNumberToken(user.Email, user, token); + } + + public async Task ChangePhoneNumber( + string userId, + UpdatePhoneNumber updatePhoneNumber + ) + { + var user = await userManager.FindByIdAsync(userId); + var result = await userManager.ChangePhoneNumberAsync( + user, + updatePhoneNumber.PhoneNumber, + updatePhoneNumber.Token + ); + return result; + } + + public async Task SendEmailConfirmationToken(string id) + { + var user = await userManager.FindByIdAsync(id); + if (await userManager.IsEmailConfirmedAsync(user)) + throw new Exception(); + + var token = await userManager.GenerateEmailConfirmationTokenAsync(user); + await emailService.SendConfirmationEmail(user.Email, user, token); + } + + public async Task ConfirmEmail(string id, string token) + { + var user = await userManager.FindByIdAsync(id); + var result = await userManager.ConfirmEmailAsync(user, token); + return result.Succeeded; + } + + public async Task SendPasswordResetToken(string email) + { + var user = await userManager.FindByEmailAsync(email); + + var token = await userManager.GeneratePasswordResetTokenAsync(user); + await emailService.SendResetPasswordEmail(user.Email, user, token); + } + + public async Task ResetPassword(PasswordResetModel passwordResetModel) + { + var user = await userManager.FindByEmailAsync(passwordResetModel.Email); + await userManager.ResetPasswordAsync( + user, + passwordResetModel.Token, + passwordResetModel.Password + ); + } + + public async Task SendChangeEmailToken(RequestChangeEmail changeEmailModel, string userId) + { + var user = await userManager.FindByIdAsync(userId); + var isValid = await userManager.CheckPasswordAsync(user, changeEmailModel.Password); + if (isValid) + { + var token = await userManager.GenerateChangeEmailTokenAsync( + user, + changeEmailModel.NewEmail + ); + await emailService.SendConfirmationEmail(user.Email, user, token); + } + } + + public async Task ChangeEmail(string userId, ChangeEmailModel changeEmailModel) + { + var user = await userManager.FindByIdAsync(userId); + var result = await userManager.ChangeEmailAsync( + user, + changeEmailModel.NewEmail, + changeEmailModel.Token + ); + return result.Succeeded; + } + + public async Task RevokeRefreshToken(string userName) + { + var user = await userManager.FindByNameAsync(userName); + if (user == null) return false; + + user.RefreshToken = null; + await userManager.UpdateAsync(user); + + return true; + } +} diff --git a/Auth.Core/Services/Auth/EmailService.cs b/Auth.Core/Services/Auth/EmailService.cs new file mode 100755 index 0000000..0d31e61 --- /dev/null +++ b/Auth.Core/Services/Auth/EmailService.cs @@ -0,0 +1,57 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Auth.Contracts.DTOs.Auth; +using Auth.Contracts.DTOs.Users; +using Auth.Core; +using Auth.Domain; +using Auth.Domain.Entities; +using Auth.Domain.Entities.HR; +using Bogus; +using FluentEmail.Core; + +namespace Auth.Core.Services.Auth; + +public class EmailService +{ + private readonly IFluentEmail fluentEmail; + + public EmailService(IFluentEmail fluentEmail) + { + this.fluentEmail = fluentEmail; + } + + public async Task SendConfirmationEmail(string to, AppUser user, string token) + { + await fluentEmail + .To(to) + .Subject("Confirm Your Email.") + .UsingTemplateFromFile("../Auth.Contracts/EmailTemplates/ConfirmEmail.cshtml", (user, token)) + .SendAsync(); + } + + public async Task SendResetPasswordEmail(string to, AppUser user, string token) + { + await fluentEmail + .To(to) + .Subject("Reset Your Password.") + .UsingTemplateFromFile( + "../Auth.Contracts/EmailTemplates/ResetPassword.cshtml", + (user, token) + ) + .SendAsync(); + } + + public async Task SendChangePhoneNumberToken(string to, AppUser user, string token) + { + await fluentEmail + .To(to) + .Subject("Reset Your Password.") + .UsingTemplateFromFile( + "../Auth.Contracts/EmailTemplates/SendPhoneNumber.cshtml", + (user, token) + ) + .SendAsync(); + } +} diff --git a/Auth.Core/Services/Auth/RoleService.cs b/Auth.Core/Services/Auth/RoleService.cs new file mode 100644 index 0000000..d6520a4 --- /dev/null +++ b/Auth.Core/Services/Auth/RoleService.cs @@ -0,0 +1,13 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Auth.Contracts.DTOs.Auth; +using Auth.Contracts.DTOs.Users; +using Auth.Core; +using Auth.Domain; +using Auth.Domain.Entities; + +namespace Auth.Core.Services.Auth; + +public class RoleService { } diff --git a/Auth.Core/Services/Auth/TokenGenerator.cs b/Auth.Core/Services/Auth/TokenGenerator.cs new file mode 100755 index 0000000..ebfd523 --- /dev/null +++ b/Auth.Core/Services/Auth/TokenGenerator.cs @@ -0,0 +1,127 @@ +using System; +using System.Collections.Generic; +using System.IdentityModel.Tokens.Jwt; +using System.Linq; +using System.Security.Claims; +using System.Security.Cryptography; +using System.Text; +using System.Threading.Tasks; +using Auth.Contracts.DTOs.Auth; +using Auth.Contracts.DTOs.Users; +using Auth.Core; +using Auth.Domain; +using Auth.Domain.Entities; +using Auth.Domain.Entities.HR; +using Microsoft.AspNetCore.Identity; +using Microsoft.Extensions.Configuration; +using Microsoft.Extensions.Options; +using Microsoft.IdentityModel.Tokens; + +namespace Auth.Core.Services.Auth; + +public class TokenGenerator +{ + private readonly RoleManager roleManager; + private readonly UserManager userManager; + private readonly JWT jwt; + private readonly IConfiguration configuration; + + public TokenGenerator( + UserManager userManager, + RoleManager roleManager, + IOptions jwt, + IConfiguration configuration + ) + { + this.configuration = configuration; + this.jwt = jwt.Value; + this.userManager = userManager; + this.roleManager = roleManager; + } + + public async Task CreateJWT(AppUser user) + { + var userClaims = await userManager.GetClaimsAsync(user); + var roles = await userManager.GetRolesAsync(user); + var roleClaims = new List(); + + foreach (var roleName in roles) + { + roleClaims.Add(new Claim(ClaimTypes.Role, roleName)); + + var role = await roleManager.FindByNameAsync(roleName); + if (role != null) + { + var currentRoleClaims = await roleManager.GetClaimsAsync(role); + roleClaims.AddRange(currentRoleClaims); + } + } + + var claims = new[] + { + new Claim(ClaimTypes.Name, user.UserName ?? ""), + new Claim(JwtRegisteredClaimNames.Sub, user.UserName ?? ""), + new Claim(JwtRegisteredClaimNames.Jti, Guid.NewGuid().ToString()), + new Claim(JwtRegisteredClaimNames.Email, user.Email ?? ""), + new Claim("Name", user.Name ?? ""), + new Claim("UserName", user.Email ?? ""), + new Claim("confirmed", user.EmailConfirmed.ToString()), + new Claim("uid", user.Id), + new Claim("Holidays", user.Holidays.ToString()), + new Claim("PhotoPath", user.PhotoPath ?? ""), + } + .Union(userClaims) + .Union(roleClaims); + + var bytes = Encoding.UTF8.GetBytes(jwt.Key); + var symmetricSecurityKey = new SymmetricSecurityKey(bytes); + var signingCredentials = new SigningCredentials( + symmetricSecurityKey, + SecurityAlgorithms.HmacSha256 + ); + var jwtSecurityToken = new JwtSecurityToken( + issuer: jwt.Issuer, + audience: jwt.Audience, + claims: claims, + expires: DateTime.UtcNow.AddMinutes(jwt.DurationInMinutes), + signingCredentials: signingCredentials + ); + return jwtSecurityToken; + } + + public string CreateRefreshToken() + { + var token = Convert.ToBase64String(RandomNumberGenerator.GetBytes(64)); + + return token; + } + + public ClaimsPrincipal? GetPrincipalFromExpiredToken(string? token) + { + var tokenValidationParameters = new TokenValidationParameters + { + ValidateAudience = false, + ValidateIssuer = false, + ValidateIssuerSigningKey = true, + IssuerSigningKey = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(jwt.Key)), + ValidateLifetime = false, + }; + + var tokenHandler = new JwtSecurityTokenHandler(); + var principal = tokenHandler.ValidateToken( + token, + tokenValidationParameters, + out SecurityToken securityToken + ); + if ( + securityToken is not JwtSecurityToken jwtSecurityToken + || !jwtSecurityToken.Header.Alg.Equals( + SecurityAlgorithms.HmacSha256, + StringComparison.InvariantCultureIgnoreCase + ) + ) + throw new SecurityTokenException("Invalid token"); + + return principal; + } +} diff --git a/Auth.Core/Services/Email/EmailTemplateService.cs b/Auth.Core/Services/Email/EmailTemplateService.cs new file mode 100644 index 0000000..1e9bab6 --- /dev/null +++ b/Auth.Core/Services/Email/EmailTemplateService.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Core.Services.Email; + +public class EmailTemplateService +{ + +} diff --git a/Auth.Core/Services/HR/Users/GroupService.cs b/Auth.Core/Services/HR/Users/GroupService.cs new file mode 100644 index 0000000..5eead11 --- /dev/null +++ b/Auth.Core/Services/HR/Users/GroupService.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Auth.Domain; + +namespace Auth.Core.Services.HR.Users; + +public class GroupService +{ + private readonly Context context; + + public GroupService(Context context) + { + this.context = context; + } + + // public async Task CreateGroup(GroupVM groupVM) { } + + // public async Task ChangeUserGroup(GroupVM groupVM) { } + + // public async Task GetAllGroups(GroupVM groupVM) { } + + // public async Task GetGroup(GroupVM groupVM) { } +} diff --git a/Auth.Core/Services/HR/Users/HolidayService.cs b/Auth.Core/Services/HR/Users/HolidayService.cs new file mode 100644 index 0000000..34f1946 --- /dev/null +++ b/Auth.Core/Services/HR/Users/HolidayService.cs @@ -0,0 +1,25 @@ +// using System; +// using System.Collections.Generic; +// using System.Linq; +// using System.Threading.Tasks; +// using Domain; + +// namespace Auth.Core.Services.HR.Users; + +// public class HolidayService +// { +// private readonly Context context; + +// public HolidayService(Context context) +// { +// this.context = context; +// } + +// public async Task AddHolidaysToUser(string userId, int holidays) +// { +// var user = await context.AppUsers.FindAsync(userId); +// user.Holidays += holidays; +// context.Update(user); +// await context.SaveChangesAsync(); +// } +// } diff --git a/Auth.Core/Services/HR/Users/PunchService.cs b/Auth.Core/Services/HR/Users/PunchService.cs new file mode 100644 index 0000000..92e7db5 --- /dev/null +++ b/Auth.Core/Services/HR/Users/PunchService.cs @@ -0,0 +1,44 @@ +// using System; +// using System.Collections.Generic; +// using System.Linq; +// using System.Threading.Tasks; +// using Domain; + +// namespace Auth.Core.Services.HR.Users; + +// public class PunchService +// { +// private readonly Context context; + +// public PunchService(Context context) +// { +// this.context = context; +// } + +// // public async Task CreateSinglePunch(PunchVM punchVM) +// // { +// // await context.Punches.AddAsync(punchVM); +// // await context.SaveChangesAsync(); +// // } + +// // public async Task UpdatePunch(PunchVM punchVM) +// // { +// // context.Update(punchVM); +// // await context.SaveChangesAsync(); +// // } + +// // public async Task AddBulkPunches(PunchVM[] punchVMs) +// // { +// // await context.AddRangeAsync(punchVMs); +// // await context.SaveChangesAsync(); +// // } + +// // public async Task DetermineIfPunchAttendOrLeave() { } + +// // public async Task GetPunchesInADay() +// // { +// // // Get Correct Punches ... determine if it should be attendant or leave, how many punches and get first and last , if not after midnight +// // } + +// // public async Task GetAllPunches() { } +// } diff --git a/Auth.Core/Services/HR/Users/RulesService.cs b/Auth.Core/Services/HR/Users/RulesService.cs new file mode 100644 index 0000000..3a37c2e --- /dev/null +++ b/Auth.Core/Services/HR/Users/RulesService.cs @@ -0,0 +1,19 @@ +// using System; +// using System.Collections.Generic; +// using System.Linq; +// using System.Threading.Tasks; +// using Domain; + +// namespace Auth.Core.Services.HR.Users; + +// public class RulesService +// { +// private readonly Context context; + +// public RulesService(Context context) +// { +// this.context = context; +// } + +// public async Task CreateRule() { } +// } diff --git a/Auth.Core/Services/HR/Users/SalaryPaymentService.cs b/Auth.Core/Services/HR/Users/SalaryPaymentService.cs new file mode 100644 index 0000000..e8715bb --- /dev/null +++ b/Auth.Core/Services/HR/Users/SalaryPaymentService.cs @@ -0,0 +1,23 @@ +// using System; +// using System.Collections.Generic; +// using System.Linq; +// using System.Threading.Tasks; + +// namespace Auth.Core.Services.HR.Users; + +// public class SalaryPaymentService +// { +// public SalaryPaymentService() { } + +// // GetPunches() +// // GetHolidaysFromPunches() + +// // PutPunchesToPunchesRules() + + +// // PutDaysToDaysRules() +// // CalculateHolidays() + +// // CalculateSalary() +// // PaySalary() +// } diff --git a/Auth.Core/Services/HR/Users/SalaryService.cs b/Auth.Core/Services/HR/Users/SalaryService.cs new file mode 100644 index 0000000..59ea885 --- /dev/null +++ b/Auth.Core/Services/HR/Users/SalaryService.cs @@ -0,0 +1,26 @@ +// using System; +// using System.Collections.Generic; +// using System.Linq; +// using System.Threading.Tasks; +// using Contracts.DTOs.HR; +// using Domain; +// using Domain.Entities.HR; +// using Microsoft.EntityFrameworkCore; + +// namespace Auth.Core.Services.HR.Users; + +// public class SalaryService +// { +// private readonly Context context; + +// public SalaryService(Context context) +// { +// this.context = context; +// } + +// public async Task AddNewSalaryToUser(SalaryVM salaryVM) +// { +// await context.Salaries.AddAsync(Salary.ToEntity(salaryVM)); +// await context.SaveChangesAsync(); +// } +// } diff --git a/Auth.Core/Services/HR/Users/UserService.cs b/Auth.Core/Services/HR/Users/UserService.cs new file mode 100755 index 0000000..6bcbb85 --- /dev/null +++ b/Auth.Core/Services/HR/Users/UserService.cs @@ -0,0 +1,154 @@ +using System.Security.Cryptography.X509Certificates; +using Auth.Contracts.DTOs.Auth; +using Auth.Contracts.DTOs.Users; +using Auth.Core; +using Auth.Core.Services.Auth; +using Auth.Domain; +using Auth.Domain.Entities; +using Auth.Domain.Entities.HR; +using Generic.Services; + + +using Microsoft.AspNetCore.Identity; +using Microsoft.EntityFrameworkCore; + +namespace Auth.Core.Services.HR.Users; + +public class UserService +{ + private readonly UserManager userManager; + private readonly TokenGenerator tokenGenerator; + private readonly Context context; + private readonly EmailService emailService; + + // private readonly OrderService orderService; + + public UserService( + UserManager userManager, + TokenGenerator tokenGenerator, + Context appDbContext, + EmailService emailService + ) + { + this.emailService = emailService; + this.tokenGenerator = tokenGenerator; + context = appDbContext; + this.userManager = userManager; + } + + public async Task GetUser(string id) + { + try + { + var user = await context.AppUsers.Where(x => x.Id == id).FirstOrDefaultAsync(); + return new UserView() + { + Name = user.Name, + PhotoPath = user.PhotoPath, + PhoneNumber = user.PhoneNumber, + Email = user.Email, + }; + } + catch + { + throw new Exception(); + } + } + + public async Task> GetAllUsers() + { + var users = await userManager.Users.ToListAsync(); + // foreach (var user in users) + // { + // user.Roles = (await userManager.GetRolesAsync(user)).ToList(); + // } + return users.Select(x => AppUser.ToVM(x)).ToList(); + } + + public async Task UpdateUserInfo(UserInfoUpdate userVM, string userId) + { + var user = await userManager.FindByIdAsync(userId); + if (user is not null) + { + user.Name = userVM.Name; + user.PhotoPath = userVM.PhotoPath; + await userManager.UpdateAsync(user); + } + } + + // public async Task GetLocation(string userId) + // { + // var user = await userManager.FindByIdAsync(userId); + // if (user != null) + // { + // return new Location() + // { + // Address = user.Address, + // Building = user.Building, + // Flat = user.Flat, + // Floor = user.Floor, + // Lat = user.locationLati, + // Lng = user.locationLong, + // }; + // } + // return null; + // } + + // public async Task UpdateLocation(Location location, string userId) + // { + // var user = await userManager.FindByIdAsync(userId); + + // if (user != null) + // { + // user.Address = location.Address; + // user.Building = location.Building; + // user.Flat = location.Flat; + // user.Floor = location.Floor; + // user.locationLati = location.Lat; + // user.locationLong = location.Lng; + // } + + // context.Update(user); + // await context.SaveChangesAsync(); + // return location; + // } + + // public async Task> FilterUsers(IQueryable query, UserFilter userFilter) + // { + // var list = query.ToList(); + + // if (!string.IsNullOrEmpty(userFilter.Role)) + // query = await userManager.GetUsersInRoleAsync(userFilter.Role); + + // if (userFilter.UserFilterBy == UserFilterBy.Name) + // query = query.Where(x => x.Name == userFilter.Search); + + // if (userFilter.UserFilterBy == UserFilterBy.Email) + // query = query.Where(x => x.Email == userFilter.Search); + + // if (userFilter.UserFilterBy == UserFilterBy.PhoneNumber) + // query = query.Where(x => x.PhoneNumber == userFilter.Search); + + // query.Where(x => true).Include(x => x.Role) + + // return query; + + // } + + // public async Task UpdateUser(string id, AppUser user) + // { + // //change Email + // //change Password + // //change + // } + + // public async Task SignUp(AppUser user) + // { + // await userManager.CreateAsync(user); + // } + + // public async Task Login() + // { + + // } +} diff --git a/Auth.Core/Services/Requests/RequestService.cs b/Auth.Core/Services/Requests/RequestService.cs new file mode 100644 index 0000000..dfd5d1b --- /dev/null +++ b/Auth.Core/Services/Requests/RequestService.cs @@ -0,0 +1,130 @@ +// using System; +// using System.Collections.Generic; +// using System.Linq; +// using System.Threading.Tasks; +// using Contracts; +// using Contracts.DTOs.Generic; +// using Contracts.DTOs.Requests; +// using Core.Utils; +// using Domain; +// using Domain.Entities; +// using Microsoft.EntityFrameworkCore; + +// namespace Auth.Core.Services.Requests; + +// public class RequestService +// { +// private readonly Context context; + +// public RequestService(Context context) +// { +// this.context = context; +// } + +// public async Task CreateRequest(RequestVM requestVM, string userId) +// { +// requestVM.IssuerId = userId; +// requestVM = CreateTitleAndDescription(requestVM); +// var request = Request.ToEntity(requestVM); +// await context.Requests.AddAsync(request); +// await context.SaveChangesAsync(); +// } + +// public async Task<(List, int)> GetRequests( +// RequestFilter requestFilter, +// Pagination pagination +// ) +// { +// var query = context.Requests.AsQueryable(); +// query = query.ApplyFilter(requestFilter); +// // query = query.ApplySorting(sortBy); +// var count = query.Count(); +// query = query.Paginate(pagination); +// query = query.Include(x => x.AcceptedBy).Include(x => x.Issuer); +// return (await query.ToListAsync(), count); +// } + +// public async Task> GetRequestsAsUser(RequestFilter requestFilter, string id) +// { +// return await context.Requests.Where(x => x.IssuerId == id).ToListAsync(); +// } + +// public async Task TreatRequest(RequestVM requestVM, string id) +// { +// var request = await context.Requests.FirstOrDefaultAsync(x => +// x.Id == requestVM.Id && requestVM.AcceptedById == id +// ); +// var user = await context.AppUsers.FindAsync(id); +// if (request != null) +// { +// request.AcceptedBy = user; +// request.DateRequestTreated = DateTime.UtcNow; +// request.RequestStatus = requestVM.RequestStatus; +// context.Requests.Update(request); +// } +// await context.SaveChangesAsync(); +// } + +// public RequestVM CreateTitleAndDescription(RequestVM requestVM) +// { +// if (requestVM.RequestType == AppEnum.RequestType.LeavePermission) +// { +// if (requestVM.IsLeaveEarly == true) +// { +// requestVM.Title = "خروج مبكر"; +// requestVM.Description = +// $"طلب موافقة على الخروج المبكر يوم {requestVM.PermissionDate} الساعة {requestVM.PermissionTime}."; +// } +// else +// { +// requestVM.Title = "دخول متأخر"; +// requestVM.Description = +// $"طلب موافقة على الدخول المتأخر يوم {requestVM.PermissionDate} الساعة {requestVM.PermissionTime}."; +// } +// } +// else if (requestVM.RequestType == AppEnum.RequestType.Punches) +// { +// if (requestVM.IsAttend == true) +// { +// requestVM.Title = "تسجيل دخول"; +// requestVM.Description = +// $"طلب موافقة على تسجيل الدخول بتاريخ {requestVM.PunchDate} والساعة {requestVM.PunchTime}."; +// } +// else +// { +// requestVM.Title = "تسجيل خروج"; +// requestVM.Description = +// $"طلب موافقة على تسجيل الخروج بتاريخ {requestVM.PunchDate} والساعة {requestVM.PunchTime}."; +// } +// } +// else if (requestVM.RequestType == AppEnum.RequestType.AbsencePermission) +// { +// if (requestVM.IsFromHolidays == true) +// { +// requestVM.Title = "طلب أجازة"; +// requestVM.Description = +// $"طلب إذن بالغياب يوم {requestVM.AbsenceDate} و يحسب من رصيد الأجازات السنوية."; +// } +// else +// { +// requestVM.Title = "إذن بالغياب"; +// requestVM.Description = $"طلب إذن بالغياب يوم {requestVM.AbsenceDate}."; +// } +// } +// else if (requestVM.RequestType == AppEnum.RequestType.Financial) +// { +// if (requestVM.FinancialType == AppEnum.FinancialType.Loan) +// { +// requestVM.Title = "طلب سلفة"; +// requestVM.Description = $"طلب سلفة بقيمة {requestVM.Amount}."; +// } +// else if (requestVM.FinancialType == AppEnum.FinancialType.Incentive) +// { +// requestVM.Title = "طلب تسوية مالية"; +// requestVM.Description = $"طلب تسوية مالية قيمتها {requestVM.Amount}."; +// } +// } + +// return requestVM; +// } +// } diff --git a/Auth.Core/Utility/FilterExtension.cs b/Auth.Core/Utility/FilterExtension.cs new file mode 100644 index 0000000..495c62a --- /dev/null +++ b/Auth.Core/Utility/FilterExtension.cs @@ -0,0 +1,126 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Linq.Expressions; +using System.Reflection; +using System.Threading.Tasks; + +namespace Auth.Core.Utility; + +public static class FilterExtension +{ + public static IQueryable ApplyFilter(this IQueryable query, TFilter filter) + where TFilter : class + { + if (filter == null) + return query; + + var parameter = Expression.Parameter(typeof(T), "x"); + Expression finalExpression = null; + + var filterProperties = typeof(TFilter) + .GetProperties() + .Where(p => p.GetValue(filter) != null); + + foreach (var filterProperty in filterProperties) + { + var filterValue = filterProperty.GetValue(filter); + if (filterValue == null) + continue; + + var propertyName = filterProperty.Name; + PropertyInfo entityProperty; + + Expression propertyExpression = null; + Expression comparison = null; + + // Handle special suffix cases + if (propertyName.EndsWith("_Start") || propertyName.EndsWith("_Min")) + { + entityProperty = typeof(T).GetProperty( + propertyName.Substring(0, propertyName.LastIndexOf('_')) + ); + if (entityProperty != null) + { + propertyExpression = Expression.Property(parameter, entityProperty); + comparison = Expression.GreaterThanOrEqual( + propertyExpression, + Expression.Constant(filterValue, entityProperty.PropertyType) + ); + } + } + else if (propertyName.EndsWith("_End") || propertyName.EndsWith("_Max")) + { + entityProperty = typeof(T).GetProperty( + propertyName.Substring(0, propertyName.LastIndexOf('_')) + ); + if (entityProperty != null) + { + propertyExpression = Expression.Property(parameter, entityProperty); + comparison = Expression.LessThanOrEqual( + propertyExpression, + Expression.Constant(filterValue, entityProperty.PropertyType) + ); + } + } + else if (propertyName.EndsWith("Name", StringComparison.OrdinalIgnoreCase)) + { + entityProperty = typeof(T).GetProperty(propertyName); + if (entityProperty != null && entityProperty.PropertyType == typeof(string)) + { + propertyExpression = Expression.Property(parameter, entityProperty); + + // For string Contains operation + var containsMethod = typeof(string).GetMethod( + "Contains", + new[] { typeof(string) } + ); + var filterValueString = filterValue.ToString(); + + comparison = Expression.Call( + propertyExpression, + containsMethod, + Expression.Constant(filterValueString, typeof(string)) + ); + } + else if (entityProperty != null) + { + // Fall back to equality comparison if it's not a string + propertyExpression = Expression.Property(parameter, entityProperty); + comparison = Expression.Equal( + propertyExpression, + Expression.Constant(filterValue, entityProperty.PropertyType) + ); + } + } + else + { + entityProperty = typeof(T).GetProperty(propertyName); + if (entityProperty != null) + { + propertyExpression = Expression.Property(parameter, entityProperty); + comparison = Expression.Equal( + propertyExpression, + Expression.Constant(filterValue, entityProperty.PropertyType) + ); + } + } + + if (comparison != null) + { + finalExpression = + finalExpression == null + ? comparison + : Expression.AndAlso(finalExpression, comparison); + } + } + + if (finalExpression != null) + { + var lambda = Expression.Lambda>(finalExpression, parameter); + query = query.Where(lambda); + } + + return query; + } +} diff --git a/Auth.Core/Utility/IEnumerableExtensions.cs b/Auth.Core/Utility/IEnumerableExtensions.cs new file mode 100644 index 0000000..d019c42 --- /dev/null +++ b/Auth.Core/Utility/IEnumerableExtensions.cs @@ -0,0 +1,27 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Core.Utility; + +public static class IEnumerableExtensions +{ + public static IEnumerable> Batch(this IEnumerable source, int batchSize) + { + var batch = new List(batchSize); + foreach (var item in source) + { + batch.Add(item); + if (batch.Count == batchSize) + { + yield return batch; + batch = new List(batchSize); + } + } + if (batch.Count > 0) + { + yield return batch; + } + } +} diff --git a/Auth.Core/Utility/Pagination.cs b/Auth.Core/Utility/Pagination.cs new file mode 100755 index 0000000..0238ece --- /dev/null +++ b/Auth.Core/Utility/Pagination.cs @@ -0,0 +1,19 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Auth.Contracts.DTOs; +using Auth.Contracts; + +namespace Auth.Core.Utility; + +public static class Pagination + where T : class +{ + public static IQueryable Paginate(IQueryable query, Pagination pagination) + { + return query + .Skip((pagination.CurrentPage.Value - 1) * pagination.PageSize.Value) + .Take(pagination.PageSize.Value); + } +} diff --git a/Auth.Core/Utility/PaginationExtension.cs b/Auth.Core/Utility/PaginationExtension.cs new file mode 100644 index 0000000..f36abd6 --- /dev/null +++ b/Auth.Core/Utility/PaginationExtension.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Generic.Contracts.Generics; + +namespace Auth.Core.Utility; + +public static class PaginationExtension +{ + public static IQueryable Paginate(this IQueryable query, Pagination pagination) + { + if (pagination.CurrentPage.HasValue && pagination.PageSize.HasValue) + return query + .Skip((pagination.CurrentPage.Value - 1) * pagination.PageSize.Value) + .Take(pagination.PageSize.Value); + else + return query; + } +} diff --git a/Auth.Core/Utility/QueryableExtensions.cs b/Auth.Core/Utility/QueryableExtensions.cs new file mode 100644 index 0000000..be207ef --- /dev/null +++ b/Auth.Core/Utility/QueryableExtensions.cs @@ -0,0 +1,30 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Linq.Expressions; +using System.Threading.Tasks; + +namespace Auth.Core.Utility; + +public static class QueryableExtensions +{ + public static IQueryable ApplySorting(this IQueryable source, SortModel sortBy) + { + // Parameter for lambda expression, e.g., "p" in "p => p.Property" + var parameter = Expression.Parameter(typeof(T), "p"); + + // Access the property on the parameter, e.g., "p.Property" + var property = Expression.Property(parameter, sortBy.SortBy); + + // Cast property access to an object (boxing value types) + var converted = Expression.Convert(property, typeof(object)); + + // Create the lambda expression, e.g., "p => (object)p.Property" + var keySelector = Expression.Lambda>(converted, parameter); + + // Apply OrderBy or OrderByDescending based on the ascending flag + return sortBy.SortDirection == SortDir.Ascending + ? source.OrderBy(keySelector) + : source.OrderByDescending(keySelector); + } +} diff --git a/Auth.Core/bin/Debug/net10.0/Auth.Contracts.dll b/Auth.Core/bin/Debug/net10.0/Auth.Contracts.dll new file mode 100644 index 0000000..0002357 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/Auth.Contracts.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/Auth.Contracts.pdb b/Auth.Core/bin/Debug/net10.0/Auth.Contracts.pdb new file mode 100644 index 0000000..0ea86a1 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/Auth.Contracts.pdb differ diff --git a/Auth.Core/bin/Debug/net10.0/Auth.Core.deps.json b/Auth.Core/bin/Debug/net10.0/Auth.Core.deps.json new file mode 100644 index 0000000..51e90da --- /dev/null +++ b/Auth.Core/bin/Debug/net10.0/Auth.Core.deps.json @@ -0,0 +1,374 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "Auth.Core/1.0.0": { + "dependencies": { + "Auth.Contracts": "1.0.0", + "Auth.Domain": "1.0.0", + "FluentEmail.Core": "3.0.2", + "FluentEmail.Smtp": "3.0.2", + "Generic": "1.0.0", + "Microsoft.AspNetCore.Authentication.JwtBearer": "10.0.0", + "Microsoft.EntityFrameworkCore": "10.0.0", + "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "Auth.Core.dll": {} + } + }, + "Bogus/35.6.3": { + "runtime": { + "lib/net6.0/Bogus.dll": { + "assemblyVersion": "35.6.3.0", + "fileVersion": "35.6.3.0" + } + } + }, + "FluentEmail.Core/3.0.2": { + "runtime": { + "lib/netstandard2.0/FluentEmail.Core.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "FluentEmail.Smtp/3.0.2": { + "dependencies": { + "FluentEmail.Core": "3.0.2" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Smtp.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/10.0.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/10.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.EntityFrameworkCore/10.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Npgsql/10.0.0": { + "runtime": { + "lib/net10.0/Npgsql.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.0.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.0", + "Microsoft.EntityFrameworkCore.Relational": "10.0.0", + "Npgsql": "10.0.0" + }, + "runtime": { + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.0.0" + } + } + }, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.12.1", + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Auth.Contracts/1.0.0": { + "runtime": { + "Auth.Contracts.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Auth.Domain/1.0.0": { + "dependencies": { + "Auth.Contracts": "1.0.0", + "Bogus": "35.6.3", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "10.0.0", + "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0" + }, + "runtime": { + "Auth.Domain.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Generic/1.0.0": { + "runtime": { + "Generic.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "Auth.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Bogus/35.6.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+5omfZWy8gOcbpc48vKfMI4h/ecbdf3NQm6xCl3zMbaP4J3rMMm5h3kPFeIWBgt4mbz6YY0eeZDLR/6yv1khKw==", + "path": "bogus/35.6.3", + "hashPath": "bogus.35.6.3.nupkg.sha512" + }, + "FluentEmail.Core/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==", + "path": "fluentemail.core/3.0.2", + "hashPath": "fluentemail.core.3.0.2.nupkg.sha512" + }, + "FluentEmail.Smtp/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==", + "path": "fluentemail.smtp/3.0.2", + "hashPath": "fluentemail.smtp.3.0.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0BgDfT1GoZnzjJOBwx5vFMK5JtqsTEas9pCEwd1/KKxNUAqFmreN60WeUoF+CsmSd9tOQuqWedvdBo/QqHuNTQ==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/10.0.0", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mH1+58nbX5RWSd8hajSnXSdpQ1MN3oca488Zd+DvKX2nPTAyTVNRzubMV06BmPcjOZ9waLr/AjwcNiCQ8bCscQ==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/10.0.0", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.10.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hHa2amRjMyBLUH/KTML6FgIAhZ0VFYkhCKwWEax0rO6iNeM1P5MflyeQLE5dniSIOZHc3Oqyv5UIyTFO4e1Auw==", + "path": "microsoft.entityframeworkcore/10.0.0", + "hashPath": "microsoft.entityframeworkcore.10.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C+TT9k7f1GQ8agOfV512K9iwrzi76RXVSDiLx+iWC9pz3QhEpSF1Dyk+FpVvd8ULQ+rqymfM8KQ7g48ttQVyMg==", + "path": "microsoft.entityframeworkcore.abstractions/10.0.0", + "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-A3MX1ee7RDxWCUdx/KqP+74fbksz0UIhkVZh56YHvbPkEKsffCXgHU3LGkRDwqR/MrBNWLCWC/IVX79tzM30ZA==", + "path": "microsoft.entityframeworkcore.relational/10.0.0", + "hashPath": "microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JzWhET0VOCORyJbqDc1Wtdl8Q/l+I1MjFB0I/Jko+Ma691JZll8X6o9XwZtUce8FkqGuV4uY4/V1808XZOpDVg==", + "path": "microsoft.identitymodel.abstractions/8.12.1", + "hashPath": "microsoft.identitymodel.abstractions.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-imi3xiRLzzKxN4m1aR9Z2X8GUmNsVH7GLA6AkwYStNnh3UzupFtHEEVk3GK1fCvnYdRbpnCGNYY6WQb9AfDAKg==", + "path": "microsoft.identitymodel.jsonwebtokens/8.12.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-39HjVkU7Voe2jRLmORRB5PoTmta1ZPKzUZCc6ldlNlLzdx+um0+fAnvfk05LUQPrNxpvb5ZoqF00SrNvyO2Fzg==", + "path": "microsoft.identitymodel.logging/8.12.1", + "hashPath": "microsoft.identitymodel.logging.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "path": "microsoft.identitymodel.protocols/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DzgPEABn3eZmIk4lhov0QPcoHkIbnAfgkyDPM7uGuWDHeockR9DdqNCD9Zy30hPfExu5VhbOXn9oPRi+tFUhEQ==", + "path": "microsoft.identitymodel.tokens/8.12.1", + "hashPath": "microsoft.identitymodel.tokens.8.12.1.nupkg.sha512" + }, + "Npgsql/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", + "path": "npgsql/10.0.0", + "hashPath": "npgsql.10.0.0.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", + "path": "npgsql.entityframeworkcore.postgresql/10.0.0", + "hashPath": "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jlYdVOJrdeyD80ppEqKJ8BhJdrV3MjeA+seURdhC0DnD41GyUA9Ik+P7Sb571ufVVCYIx93GjeqVvY3QyQxZAA==", + "path": "system.identitymodel.tokens.jwt/8.12.1", + "hashPath": "system.identitymodel.tokens.jwt.8.12.1.nupkg.sha512" + }, + "Auth.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Auth.Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Generic/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Auth.Core/bin/Debug/net10.0/Auth.Core.dll b/Auth.Core/bin/Debug/net10.0/Auth.Core.dll new file mode 100644 index 0000000..7ed58d3 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/Auth.Core.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/Auth.Core.pdb b/Auth.Core/bin/Debug/net10.0/Auth.Core.pdb new file mode 100644 index 0000000..9d4ab2e Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/Auth.Core.pdb differ diff --git a/Auth.Core/bin/Debug/net10.0/Auth.Domain.dll b/Auth.Core/bin/Debug/net10.0/Auth.Domain.dll new file mode 100644 index 0000000..9fb83f2 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/Auth.Domain.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/Auth.Domain.pdb b/Auth.Core/bin/Debug/net10.0/Auth.Domain.pdb new file mode 100644 index 0000000..3cf6984 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/Auth.Domain.pdb differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll new file mode 100755 index 0000000..13b1021 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe new file mode 100755 index 0000000..00dd99f Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config new file mode 100755 index 0000000..f52998b --- /dev/null +++ b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll new file mode 100755 index 0000000..88e63d8 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll new file mode 100755 index 0000000..1d035d6 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll new file mode 100755 index 0000000..f2d83c5 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll new file mode 100755 index 0000000..7594b2e Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll new file mode 100755 index 0000000..d0bbad5 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll new file mode 100755 index 0000000..4617199 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll new file mode 100755 index 0000000..0865972 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll new file mode 100755 index 0000000..c5ba4e4 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll new file mode 100755 index 0000000..eeec928 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll new file mode 100755 index 0000000..0be3757 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll new file mode 100755 index 0000000..bfed293 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll new file mode 100755 index 0000000..5e1c416 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll new file mode 100755 index 0000000..2916bdf Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll new file mode 100755 index 0000000..1a55c94 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll new file mode 100755 index 0000000..c1be153 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll new file mode 100755 index 0000000..bfcbbc6 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll new file mode 100755 index 0000000..b9efaec Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll new file mode 100755 index 0000000..69612cb Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll new file mode 100755 index 0000000..042aaf8 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll new file mode 100755 index 0000000..629b98b Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll new file mode 100755 index 0000000..ff8dacb Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll new file mode 100755 index 0000000..9b9870a Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll new file mode 100755 index 0000000..cafcf21 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json new file mode 100755 index 0000000..ed7fe7a --- /dev/null +++ b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json @@ -0,0 +1,260 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost/4.14.0-3.25262.10": { + "dependencies": { + "Microsoft.Build.Locator": "1.6.10", + "Microsoft.CodeAnalysis.NetAnalyzers": "8.0.0-preview.23468.1", + "Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers": "3.3.4-beta1.22504.1", + "Microsoft.DotNet.XliffTasks": "9.0.0-beta.25255.5", + "Microsoft.VisualStudio.Threading.Analyzers": "17.13.2", + "Newtonsoft.Json": "13.0.3", + "Roslyn.Diagnostics.Analyzers": "3.11.0-beta1.24081.1", + "System.Collections.Immutable": "9.0.0", + "System.CommandLine": "2.0.0-beta4.24528.1" + }, + "runtime": { + "Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": {} + }, + "resources": { + "cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Build.Locator/1.6.10": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.6.10.57384" + } + } + }, + "Microsoft.CodeAnalysis.BannedApiAnalyzers/3.11.0-beta1.24081.1": {}, + "Microsoft.CodeAnalysis.NetAnalyzers/8.0.0-preview.23468.1": {}, + "Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers/3.3.4-beta1.22504.1": {}, + "Microsoft.CodeAnalysis.PublicApiAnalyzers/3.11.0-beta1.24081.1": {}, + "Microsoft.DotNet.XliffTasks/9.0.0-beta.25255.5": {}, + "Microsoft.VisualStudio.Threading.Analyzers/17.13.2": {}, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Roslyn.Diagnostics.Analyzers/3.11.0-beta1.24081.1": { + "dependencies": { + "Microsoft.CodeAnalysis.BannedApiAnalyzers": "3.11.0-beta1.24081.1", + "Microsoft.CodeAnalysis.PublicApiAnalyzers": "3.11.0-beta1.24081.1" + } + }, + "System.Collections.Immutable/9.0.0": { + "dependencies": { + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.CommandLine/2.0.0-beta4.24528.1": { + "dependencies": { + "System.Memory": "4.5.5" + }, + "runtime": { + "lib/netstandard2.0/System.CommandLine.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.24.52801" + } + }, + "resources": { + "lib/netstandard2.0/cs/System.CommandLine.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.CommandLine.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.CommandLine.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.CommandLine.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.CommandLine.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.CommandLine.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.CommandLine.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.CommandLine.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.CommandLine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.CommandLine.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.CommandLine.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.CommandLine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.CommandLine.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Memory/4.5.5": {}, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {} + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost/4.14.0-3.25262.10": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Build.Locator/1.6.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DJhCkTGqy1LMJzEmG/2qxRTMHwdPc3WdVoGQI5o5mKHVo4dsHrCMLIyruwU/NSvPNSdvONlaf7jdFXnAMuxAuA==", + "path": "microsoft.build.locator/1.6.10", + "hashPath": "microsoft.build.locator.1.6.10.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.BannedApiAnalyzers/3.11.0-beta1.24081.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DH6L3rsbjppLrHM2l2/NKbnMaYd0NFHx2pjZaFdrVcRkONrV3i9FHv6Id8Dp6/TmjhXQsJVJJFbhhjkpuP1xxg==", + "path": "microsoft.codeanalysis.bannedapianalyzers/3.11.0-beta1.24081.1", + "hashPath": "microsoft.codeanalysis.bannedapianalyzers.3.11.0-beta1.24081.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.NetAnalyzers/8.0.0-preview.23468.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZhIvyxmUCqb8OiU/VQfxfuAmIB4lQsjqhMVYKeoyxzSI+d7uR5Pzx3ZKoaIhPizQ15wa4lnyD6wg3TnSJ6P4LA==", + "path": "microsoft.codeanalysis.netanalyzers/8.0.0-preview.23468.1", + "hashPath": "microsoft.codeanalysis.netanalyzers.8.0.0-preview.23468.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers/3.3.4-beta1.22504.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2XRlqPAzVke7Sb80+UqaC7o57OwfK+tIr+aIOxrx41RWDMeR2SBUW7kL4sd6hfLFfBNsLo3W5PT+UwfvwPaOzA==", + "path": "microsoft.codeanalysis.performancesensitiveanalyzers/3.3.4-beta1.22504.1", + "hashPath": "microsoft.codeanalysis.performancesensitiveanalyzers.3.3.4-beta1.22504.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.PublicApiAnalyzers/3.11.0-beta1.24081.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3bYGBihvoNO0rhCOG1U9O50/4Q8suZ+glHqQLIAcKvnodSnSW+dYWYzTNb1UbS8pUS8nAUfxSFMwuMup/G5DtQ==", + "path": "microsoft.codeanalysis.publicapianalyzers/3.11.0-beta1.24081.1", + "hashPath": "microsoft.codeanalysis.publicapianalyzers.3.11.0-beta1.24081.1.nupkg.sha512" + }, + "Microsoft.DotNet.XliffTasks/9.0.0-beta.25255.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bb0fZB5ViPscdfYeWlmtyXJMzNkgcpkV5RWmXktfV9lwIUZgNZmFotUXrdcTyZzrN7v1tQK/Y6BGnbkP9gEsXg==", + "path": "microsoft.dotnet.xlifftasks/9.0.0-beta.25255.5", + "hashPath": "microsoft.dotnet.xlifftasks.9.0.0-beta.25255.5.nupkg.sha512" + }, + "Microsoft.VisualStudio.Threading.Analyzers/17.13.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Qcd8IlaTXZVq3wolBnzby1P7kWihdWaExtD8riumiKuG1sHa8EgjV/o70TMjTaeUMhomBbhfdC9OPwAHoZfnjQ==", + "path": "microsoft.visualstudio.threading.analyzers/17.13.2", + "hashPath": "microsoft.visualstudio.threading.analyzers.17.13.2.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" + }, + "Roslyn.Diagnostics.Analyzers/3.11.0-beta1.24081.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-reHqZCDKifA+DURcL8jUfYkMGL4FpgNt5LI0uWTS6IpM8kKVbu/kO8byZsqfhBu4wUzT3MBDcoMfzhZPdENIpg==", + "path": "roslyn.diagnostics.analyzers/3.11.0-beta1.24081.1", + "hashPath": "roslyn.diagnostics.analyzers.3.11.0-beta1.24081.1.nupkg.sha512" + }, + "System.Collections.Immutable/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QhkXUl2gNrQtvPmtBTQHb0YsUrDiDQ2QS09YbtTTiSjGcf7NBqtYbrG/BE06zcBPCKEwQGzIv13IVdXNOSub2w==", + "path": "system.collections.immutable/9.0.0", + "hashPath": "system.collections.immutable.9.0.0.nupkg.sha512" + }, + "System.CommandLine/2.0.0-beta4.24528.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xt8tsSU8yd0ZpbT9gl5DAwkMYWLo8PV1fq2R/belrUbHVVOIKqhLfbWksbdknUDpmzMHZenBtD6AGAp9uJTa2w==", + "path": "system.commandline/2.0.0-beta4.24528.1", + "hashPath": "system.commandline.2.0.0-beta4.24528.1.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.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" + } + } +} \ No newline at end of file diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll new file mode 100755 index 0000000..993b54f Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config new file mode 100755 index 0000000..27bdea7 --- /dev/null +++ b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config @@ -0,0 +1,605 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json new file mode 100755 index 0000000..3a5998a --- /dev/null +++ b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json @@ -0,0 +1,13 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + "rollForward": "Major", + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false + } + } +} \ No newline at end of file diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll new file mode 100755 index 0000000..87bf9aa Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll new file mode 100755 index 0000000..b182127 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll new file mode 100755 index 0000000..d0bbad5 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll new file mode 100755 index 0000000..0be3757 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll new file mode 100755 index 0000000..bfed293 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll new file mode 100755 index 0000000..5e1c416 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll new file mode 100755 index 0000000..2916bdf Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll new file mode 100755 index 0000000..1a55c94 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll new file mode 100755 index 0000000..c1be153 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll new file mode 100755 index 0000000..bfcbbc6 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll new file mode 100755 index 0000000..b9efaec Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll new file mode 100755 index 0000000..69612cb Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll new file mode 100755 index 0000000..042aaf8 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll new file mode 100755 index 0000000..629b98b Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll new file mode 100755 index 0000000..ff8dacb Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll new file mode 100755 index 0000000..9b9870a Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/Generic.dll b/Auth.Core/bin/Debug/net10.0/Generic.dll new file mode 100644 index 0000000..3eae051 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/Generic.dll differ diff --git a/Auth.Core/bin/Debug/net10.0/Generic.pdb b/Auth.Core/bin/Debug/net10.0/Generic.pdb new file mode 100644 index 0000000..a71b682 Binary files /dev/null and b/Auth.Core/bin/Debug/net10.0/Generic.pdb differ diff --git a/Auth.Core/bin/Debug/net9.0/Auth.Contracts.dll b/Auth.Core/bin/Debug/net9.0/Auth.Contracts.dll new file mode 100644 index 0000000..7122b9c Binary files /dev/null and b/Auth.Core/bin/Debug/net9.0/Auth.Contracts.dll differ diff --git a/Auth.Core/bin/Debug/net9.0/Auth.Contracts.pdb b/Auth.Core/bin/Debug/net9.0/Auth.Contracts.pdb new file mode 100644 index 0000000..07eea5e Binary files /dev/null and b/Auth.Core/bin/Debug/net9.0/Auth.Contracts.pdb differ diff --git a/Auth.Core/bin/Debug/net9.0/Auth.Core.deps.json b/Auth.Core/bin/Debug/net9.0/Auth.Core.deps.json new file mode 100644 index 0000000..19314d7 --- /dev/null +++ b/Auth.Core/bin/Debug/net9.0/Auth.Core.deps.json @@ -0,0 +1,632 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Auth.Core/1.0.0": { + "dependencies": { + "Auth.Contracts": "1.0.0", + "Auth.Domain": "1.0.0", + "FluentEmail.Core": "3.0.2", + "FluentEmail.Smtp": "3.0.2", + "Generic": "1.0.0", + "Microsoft.AspNetCore.Authentication.JwtBearer": "9.0.7", + "Microsoft.EntityFrameworkCore": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "Auth.Core.dll": {} + } + }, + "Bogus/35.6.3": { + "runtime": { + "lib/net6.0/Bogus.dll": { + "assemblyVersion": "35.6.3.0", + "fileVersion": "35.6.3.0" + } + } + }, + "FluentEmail.Core/3.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Core.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "FluentEmail.Smtp/3.0.2": { + "dependencies": { + "FluentEmail.Core": "3.0.2" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Smtp.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.7": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Microsoft.Extensions.Identity.Stores": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.7", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.7": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.7": {}, + "Microsoft.EntityFrameworkCore.Relational/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Identity.Core/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.Identity.Core": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.Extensions.Logging/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Options/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.IdentityModel.Logging": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Npgsql/9.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Npgsql": "9.0.3" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.12.1", + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Auth.Contracts/1.0.0": { + "runtime": { + "Auth.Contracts.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Auth.Domain/1.0.0": { + "dependencies": { + "Auth.Contracts": "1.0.0", + "Bogus": "35.6.3", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "runtime": { + "Auth.Domain.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Generic/1.0.0": { + "runtime": { + "Generic.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "Auth.Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Bogus/35.6.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+5omfZWy8gOcbpc48vKfMI4h/ecbdf3NQm6xCl3zMbaP4J3rMMm5h3kPFeIWBgt4mbz6YY0eeZDLR/6yv1khKw==", + "path": "bogus/35.6.3", + "hashPath": "bogus.35.6.3.nupkg.sha512" + }, + "FluentEmail.Core/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==", + "path": "fluentemail.core/3.0.2", + "hashPath": "fluentemail.core.3.0.2.nupkg.sha512" + }, + "FluentEmail.Smtp/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==", + "path": "fluentemail.smtp/3.0.2", + "hashPath": "fluentemail.smtp.3.0.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lloN3XvIgXmdocfghzfszOHJb45OYR3fgOg/h536o+zNB2SmP3JrqeOieCBZ7sipgGcgbxP0boA+loVhdsJxWg==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/9.0.7", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5di3GKY/a9ceGAdVk78QFGMO55NrFRN1rnh4xNr7MHjOCOMhgcWkyv9051wkPUDfX+g2cNN6+ckHvNnlxUwc2A==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.7", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ms7cTGHBzhCTfC8yIv9KfMrLKsRLg60jGsoZ/oEjoBXbqcEsXcjNtXqaOJCjpeltLDKoePrfSWzjhMUxTHHMA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.7", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tr4JHBgE/wN4Q/iQkWsi0oZXcaM7WFeZ1rpCUeTVka6az3DTtG0+RMuvZvPIq8U8vCANVuzqAcr+uUry4FUKrg==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.7", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PbD0q5ax15r91jD4TN7xbDCjldZSz4JfpYN4ZZjAkWeUyROkV92Ydg0O2/1keFA+2u3KPsDkJMmBKv2zQ06ZVg==", + "path": "microsoft.entityframeworkcore/9.0.7", + "hashPath": "microsoft.entityframeworkcore.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YUXNerEkCf4OANO+zjuMznpUW7R8XxSCqmBfYhBrbrJVc09i84KkNgeUTaOUXCGogSK/3d7ORRhMqfUobnejBg==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.7", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HqiPjAvjVOsyA1svnjL81/Wk2MRQYMK/lxKVWvw0f5IcA//VcxBepVSAqe7CFirdsPXqe8rFKEwZROWZTz7Jqw==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.7", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yo5joquG7L79H5BhtpqP8apu+KFOAYfvmj0dZnVkPElBY14wY5qva0SOcrDWzYw5BrJrhIArfCcJCJHBvMYiKg==", + "path": "microsoft.entityframeworkcore.relational/9.0.7", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-30necCQehcg9lFkMEIE7HczcoYGML8GUH6jlincA18d896fLZM9wl5tpTPJHgzANQE/6KXRLZSWbgevgg5csSw==", + "path": "microsoft.extensions.caching.abstractions/9.0.7", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nDu6c8fwrHQYccLnWnvyElrdkL3rZ97TZNqL+niMFUcApVBHdpDmKcRvciGymJ4Y0iLDTOo5J2XhDQEbNb+dFg==", + "path": "microsoft.extensions.caching.memory/9.0.7", + "hashPath": "microsoft.extensions.caching.memory.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lut/kiVvNsQ120VERMUYSFhpXPpKjjql+giy03LesASPBBcC0o6+aoFdzJH9GaYpFTQ3fGVhVjKjvJDoAW5/IQ==", + "path": "microsoft.extensions.configuration.abstractions/9.0.7", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i05AYA91vgq0as84ROVCyltD2gnxaba/f1Qw2rG7mUsS0gv8cPTr1Gm7jPQHq7JTr4MJoQUcanLVs16tIOUJaQ==", + "path": "microsoft.extensions.dependencyinjection/9.0.7", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iPK1FxbGFr2Xb+4Y+dTYI8Gupu9pOi8I3JPuPsrogUmEhe2hzZ9LpCmolMEBhVDo2ikcSr7G5zYiwaapHSQTew==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.7", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yFMK7yhLYbiwiiKOI/A1rReteRbO4vnN3SPNF5YpUHf6BvSMn5K1TDa7GVszJBH/VmxP0EAsHnSH05GEV0x3cg==", + "path": "microsoft.extensions.identity.core/9.0.7", + "hashPath": "microsoft.extensions.identity.core.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mf04+xUV6HCeLROYHZeGSSSIbwXN2taLOcDpSKYO6BawqNOJoBSN9MaQ5vMNrlnH6BnXYPO8S4PuREftqXx5KA==", + "path": "microsoft.extensions.identity.stores/9.0.7", + "hashPath": "microsoft.extensions.identity.stores.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fdIeQpXYV8yxSWG03cCbU2Otdrq4NWuhnQLXokWLv3L9YcK055E7u8WFJvP+uuP4CFeCEoqZQL4yPcjuXhCZrg==", + "path": "microsoft.extensions.logging/9.0.7", + "hashPath": "microsoft.extensions.logging.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sMM6NEAdUTE/elJ2wqjOi0iBWqZmSyaTByLF9e8XHv6DRJFFnOe0N+s8Uc6C91E4SboQCfLswaBIZ+9ZXA98AA==", + "path": "microsoft.extensions.logging.abstractions/9.0.7", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-trJnF6cRWgR5uMmHpGoHmM1wOVFdIYlELlkO9zX+RfieK0321Y55zrcs4AaEymKup7dxgEN/uJU25CAcMNQRXw==", + "path": "microsoft.extensions.options/9.0.7", + "hashPath": "microsoft.extensions.options.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ti/zD9BuuO50IqlvhWQs9GHxkCmoph5BHjGiWKdg2t6Or8XoyAfRJiKag+uvd/fpASnNklfsB01WpZ4fhAe0VQ==", + "path": "microsoft.extensions.primitives/9.0.7", + "hashPath": "microsoft.extensions.primitives.9.0.7.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JzWhET0VOCORyJbqDc1Wtdl8Q/l+I1MjFB0I/Jko+Ma691JZll8X6o9XwZtUce8FkqGuV4uY4/V1808XZOpDVg==", + "path": "microsoft.identitymodel.abstractions/8.12.1", + "hashPath": "microsoft.identitymodel.abstractions.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-imi3xiRLzzKxN4m1aR9Z2X8GUmNsVH7GLA6AkwYStNnh3UzupFtHEEVk3GK1fCvnYdRbpnCGNYY6WQb9AfDAKg==", + "path": "microsoft.identitymodel.jsonwebtokens/8.12.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-39HjVkU7Voe2jRLmORRB5PoTmta1ZPKzUZCc6ldlNlLzdx+um0+fAnvfk05LUQPrNxpvb5ZoqF00SrNvyO2Fzg==", + "path": "microsoft.identitymodel.logging/8.12.1", + "hashPath": "microsoft.identitymodel.logging.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "path": "microsoft.identitymodel.protocols/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DzgPEABn3eZmIk4lhov0QPcoHkIbnAfgkyDPM7uGuWDHeockR9DdqNCD9Zy30hPfExu5VhbOXn9oPRi+tFUhEQ==", + "path": "microsoft.identitymodel.tokens/8.12.1", + "hashPath": "microsoft.identitymodel.tokens.8.12.1.nupkg.sha512" + }, + "Npgsql/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "path": "npgsql/9.0.3", + "hashPath": "npgsql.9.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jlYdVOJrdeyD80ppEqKJ8BhJdrV3MjeA+seURdhC0DnD41GyUA9Ik+P7Sb571ufVVCYIx93GjeqVvY3QyQxZAA==", + "path": "system.identitymodel.tokens.jwt/8.12.1", + "hashPath": "system.identitymodel.tokens.jwt.8.12.1.nupkg.sha512" + }, + "Auth.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Auth.Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Generic/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Auth.Core/bin/Debug/net9.0/Auth.Core.dll b/Auth.Core/bin/Debug/net9.0/Auth.Core.dll new file mode 100644 index 0000000..32ec8ef Binary files /dev/null and b/Auth.Core/bin/Debug/net9.0/Auth.Core.dll differ diff --git a/Auth.Core/bin/Debug/net9.0/Auth.Core.pdb b/Auth.Core/bin/Debug/net9.0/Auth.Core.pdb new file mode 100644 index 0000000..2ffa7a3 Binary files /dev/null and b/Auth.Core/bin/Debug/net9.0/Auth.Core.pdb differ diff --git a/Auth.Core/bin/Debug/net9.0/Auth.Domain.dll b/Auth.Core/bin/Debug/net9.0/Auth.Domain.dll new file mode 100644 index 0000000..28ae93b Binary files /dev/null and b/Auth.Core/bin/Debug/net9.0/Auth.Domain.dll differ diff --git a/Auth.Core/bin/Debug/net9.0/Auth.Domain.pdb b/Auth.Core/bin/Debug/net9.0/Auth.Domain.pdb new file mode 100644 index 0000000..e62e5cd Binary files /dev/null and b/Auth.Core/bin/Debug/net9.0/Auth.Domain.pdb differ diff --git a/Auth.Core/bin/Debug/net9.0/Contracts.dll b/Auth.Core/bin/Debug/net9.0/Contracts.dll new file mode 100644 index 0000000..7ee0998 Binary files /dev/null and b/Auth.Core/bin/Debug/net9.0/Contracts.dll differ diff --git a/Auth.Core/bin/Debug/net9.0/Contracts.pdb b/Auth.Core/bin/Debug/net9.0/Contracts.pdb new file mode 100644 index 0000000..3479ccd Binary files /dev/null and b/Auth.Core/bin/Debug/net9.0/Contracts.pdb differ diff --git a/Auth.Core/bin/Debug/net9.0/Core.deps.json b/Auth.Core/bin/Debug/net9.0/Core.deps.json new file mode 100644 index 0000000..201975b --- /dev/null +++ b/Auth.Core/bin/Debug/net9.0/Core.deps.json @@ -0,0 +1,632 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Core/1.0.0": { + "dependencies": { + "Contracts": "1.0.0", + "Domain": "1.0.0", + "FluentEmail.Core": "3.0.2", + "FluentEmail.Smtp": "3.0.2", + "Generic": "1.0.0", + "Microsoft.AspNetCore.Authentication.JwtBearer": "9.0.7", + "Microsoft.EntityFrameworkCore": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "Core.dll": {} + } + }, + "Bogus/35.6.3": { + "runtime": { + "lib/net6.0/Bogus.dll": { + "assemblyVersion": "35.6.3.0", + "fileVersion": "35.6.3.0" + } + } + }, + "FluentEmail.Core/3.0.2": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Core.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "FluentEmail.Smtp/3.0.2": { + "dependencies": { + "FluentEmail.Core": "3.0.2" + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Smtp.dll": { + "assemblyVersion": "3.0.2.0", + "fileVersion": "3.0.2.0" + } + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.7": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Microsoft.Extensions.Identity.Stores": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.7", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.7": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.7": {}, + "Microsoft.EntityFrameworkCore.Relational/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Identity.Core/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.Identity.Core": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.Extensions.Logging/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Options/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "8.0.1.0", + "fileVersion": "8.0.1.50722" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.IdentityModel.Logging": "8.12.1" + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Npgsql/9.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Npgsql": "9.0.3" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.12.1", + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "runtime": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "8.12.1.0", + "fileVersion": "8.12.1.60617" + } + } + }, + "Contracts/1.0.0": { + "runtime": { + "Contracts.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Domain/1.0.0": { + "dependencies": { + "Bogus": "35.6.3", + "Contracts": "1.0.0", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "runtime": { + "Domain.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + }, + "Generic/1.0.0": { + "runtime": { + "Generic.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "Core/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Bogus/35.6.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+5omfZWy8gOcbpc48vKfMI4h/ecbdf3NQm6xCl3zMbaP4J3rMMm5h3kPFeIWBgt4mbz6YY0eeZDLR/6yv1khKw==", + "path": "bogus/35.6.3", + "hashPath": "bogus.35.6.3.nupkg.sha512" + }, + "FluentEmail.Core/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==", + "path": "fluentemail.core/3.0.2", + "hashPath": "fluentemail.core.3.0.2.nupkg.sha512" + }, + "FluentEmail.Smtp/3.0.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==", + "path": "fluentemail.smtp/3.0.2", + "hashPath": "fluentemail.smtp.3.0.2.nupkg.sha512" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lloN3XvIgXmdocfghzfszOHJb45OYR3fgOg/h536o+zNB2SmP3JrqeOieCBZ7sipgGcgbxP0boA+loVhdsJxWg==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/9.0.7", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5di3GKY/a9ceGAdVk78QFGMO55NrFRN1rnh4xNr7MHjOCOMhgcWkyv9051wkPUDfX+g2cNN6+ckHvNnlxUwc2A==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.7", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ms7cTGHBzhCTfC8yIv9KfMrLKsRLg60jGsoZ/oEjoBXbqcEsXcjNtXqaOJCjpeltLDKoePrfSWzjhMUxTHHMA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.7", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tr4JHBgE/wN4Q/iQkWsi0oZXcaM7WFeZ1rpCUeTVka6az3DTtG0+RMuvZvPIq8U8vCANVuzqAcr+uUry4FUKrg==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.7", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PbD0q5ax15r91jD4TN7xbDCjldZSz4JfpYN4ZZjAkWeUyROkV92Ydg0O2/1keFA+2u3KPsDkJMmBKv2zQ06ZVg==", + "path": "microsoft.entityframeworkcore/9.0.7", + "hashPath": "microsoft.entityframeworkcore.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YUXNerEkCf4OANO+zjuMznpUW7R8XxSCqmBfYhBrbrJVc09i84KkNgeUTaOUXCGogSK/3d7ORRhMqfUobnejBg==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.7", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HqiPjAvjVOsyA1svnjL81/Wk2MRQYMK/lxKVWvw0f5IcA//VcxBepVSAqe7CFirdsPXqe8rFKEwZROWZTz7Jqw==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.7", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yo5joquG7L79H5BhtpqP8apu+KFOAYfvmj0dZnVkPElBY14wY5qva0SOcrDWzYw5BrJrhIArfCcJCJHBvMYiKg==", + "path": "microsoft.entityframeworkcore.relational/9.0.7", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-30necCQehcg9lFkMEIE7HczcoYGML8GUH6jlincA18d896fLZM9wl5tpTPJHgzANQE/6KXRLZSWbgevgg5csSw==", + "path": "microsoft.extensions.caching.abstractions/9.0.7", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nDu6c8fwrHQYccLnWnvyElrdkL3rZ97TZNqL+niMFUcApVBHdpDmKcRvciGymJ4Y0iLDTOo5J2XhDQEbNb+dFg==", + "path": "microsoft.extensions.caching.memory/9.0.7", + "hashPath": "microsoft.extensions.caching.memory.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lut/kiVvNsQ120VERMUYSFhpXPpKjjql+giy03LesASPBBcC0o6+aoFdzJH9GaYpFTQ3fGVhVjKjvJDoAW5/IQ==", + "path": "microsoft.extensions.configuration.abstractions/9.0.7", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i05AYA91vgq0as84ROVCyltD2gnxaba/f1Qw2rG7mUsS0gv8cPTr1Gm7jPQHq7JTr4MJoQUcanLVs16tIOUJaQ==", + "path": "microsoft.extensions.dependencyinjection/9.0.7", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iPK1FxbGFr2Xb+4Y+dTYI8Gupu9pOi8I3JPuPsrogUmEhe2hzZ9LpCmolMEBhVDo2ikcSr7G5zYiwaapHSQTew==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.7", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yFMK7yhLYbiwiiKOI/A1rReteRbO4vnN3SPNF5YpUHf6BvSMn5K1TDa7GVszJBH/VmxP0EAsHnSH05GEV0x3cg==", + "path": "microsoft.extensions.identity.core/9.0.7", + "hashPath": "microsoft.extensions.identity.core.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mf04+xUV6HCeLROYHZeGSSSIbwXN2taLOcDpSKYO6BawqNOJoBSN9MaQ5vMNrlnH6BnXYPO8S4PuREftqXx5KA==", + "path": "microsoft.extensions.identity.stores/9.0.7", + "hashPath": "microsoft.extensions.identity.stores.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fdIeQpXYV8yxSWG03cCbU2Otdrq4NWuhnQLXokWLv3L9YcK055E7u8WFJvP+uuP4CFeCEoqZQL4yPcjuXhCZrg==", + "path": "microsoft.extensions.logging/9.0.7", + "hashPath": "microsoft.extensions.logging.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sMM6NEAdUTE/elJ2wqjOi0iBWqZmSyaTByLF9e8XHv6DRJFFnOe0N+s8Uc6C91E4SboQCfLswaBIZ+9ZXA98AA==", + "path": "microsoft.extensions.logging.abstractions/9.0.7", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-trJnF6cRWgR5uMmHpGoHmM1wOVFdIYlELlkO9zX+RfieK0321Y55zrcs4AaEymKup7dxgEN/uJU25CAcMNQRXw==", + "path": "microsoft.extensions.options/9.0.7", + "hashPath": "microsoft.extensions.options.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ti/zD9BuuO50IqlvhWQs9GHxkCmoph5BHjGiWKdg2t6Or8XoyAfRJiKag+uvd/fpASnNklfsB01WpZ4fhAe0VQ==", + "path": "microsoft.extensions.primitives/9.0.7", + "hashPath": "microsoft.extensions.primitives.9.0.7.nupkg.sha512" + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-JzWhET0VOCORyJbqDc1Wtdl8Q/l+I1MjFB0I/Jko+Ma691JZll8X6o9XwZtUce8FkqGuV4uY4/V1808XZOpDVg==", + "path": "microsoft.identitymodel.abstractions/8.12.1", + "hashPath": "microsoft.identitymodel.abstractions.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-imi3xiRLzzKxN4m1aR9Z2X8GUmNsVH7GLA6AkwYStNnh3UzupFtHEEVk3GK1fCvnYdRbpnCGNYY6WQb9AfDAKg==", + "path": "microsoft.identitymodel.jsonwebtokens/8.12.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-39HjVkU7Voe2jRLmORRB5PoTmta1ZPKzUZCc6ldlNlLzdx+um0+fAnvfk05LUQPrNxpvb5ZoqF00SrNvyO2Fzg==", + "path": "microsoft.identitymodel.logging/8.12.1", + "hashPath": "microsoft.identitymodel.logging.8.12.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "path": "microsoft.identitymodel.protocols/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DzgPEABn3eZmIk4lhov0QPcoHkIbnAfgkyDPM7uGuWDHeockR9DdqNCD9Zy30hPfExu5VhbOXn9oPRi+tFUhEQ==", + "path": "microsoft.identitymodel.tokens/8.12.1", + "hashPath": "microsoft.identitymodel.tokens.8.12.1.nupkg.sha512" + }, + "Npgsql/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "path": "npgsql/9.0.3", + "hashPath": "npgsql.9.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jlYdVOJrdeyD80ppEqKJ8BhJdrV3MjeA+seURdhC0DnD41GyUA9Ik+P7Sb571ufVVCYIx93GjeqVvY3QyQxZAA==", + "path": "system.identitymodel.tokens.jwt/8.12.1", + "hashPath": "system.identitymodel.tokens.jwt.8.12.1.nupkg.sha512" + }, + "Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Generic/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Auth.Core/bin/Debug/net9.0/Core.dll b/Auth.Core/bin/Debug/net9.0/Core.dll new file mode 100644 index 0000000..cf00aa6 Binary files /dev/null and b/Auth.Core/bin/Debug/net9.0/Core.dll differ diff --git a/Auth.Core/bin/Debug/net9.0/Core.pdb b/Auth.Core/bin/Debug/net9.0/Core.pdb new file mode 100644 index 0000000..791e297 Binary files /dev/null and b/Auth.Core/bin/Debug/net9.0/Core.pdb differ diff --git a/Auth.Core/bin/Debug/net9.0/Domain.dll b/Auth.Core/bin/Debug/net9.0/Domain.dll new file mode 100644 index 0000000..39e6dc6 Binary files /dev/null and b/Auth.Core/bin/Debug/net9.0/Domain.dll differ diff --git a/Auth.Core/bin/Debug/net9.0/Domain.pdb b/Auth.Core/bin/Debug/net9.0/Domain.pdb new file mode 100644 index 0000000..920d5fe Binary files /dev/null and b/Auth.Core/bin/Debug/net9.0/Domain.pdb differ diff --git a/Auth.Core/bin/Debug/net9.0/Generic.dll b/Auth.Core/bin/Debug/net9.0/Generic.dll new file mode 100644 index 0000000..b9b65bd Binary files /dev/null and b/Auth.Core/bin/Debug/net9.0/Generic.dll differ diff --git a/Auth.Core/bin/Debug/net9.0/Generic.pdb b/Auth.Core/bin/Debug/net9.0/Generic.pdb new file mode 100644 index 0000000..5c1abbe Binary files /dev/null and b/Auth.Core/bin/Debug/net9.0/Generic.pdb differ diff --git a/Auth.Core/obj/Auth.Core.csproj.nuget.dgspec.json b/Auth.Core/obj/Auth.Core.csproj.nuget.dgspec.json new file mode 100644 index 0000000..b4365aa --- /dev/null +++ b/Auth.Core/obj/Auth.Core.csproj.nuget.dgspec.json @@ -0,0 +1,1406 @@ +{ + "format": 1, + "restore": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj": {} + }, + "projects": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj", + "projectName": "Auth.Contracts", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj", + "projectName": "Auth.Core", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "FluentEmail.Core": { + "target": "Package", + "version": "[3.0.2, )" + }, + "FluentEmail.Smtp": { + "target": "Package", + "version": "[3.0.2, )" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[10.0.0, )" + }, + "System.IdentityModel.Tokens.Jwt": { + "target": "Package", + "version": "[8.12.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj", + "projectName": "Auth.Domain", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Bogus": { + "target": "Package", + "version": "[35.6.3, )" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[10.0.0, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[10.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj", + "projectName": "Generic", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/Auth.Core/obj/Auth.Core.csproj.nuget.g.props b/Auth.Core/obj/Auth.Core.csproj.nuget.g.props new file mode 100644 index 0000000..c5620d3 --- /dev/null +++ b/Auth.Core/obj/Auth.Core.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 7.0.0 + + + + + + + + \ No newline at end of file diff --git a/Auth.Core/obj/Auth.Core.csproj.nuget.g.targets b/Auth.Core/obj/Auth.Core.csproj.nuget.g.targets new file mode 100644 index 0000000..5d94040 --- /dev/null +++ b/Auth.Core/obj/Auth.Core.csproj.nuget.g.targets @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Auth.Core/obj/Core.csproj.nuget.dgspec.json b/Auth.Core/obj/Core.csproj.nuget.dgspec.json new file mode 100644 index 0000000..30678b1 --- /dev/null +++ b/Auth.Core/obj/Core.csproj.nuget.dgspec.json @@ -0,0 +1,314 @@ +{ + "format": 1, + "restore": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/Core.csproj": {} + }, + "projects": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj", + "projectName": "Contracts", + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/Core.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/Core.csproj", + "projectName": "Core", + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/Core.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj": { + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj" + }, + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/Domain.csproj": { + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/Domain.csproj" + }, + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/SharedLogic/Generic/Generic.csproj": { + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/SharedLogic/Generic/Generic.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "FluentEmail.Core": { + "target": "Package", + "version": "[3.0.2, )" + }, + "FluentEmail.Smtp": { + "target": "Package", + "version": "[3.0.2, )" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + }, + "System.IdentityModel.Tokens.Jwt": { + "target": "Package", + "version": "[8.12.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/Domain.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/Domain.csproj", + "projectName": "Domain", + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/Domain.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj": { + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Bogus": { + "target": "Package", + "version": "[35.6.3, )" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.7, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/SharedLogic/Generic/Generic.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/SharedLogic/Generic/Generic.csproj", + "projectName": "Generic", + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/SharedLogic/Generic/Generic.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/SharedLogic/Generic/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Auth.Core/obj/Core.csproj.nuget.g.props b/Auth.Core/obj/Core.csproj.nuget.g.props new file mode 100644 index 0000000..5d78652 --- /dev/null +++ b/Auth.Core/obj/Core.csproj.nuget.g.props @@ -0,0 +1,18 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 6.14.0 + + + + + + + + \ No newline at end of file diff --git a/Auth.Core/obj/Core.csproj.nuget.g.targets b/Auth.Core/obj/Core.csproj.nuget.g.targets new file mode 100644 index 0000000..caebac7 --- /dev/null +++ b/Auth.Core/obj/Core.csproj.nuget.g.targets @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/Auth.Core/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/Auth.Core/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/Auth.Core/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/Auth.Core/obj/Debug/net10.0/Auth.Core.AssemblyInfo.cs b/Auth.Core/obj/Debug/net10.0/Auth.Core.AssemblyInfo.cs new file mode 100644 index 0000000..074e732 --- /dev/null +++ b/Auth.Core/obj/Debug/net10.0/Auth.Core.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Auth.Core")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Auth.Core")] +[assembly: System.Reflection.AssemblyTitleAttribute("Auth.Core")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.Core/obj/Debug/net10.0/Auth.Core.AssemblyInfoInputs.cache b/Auth.Core/obj/Debug/net10.0/Auth.Core.AssemblyInfoInputs.cache new file mode 100644 index 0000000..035128c --- /dev/null +++ b/Auth.Core/obj/Debug/net10.0/Auth.Core.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +ace33e9d2f5ae44465e6807242fc822d092d4c3341f3fe19cf5fa53832184f25 diff --git a/Auth.Core/obj/Debug/net10.0/Auth.Core.GeneratedMSBuildEditorConfig.editorconfig b/Auth.Core/obj/Debug/net10.0/Auth.Core.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..62a9ef7 --- /dev/null +++ b/Auth.Core/obj/Debug/net10.0/Auth.Core.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Auth.Core +build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/Auth.Core/obj/Debug/net10.0/Auth.Core.GlobalUsings.g.cs b/Auth.Core/obj/Debug/net10.0/Auth.Core.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/Auth.Core/obj/Debug/net10.0/Auth.Core.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/Auth.Core/obj/Debug/net10.0/Auth.Core.assets.cache b/Auth.Core/obj/Debug/net10.0/Auth.Core.assets.cache new file mode 100644 index 0000000..b29def4 Binary files /dev/null and b/Auth.Core/obj/Debug/net10.0/Auth.Core.assets.cache differ diff --git a/Auth.Core/obj/Debug/net10.0/Auth.Core.csproj.AssemblyReference.cache b/Auth.Core/obj/Debug/net10.0/Auth.Core.csproj.AssemblyReference.cache new file mode 100644 index 0000000..25c8043 Binary files /dev/null and b/Auth.Core/obj/Debug/net10.0/Auth.Core.csproj.AssemblyReference.cache differ diff --git a/Auth.Core/obj/Debug/net10.0/Auth.Core.csproj.CoreCompileInputs.cache b/Auth.Core/obj/Debug/net10.0/Auth.Core.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..2941371 --- /dev/null +++ b/Auth.Core/obj/Debug/net10.0/Auth.Core.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +ed4d06a19407b8d5fe1ad902c6d047af41fc1d6bfe86fcfd1c3d98ebedeeea76 diff --git a/Auth.Core/obj/Debug/net10.0/Auth.Core.csproj.FileListAbsolute.txt b/Auth.Core/obj/Debug/net10.0/Auth.Core.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..a37e1f7 --- /dev/null +++ b/Auth.Core/obj/Debug/net10.0/Auth.Core.csproj.FileListAbsolute.txt @@ -0,0 +1,130 @@ +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Auth.Core.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Auth.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Auth.Core.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Auth.Domain.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Generic.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Auth.Contracts.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Auth.Domain.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Generic.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/Auth.Core.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/Auth.Core.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/Auth.Core.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/Auth.Core.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/Auth.Core.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/Auth.Core.csproj.Up2Date +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/Auth.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/refint/Auth.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/Auth.Core.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/ref/Auth.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Auth.Core.deps.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Auth.Core.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Auth.Core.pdb +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Auth.Contracts.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Auth.Domain.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Generic.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Auth.Contracts.pdb +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Auth.Domain.pdb +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net10.0/Generic.pdb +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/Auth.Core.csproj.AssemblyReference.cache +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/Auth.Core.GeneratedMSBuildEditorConfig.editorconfig +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/Auth.Core.AssemblyInfoInputs.cache +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/Auth.Core.AssemblyInfo.cs +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/Auth.Core.csproj.CoreCompileInputs.cache +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/Auth.Core.csproj.Up2Date +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/Auth.Core.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/refint/Auth.Core.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/Auth.Core.pdb +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net10.0/ref/Auth.Core.dll diff --git a/Auth.Core/obj/Debug/net10.0/Auth.Core.csproj.Up2Date b/Auth.Core/obj/Debug/net10.0/Auth.Core.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/Auth.Core/obj/Debug/net10.0/Auth.Core.dll b/Auth.Core/obj/Debug/net10.0/Auth.Core.dll new file mode 100644 index 0000000..7ed58d3 Binary files /dev/null and b/Auth.Core/obj/Debug/net10.0/Auth.Core.dll differ diff --git a/Auth.Core/obj/Debug/net10.0/Auth.Core.pdb b/Auth.Core/obj/Debug/net10.0/Auth.Core.pdb new file mode 100644 index 0000000..9d4ab2e Binary files /dev/null and b/Auth.Core/obj/Debug/net10.0/Auth.Core.pdb differ diff --git a/Auth.Core/obj/Debug/net10.0/ref/Auth.Core.dll b/Auth.Core/obj/Debug/net10.0/ref/Auth.Core.dll new file mode 100644 index 0000000..e5c1c37 Binary files /dev/null and b/Auth.Core/obj/Debug/net10.0/ref/Auth.Core.dll differ diff --git a/Auth.Core/obj/Debug/net10.0/refint/Auth.Core.dll b/Auth.Core/obj/Debug/net10.0/refint/Auth.Core.dll new file mode 100644 index 0000000..e5c1c37 Binary files /dev/null and b/Auth.Core/obj/Debug/net10.0/refint/Auth.Core.dll differ diff --git a/Auth.Core/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/Auth.Core/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..9e76325 --- /dev/null +++ b/Auth.Core/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/Auth.Core/obj/Debug/net9.0/Auth.Core.AssemblyInfo.cs b/Auth.Core/obj/Debug/net9.0/Auth.Core.AssemblyInfo.cs new file mode 100644 index 0000000..074e732 --- /dev/null +++ b/Auth.Core/obj/Debug/net9.0/Auth.Core.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Auth.Core")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Auth.Core")] +[assembly: System.Reflection.AssemblyTitleAttribute("Auth.Core")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.Core/obj/Debug/net9.0/Auth.Core.AssemblyInfoInputs.cache b/Auth.Core/obj/Debug/net9.0/Auth.Core.AssemblyInfoInputs.cache new file mode 100644 index 0000000..035128c --- /dev/null +++ b/Auth.Core/obj/Debug/net9.0/Auth.Core.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +ace33e9d2f5ae44465e6807242fc822d092d4c3341f3fe19cf5fa53832184f25 diff --git a/Auth.Core/obj/Debug/net9.0/Auth.Core.GeneratedMSBuildEditorConfig.editorconfig b/Auth.Core/obj/Debug/net9.0/Auth.Core.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..9a53609 --- /dev/null +++ b/Auth.Core/obj/Debug/net9.0/Auth.Core.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,15 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Auth.Core +build_property.ProjectDir = /mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/Auth.Core/obj/Debug/net9.0/Auth.Core.GlobalUsings.g.cs b/Auth.Core/obj/Debug/net9.0/Auth.Core.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/Auth.Core/obj/Debug/net9.0/Auth.Core.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/Auth.Core/obj/Debug/net9.0/Auth.Core.assets.cache b/Auth.Core/obj/Debug/net9.0/Auth.Core.assets.cache new file mode 100644 index 0000000..5260794 Binary files /dev/null and b/Auth.Core/obj/Debug/net9.0/Auth.Core.assets.cache differ diff --git a/Auth.Core/obj/Debug/net9.0/Auth.Core.csproj.AssemblyReference.cache b/Auth.Core/obj/Debug/net9.0/Auth.Core.csproj.AssemblyReference.cache new file mode 100644 index 0000000..48627a4 Binary files /dev/null and b/Auth.Core/obj/Debug/net9.0/Auth.Core.csproj.AssemblyReference.cache differ diff --git a/Auth.Core/obj/Debug/net9.0/Auth.Core.csproj.CoreCompileInputs.cache b/Auth.Core/obj/Debug/net9.0/Auth.Core.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..f1660e4 --- /dev/null +++ b/Auth.Core/obj/Debug/net9.0/Auth.Core.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +c7f1a3d664e51bb56e9fcc468cb53743d1d64ef2b93bc5242b1fda5e1f48f8a6 diff --git a/Auth.Core/obj/Debug/net9.0/Auth.Core.csproj.FileListAbsolute.txt b/Auth.Core/obj/Debug/net9.0/Auth.Core.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..4873aca --- /dev/null +++ b/Auth.Core/obj/Debug/net9.0/Auth.Core.csproj.FileListAbsolute.txt @@ -0,0 +1,38 @@ +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Auth.Core.deps.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Auth.Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Auth.Core.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Auth.Domain.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Generic.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Auth.Contracts.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Auth.Domain.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Generic.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/Auth.Core.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/Auth.Core.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/Auth.Core.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/Auth.Core.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/Auth.Core.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/Auth.Core.csproj.Up2Date +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/Auth.Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/refint/Auth.Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/Auth.Core.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/ref/Auth.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Auth.Core.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Auth.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Auth.Core.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Auth.Domain.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Generic.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Auth.Contracts.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Auth.Domain.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/bin/Debug/net9.0/Generic.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/Auth.Core.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/Auth.Core.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/Auth.Core.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/Auth.Core.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/Auth.Core.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/Auth.Core.csproj.Up2Date +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/Auth.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/refint/Auth.Core.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/Auth.Core.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/Debug/net9.0/ref/Auth.Core.dll diff --git a/Auth.Core/obj/Debug/net9.0/Auth.Core.csproj.Up2Date b/Auth.Core/obj/Debug/net9.0/Auth.Core.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/Auth.Core/obj/Debug/net9.0/Auth.Core.dll b/Auth.Core/obj/Debug/net9.0/Auth.Core.dll new file mode 100644 index 0000000..32ec8ef Binary files /dev/null and b/Auth.Core/obj/Debug/net9.0/Auth.Core.dll differ diff --git a/Auth.Core/obj/Debug/net9.0/Auth.Core.pdb b/Auth.Core/obj/Debug/net9.0/Auth.Core.pdb new file mode 100644 index 0000000..2ffa7a3 Binary files /dev/null and b/Auth.Core/obj/Debug/net9.0/Auth.Core.pdb differ diff --git a/Auth.Core/obj/Debug/net9.0/Core.AssemblyInfo.cs b/Auth.Core/obj/Debug/net9.0/Core.AssemblyInfo.cs new file mode 100644 index 0000000..243d7b1 --- /dev/null +++ b/Auth.Core/obj/Debug/net9.0/Core.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Core")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+89d8c7f2868cdc25655d2a003c6dc8ab9e106e46")] +[assembly: System.Reflection.AssemblyProductAttribute("Core")] +[assembly: System.Reflection.AssemblyTitleAttribute("Core")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.Core/obj/Debug/net9.0/Core.AssemblyInfoInputs.cache b/Auth.Core/obj/Debug/net9.0/Core.AssemblyInfoInputs.cache new file mode 100644 index 0000000..8a8fafc --- /dev/null +++ b/Auth.Core/obj/Debug/net9.0/Core.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +0f53edc98ecb9d78275681062f9cd4407da99ddfac2b0db200d638e60ce52100 diff --git a/Auth.Core/obj/Debug/net9.0/Core.GeneratedMSBuildEditorConfig.editorconfig b/Auth.Core/obj/Debug/net9.0/Core.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..fe050dc --- /dev/null +++ b/Auth.Core/obj/Debug/net9.0/Core.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,15 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Core +build_property.ProjectDir = /mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/Auth.Core/obj/Debug/net9.0/Core.GlobalUsings.g.cs b/Auth.Core/obj/Debug/net9.0/Core.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/Auth.Core/obj/Debug/net9.0/Core.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/Auth.Core/obj/Debug/net9.0/Core.assets.cache b/Auth.Core/obj/Debug/net9.0/Core.assets.cache new file mode 100644 index 0000000..d77379a Binary files /dev/null and b/Auth.Core/obj/Debug/net9.0/Core.assets.cache differ diff --git a/Auth.Core/obj/Debug/net9.0/Core.csproj.AssemblyReference.cache b/Auth.Core/obj/Debug/net9.0/Core.csproj.AssemblyReference.cache new file mode 100644 index 0000000..886759a Binary files /dev/null and b/Auth.Core/obj/Debug/net9.0/Core.csproj.AssemblyReference.cache differ diff --git a/Auth.Core/obj/Debug/net9.0/Core.csproj.CoreCompileInputs.cache b/Auth.Core/obj/Debug/net9.0/Core.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..893a9d3 --- /dev/null +++ b/Auth.Core/obj/Debug/net9.0/Core.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +8775241e4c4e626b5012a4e128faa29efff84b970580ad35079e325b85a31142 diff --git a/Auth.Core/obj/Debug/net9.0/Core.csproj.FileListAbsolute.txt b/Auth.Core/obj/Debug/net9.0/Core.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..a3e41a1 --- /dev/null +++ b/Auth.Core/obj/Debug/net9.0/Core.csproj.FileListAbsolute.txt @@ -0,0 +1,228 @@ +/home/yla/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.csproj.AssemblyReference.cache +/home/yla/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.GeneratedMSBuildEditorConfig.editorconfig +/home/yla/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.AssemblyInfoInputs.cache +/home/yla/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.AssemblyInfo.cs +/home/yla/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.csproj.CoreCompileInputs.cache +/home/yla/Said/Projects/ERP/Core/bin/Debug/net9.0/Core.deps.json +/home/yla/Said/Projects/ERP/Core/bin/Debug/net9.0/Core.dll +/home/yla/Said/Projects/ERP/Core/bin/Debug/net9.0/Core.pdb +/home/yla/Said/Projects/ERP/Core/bin/Debug/net9.0/Contracts.dll +/home/yla/Said/Projects/ERP/Core/bin/Debug/net9.0/Domain.dll +/home/yla/Said/Projects/ERP/Core/bin/Debug/net9.0/Contracts.pdb +/home/yla/Said/Projects/ERP/Core/bin/Debug/net9.0/Domain.pdb +/home/yla/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.csproj.Up2Date +/home/yla/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.dll +/home/yla/Said/Projects/ERP/Core/obj/Debug/net9.0/refint/Core.dll +/home/yla/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.pdb +/home/yla/Said/Projects/ERP/Core/obj/Debug/net9.0/ref/Core.dll +/home/yla/New Folder/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.dll +/home/yla/New Folder/Said/Projects/ERP/Core/obj/Debug/net9.0/refint/Core.dll +/home/yla/New Folder/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.pdb +/home/yla/New Folder/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.csproj.AssemblyReference.cache +/home/yla/New Folder/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.GeneratedMSBuildEditorConfig.editorconfig +/home/yla/New Folder/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.AssemblyInfoInputs.cache +/home/yla/New Folder/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.AssemblyInfo.cs +/home/yla/New Folder/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.csproj.CoreCompileInputs.cache +/home/yla/New Folder/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.sourcelink.json +/home/yla/New Folder/Said/Projects/ERP/Core/bin/Debug/net9.0/Core.deps.json +/home/yla/New Folder/Said/Projects/ERP/Core/bin/Debug/net9.0/Core.dll +/home/yla/New Folder/Said/Projects/ERP/Core/bin/Debug/net9.0/Core.pdb +/home/yla/New Folder/Said/Projects/ERP/Core/bin/Debug/net9.0/Contracts.dll +/home/yla/New Folder/Said/Projects/ERP/Core/bin/Debug/net9.0/Domain.dll +/home/yla/New Folder/Said/Projects/ERP/Core/bin/Debug/net9.0/Contracts.pdb +/home/yla/New Folder/Said/Projects/ERP/Core/bin/Debug/net9.0/Domain.pdb +/home/yla/New Folder/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.csproj.Up2Date +/home/yla/New Folder/Said/Projects/ERP/Core/obj/Debug/net9.0/ref/Core.dll +/home/yla/files/Said/Projects/ERP/Core/bin/Debug/net9.0/Core.deps.json +/home/yla/files/Said/Projects/ERP/Core/bin/Debug/net9.0/Core.dll +/home/yla/files/Said/Projects/ERP/Core/bin/Debug/net9.0/Core.pdb +/home/yla/files/Said/Projects/ERP/Core/bin/Debug/net9.0/Contracts.dll +/home/yla/files/Said/Projects/ERP/Core/bin/Debug/net9.0/Domain.dll +/home/yla/files/Said/Projects/ERP/Core/bin/Debug/net9.0/Contracts.pdb +/home/yla/files/Said/Projects/ERP/Core/bin/Debug/net9.0/Domain.pdb +/home/yla/files/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.csproj.AssemblyReference.cache +/home/yla/files/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.GeneratedMSBuildEditorConfig.editorconfig +/home/yla/files/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.AssemblyInfoInputs.cache +/home/yla/files/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.AssemblyInfo.cs +/home/yla/files/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.csproj.CoreCompileInputs.cache +/home/yla/files/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.sourcelink.json +/home/yla/files/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.csproj.Up2Date +/home/yla/files/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.dll +/home/yla/files/Said/Projects/ERP/Core/obj/Debug/net9.0/refint/Core.dll +/home/yla/files/Said/Projects/ERP/Core/obj/Debug/net9.0/Core.pdb +/home/yla/files/Said/Projects/ERP/Core/obj/Debug/net9.0/ref/Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/bin/Debug/net9.0/Core.deps.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/bin/Debug/net9.0/Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/bin/Debug/net9.0/Core.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.csproj.AssemblyReference.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.AssemblyInfo.cs +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.sourcelink.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.csproj.Up2Date +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/obj/Debug/net9.0/refint/Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Core/obj/Debug/net9.0/ref/Core.dll +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/bin/Debug/net9.0/Core.deps.json +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/bin/Debug/net9.0/Core.dll +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/bin/Debug/net9.0/Core.pdb +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/bin/Debug/net9.0/Contracts.dll +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/bin/Debug/net9.0/Domain.dll +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/bin/Debug/net9.0/Contracts.pdb +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/bin/Debug/net9.0/Domain.pdb +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.csproj.AssemblyReference.cache +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.GeneratedMSBuildEditorConfig.editorconfig +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.AssemblyInfoInputs.cache +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.AssemblyInfo.cs +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.csproj.CoreCompileInputs.cache +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.sourcelink.json +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.csproj.Up2Date +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.dll +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/obj/Debug/net9.0/refint/Core.dll +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/obj/Debug/net9.0/Core.pdb +/home/yla/files/Said/Projects/MassTech_ERP/erp/Core/obj/Debug/net9.0/ref/Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/bin/Debug/net9.0/Core.deps.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/bin/Debug/net9.0/Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/bin/Debug/net9.0/Core.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/obj/Debug/net9.0/Core.csproj.AssemblyReference.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/obj/Debug/net9.0/Core.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/obj/Debug/net9.0/Core.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/obj/Debug/net9.0/Core.AssemblyInfo.cs +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/obj/Debug/net9.0/Core.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/obj/Debug/net9.0/Core.sourcelink.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/obj/Debug/net9.0/Core.csproj.Up2Date +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/obj/Debug/net9.0/Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/obj/Debug/net9.0/refint/Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/obj/Debug/net9.0/Core.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Core/obj/Debug/net9.0/ref/Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/bin/Debug/net9.0/Core.deps.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/bin/Debug/net9.0/Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/bin/Debug/net9.0/Core.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/obj/Debug/net9.0/Core.csproj.AssemblyReference.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/obj/Debug/net9.0/Core.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/obj/Debug/net9.0/Core.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/obj/Debug/net9.0/Core.AssemblyInfo.cs +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/obj/Debug/net9.0/Core.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/obj/Debug/net9.0/Core.sourcelink.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/obj/Debug/net9.0/Core.csproj.Up2Date +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/obj/Debug/net9.0/Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/obj/Debug/net9.0/refint/Core.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/obj/Debug/net9.0/Core.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Core/obj/Debug/net9.0/ref/Core.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Core.deps.json +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Core.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Core.pdb +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.csproj.AssemblyReference.cache +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.AssemblyInfoInputs.cache +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.AssemblyInfo.cs +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.csproj.Up2Date +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/refint/Core.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.pdb +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/ref/Core.dll +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.dll +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/refint/Core.dll +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.pdb +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.csproj.AssemblyReference.cache +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.AssemblyInfo.cs +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Generic.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Generic.pdb +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Core.deps.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Core.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Core.pdb +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Generic.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Generic.pdb +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.csproj.AssemblyReference.cache +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.AssemblyInfoInputs.cache +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.AssemblyInfo.cs +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.csproj.Up2Date +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/refint/Core.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.pdb +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/ref/Core.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Core.deps.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Core.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Core.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Generic.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Generic.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.csproj.AssemblyReference.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.AssemblyInfo.cs +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.csproj.Up2Date +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/refint/Core.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/ref/Core.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Core.deps.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Core.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Core.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Generic.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Generic.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.csproj.AssemblyReference.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.AssemblyInfoInputs.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.AssemblyInfo.cs +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.csproj.Up2Date +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/refint/Core.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/ref/Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Core.deps.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Core.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Contracts.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Domain.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Generic.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Contracts.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Domain.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/bin/Debug/net9.0/Generic.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.csproj.Up2Date +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/refint/Core.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/Core.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Core/obj/Debug/net9.0/ref/Core.dll diff --git a/Auth.Core/obj/Debug/net9.0/Core.csproj.Up2Date b/Auth.Core/obj/Debug/net9.0/Core.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/Auth.Core/obj/Debug/net9.0/Core.dll b/Auth.Core/obj/Debug/net9.0/Core.dll new file mode 100644 index 0000000..cf00aa6 Binary files /dev/null and b/Auth.Core/obj/Debug/net9.0/Core.dll differ diff --git a/Auth.Core/obj/Debug/net9.0/Core.pdb b/Auth.Core/obj/Debug/net9.0/Core.pdb new file mode 100644 index 0000000..791e297 Binary files /dev/null and b/Auth.Core/obj/Debug/net9.0/Core.pdb differ diff --git a/Auth.Core/obj/Debug/net9.0/ref/Auth.Core.dll b/Auth.Core/obj/Debug/net9.0/ref/Auth.Core.dll new file mode 100644 index 0000000..b9e9f09 Binary files /dev/null and b/Auth.Core/obj/Debug/net9.0/ref/Auth.Core.dll differ diff --git a/Auth.Core/obj/Debug/net9.0/ref/Core.dll b/Auth.Core/obj/Debug/net9.0/ref/Core.dll new file mode 100644 index 0000000..8f78d1c Binary files /dev/null and b/Auth.Core/obj/Debug/net9.0/ref/Core.dll differ diff --git a/Auth.Core/obj/Debug/net9.0/refint/Auth.Core.dll b/Auth.Core/obj/Debug/net9.0/refint/Auth.Core.dll new file mode 100644 index 0000000..b9e9f09 Binary files /dev/null and b/Auth.Core/obj/Debug/net9.0/refint/Auth.Core.dll differ diff --git a/Auth.Core/obj/Debug/net9.0/refint/Core.dll b/Auth.Core/obj/Debug/net9.0/refint/Core.dll new file mode 100644 index 0000000..8f78d1c Binary files /dev/null and b/Auth.Core/obj/Debug/net9.0/refint/Core.dll differ diff --git a/Auth.Core/obj/project.assets.json b/Auth.Core/obj/project.assets.json new file mode 100644 index 0000000..10d1448 --- /dev/null +++ b/Auth.Core/obj/project.assets.json @@ -0,0 +1,1700 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Bogus/35.6.3": { + "type": "package", + "compile": { + "lib/net6.0/Bogus.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Bogus.dll": { + "related": ".xml" + } + } + }, + "FluentEmail.Core/3.0.2": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "5.0.0" + }, + "compile": { + "lib/netstandard2.0/FluentEmail.Core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Core.dll": {} + } + }, + "FluentEmail.Smtp/3.0.2": { + "type": "package", + "dependencies": { + "FluentEmail.Core": "3.0.2" + }, + "compile": { + "lib/netstandard2.0/FluentEmail.Smtp.dll": {} + }, + "runtime": { + "lib/netstandard2.0/FluentEmail.Smtp.dll": {} + } + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "8.0.1" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/10.0.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "10.0.0", + "Microsoft.Extensions.Identity.Stores": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "10.0.0", + "Microsoft.EntityFrameworkCore.Analyzers": "10.0.0", + "Microsoft.Extensions.Caching.Memory": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/10.0.0": { + "type": "package" + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.0", + "Microsoft.Extensions.Caching.Memory": "10.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "10.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Identity.Core/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Identity.Stores/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "10.0.0", + "Microsoft.Extensions.Identity.Core": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "type": "package", + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Abstractions": "8.12.1" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "8.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "8.0.1", + "System.IdentityModel.Tokens.Jwt": "8.0.1" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "8.0.0", + "Microsoft.IdentityModel.Logging": "8.12.1" + }, + "compile": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Npgsql/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "10.0.0" + }, + "compile": { + "lib/net10.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "[10.0.0, 11.0.0)", + "Microsoft.EntityFrameworkCore.Relational": "[10.0.0, 11.0.0)", + "Npgsql": "10.0.0" + }, + "compile": { + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + } + }, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "8.12.1", + "Microsoft.IdentityModel.Tokens": "8.12.1" + }, + "compile": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "Auth.Contracts/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "compile": { + "bin/placeholder/Auth.Contracts.dll": {} + }, + "runtime": { + "bin/placeholder/Auth.Contracts.dll": {} + } + }, + "Auth.Domain/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "dependencies": { + "Auth.Contracts": "1.0.0", + "Bogus": "35.6.3", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "10.0.0", + "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0" + }, + "compile": { + "bin/placeholder/Auth.Domain.dll": {} + }, + "runtime": { + "bin/placeholder/Auth.Domain.dll": {} + } + }, + "Generic/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "compile": { + "bin/placeholder/Generic.dll": {} + }, + "runtime": { + "bin/placeholder/Generic.dll": {} + } + } + } + }, + "libraries": { + "Bogus/35.6.3": { + "sha512": "+5omfZWy8gOcbpc48vKfMI4h/ecbdf3NQm6xCl3zMbaP4J3rMMm5h3kPFeIWBgt4mbz6YY0eeZDLR/6yv1khKw==", + "type": "package", + "path": "bogus/35.6.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "bogus.128.png", + "bogus.35.6.3.nupkg.sha512", + "bogus.nuspec", + "lib/net40/Bogus.dll", + "lib/net40/Bogus.xml", + "lib/net6.0/Bogus.dll", + "lib/net6.0/Bogus.xml", + "lib/netstandard1.3/Bogus.dll", + "lib/netstandard1.3/Bogus.xml", + "lib/netstandard2.0/Bogus.dll", + "lib/netstandard2.0/Bogus.xml" + ] + }, + "FluentEmail.Core/3.0.2": { + "sha512": "uQFFbJgMhhCFUti7pfMi429fMNi7fLGMj+7uDtD7POlQzLxlhXJ6tmt4Y1SI51sZsA36GO5b7+o29eY/dKiICQ==", + "type": "package", + "path": "fluentemail.core/3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentemail.core.3.0.2.nupkg.sha512", + "fluentemail.core.nuspec", + "fluentemail_logo_64x64.png", + "lib/netstandard2.0/FluentEmail.Core.dll" + ] + }, + "FluentEmail.Smtp/3.0.2": { + "sha512": "Y5pZKS/mXSl7D5WJWecvfo1kpIMDc6U0VRU6wRbE9wEv2IqMH3cQXa/97Pwi+m31COepIqc6dMhGMtAJ2Qh7rw==", + "type": "package", + "path": "fluentemail.smtp/3.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "fluentemail.smtp.3.0.2.nupkg.sha512", + "fluentemail.smtp.nuspec", + "fluentemail_logo_64x64.png", + "lib/netstandard2.0/FluentEmail.Smtp.dll" + ] + }, + "Microsoft.AspNetCore.Authentication.JwtBearer/10.0.0": { + "sha512": "0BgDfT1GoZnzjJOBwx5vFMK5JtqsTEas9pCEwd1/KKxNUAqFmreN60WeUoF+CsmSd9tOQuqWedvdBo/QqHuNTQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.jwtbearer/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll", + "lib/net10.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml", + "microsoft.aspnetcore.authentication.jwtbearer.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.jwtbearer.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/10.0.0": { + "sha512": "jGlm8BsWcN1IIxLaxcHP6s0u2OEiBMa0HPCiWkMK7xox/h4WP2CRMyk7tV0cJC5LdM3JoR5UUqU2cxat6ElwlA==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.internal/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net10.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "microsoft.aspnetcore.cryptography.internal.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.cryptography.internal.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/10.0.0": { + "sha512": "Xo7cBZnUfe+i+rnfM+NH/KVD50BnBrfjsUBjMzjxAL0HdNAUcnhcx9/01o4CX7CKf+jc2bgvg+frlT4aJcVdyg==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.keyderivation/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net10.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "microsoft.aspnetcore.cryptography.keyderivation.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.cryptography.keyderivation.nuspec" + ] + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/10.0.0": { + "sha512": "mH1+58nbX5RWSd8hajSnXSdpQ1MN3oca488Zd+DvKX2nPTAyTVNRzubMV06BmPcjOZ9waLr/AjwcNiCQ8bCscQ==", + "type": "package", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll", + "lib/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml", + "microsoft.aspnetcore.identity.entityframeworkcore.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.identity.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore/10.0.0": { + "sha512": "hHa2amRjMyBLUH/KTML6FgIAhZ0VFYkhCKwWEax0rO6iNeM1P5MflyeQLE5dniSIOZHc3Oqyv5UIyTFO4e1Auw==", + "type": "package", + "path": "microsoft.entityframeworkcore/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props", + "lib/net10.0/Microsoft.EntityFrameworkCore.dll", + "lib/net10.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.10.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { + "sha512": "C+TT9k7f1GQ8agOfV512K9iwrzi76RXVSDiLx+iWC9pz3QhEpSF1Dyk+FpVvd8ULQ+rqymfM8KQ7g48ttQVyMg==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/10.0.0": { + "sha512": "TxHQq0kn0tpYs2ljeRl8jtmWk720B0nteqI6mAZM77HWJpYT9Zj8SkkBBlj8K3Yeq18a6NBjz6YutE+shEk4Ag==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "microsoft.entityframeworkcore.analyzers.10.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.0": { + "sha512": "A3MX1ee7RDxWCUdx/KqP+74fbksz0UIhkVZh56YHvbPkEKsffCXgHU3LGkRDwqR/MrBNWLCWC/IVX79tzM30ZA==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/10.0.0": { + "sha512": "Zcoy6H9mSoGyvr7UvlGokEZrlZkcPCICPZr8mCsSt9U/N8eeCwCXwKF5bShdA66R0obxBCwP4AxomQHvVkC/uA==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net9.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.10.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/10.0.0": { + "sha512": "krK19MKp0BNiR9rpBDW7PKSrTMLVlifS9am3CVc4O1Jq6GWz0o4F+sw5OSL4L3mVd56W8l6JRgghUa2KB51vOw==", + "type": "package", + "path": "microsoft.extensions.caching.memory/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net10.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net9.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.10.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { + "sha512": "d2kDKnCsJvY7mBVhcjPSp9BkJk48DsaHPg5u+Oy4f8XaOqnEedRy/USyvnpHL92wpJ6DrTPy7htppUUzskbCXQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net9.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.10.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "sha512": "f0RBabswJq+gRu5a+hWIobrLWiUYPKMhCD9WO3sYBAdSy3FFH14LMvLVFZc2kPSCimBLxSuitUhsd6tb0TAY6A==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.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.10.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "sha512": "L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.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.10.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Identity.Core/10.0.0": { + "sha512": "EstJPVPxd71mTw5x4pbnUvSpPi3xWDNasM0QZx0p2J6bCxQkq7YNksRUJvOfFN28VCMrGRejnheNaGLDy/ROQQ==", + "type": "package", + "path": "microsoft.extensions.identity.core/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.Extensions.Identity.Core.dll", + "lib/net10.0/Microsoft.Extensions.Identity.Core.xml", + "lib/net462/Microsoft.Extensions.Identity.Core.dll", + "lib/net462/Microsoft.Extensions.Identity.Core.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml", + "microsoft.extensions.identity.core.10.0.0.nupkg.sha512", + "microsoft.extensions.identity.core.nuspec" + ] + }, + "Microsoft.Extensions.Identity.Stores/10.0.0": { + "sha512": "Rtg3Mjy13li7Lpim7qP+JN1pWXsBR/8mslLIhSMvt8WfojxkDlvUhVxY2leIVYnnl5igfixGLzjpC2soGhPCBw==", + "type": "package", + "path": "microsoft.extensions.identity.stores/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/net10.0/Microsoft.Extensions.Identity.Stores.xml", + "lib/net462/Microsoft.Extensions.Identity.Stores.dll", + "lib/net462/Microsoft.Extensions.Identity.Stores.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml", + "microsoft.extensions.identity.stores.10.0.0.nupkg.sha512", + "microsoft.extensions.identity.stores.nuspec" + ] + }, + "Microsoft.Extensions.Logging/10.0.0": { + "sha512": "BStFkd5CcnEtarlcgYDBcFzGYCuuNMzPs02wN3WBsOFoYIEmYoUdAiU+au6opzoqfTYJsMTW00AeqDdnXH2CvA==", + "type": "package", + "path": "microsoft.extensions.logging/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net10.0/Microsoft.Extensions.Logging.dll", + "lib/net10.0/Microsoft.Extensions.Logging.xml", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/net9.0/Microsoft.Extensions.Logging.dll", + "lib/net9.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.10.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "sha512": "FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.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.10.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/10.0.0": { + "sha512": "8oCAgXOow5XDrY9HaXX1QmH3ORsyZO/ANVHBlhLyCeWTH5Sg4UuqZeOTWJi6484M+LqSx0RqQXDJtdYy2BNiLQ==", + "type": "package", + "path": "microsoft.extensions.options/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net10.0/Microsoft.Extensions.Options.dll", + "lib/net10.0/Microsoft.Extensions.Options.xml", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.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.10.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "sha512": "inRnbpCS0nwO/RuoZIAqxQUuyjaknOOnCEZB55KSMMjRhl0RQDttSmLSGsUJN3RQ3ocf5NDLFd2mOQViHqMK5w==", + "type": "package", + "path": "microsoft.extensions.primitives/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net10.0/Microsoft.Extensions.Primitives.dll", + "lib/net10.0/Microsoft.Extensions.Primitives.xml", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.10.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.IdentityModel.Abstractions/8.12.1": { + "sha512": "JzWhET0VOCORyJbqDc1Wtdl8Q/l+I1MjFB0I/Jko+Ma691JZll8X6o9XwZtUce8FkqGuV4uY4/V1808XZOpDVg==", + "type": "package", + "path": "microsoft.identitymodel.abstractions/8.12.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.12.1.nupkg.sha512", + "microsoft.identitymodel.abstractions.nuspec" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/8.12.1": { + "sha512": "imi3xiRLzzKxN4m1aR9Z2X8GUmNsVH7GLA6AkwYStNnh3UzupFtHEEVk3GK1fCvnYdRbpnCGNYY6WQb9AfDAKg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/8.12.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.12.1.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/8.12.1": { + "sha512": "39HjVkU7Voe2jRLmORRB5PoTmta1ZPKzUZCc6ldlNlLzdx+um0+fAnvfk05LUQPrNxpvb5ZoqF00SrNvyO2Fzg==", + "type": "package", + "path": "microsoft.identitymodel.logging/8.12.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.12.1.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/8.0.1": { + "sha512": "uA2vpKqU3I2mBBEaeJAWPTjT9v1TZrGWKdgK6G5qJd03CLx83kdiqO9cmiK8/n1erkHzFBwU/RphP83aAe3i3g==", + "type": "package", + "path": "microsoft.identitymodel.protocols/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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/net9.0/Microsoft.IdentityModel.Protocols.dll", + "lib/net9.0/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.8.0.1.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/8.0.1": { + "sha512": "AQDbfpL+yzuuGhO/mQhKNsp44pm5Jv8/BI4KiFXR7beVGZoSH35zMV3PrmcfvSTsyI6qrcR898NzUauD6SRigg==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/8.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "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/net9.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net9.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.8.0.1.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/8.12.1": { + "sha512": "DzgPEABn3eZmIk4lhov0QPcoHkIbnAfgkyDPM7uGuWDHeockR9DdqNCD9Zy30hPfExu5VhbOXn9oPRi+tFUhEQ==", + "type": "package", + "path": "microsoft.identitymodel.tokens/8.12.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.12.1.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Npgsql/10.0.0": { + "sha512": "xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", + "type": "package", + "path": "npgsql/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net10.0/Npgsql.dll", + "lib/net10.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "lib/net9.0/Npgsql.dll", + "lib/net9.0/Npgsql.xml", + "npgsql.10.0.0.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { + "sha512": "E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", + "type": "package", + "path": "npgsql.entityframeworkcore.postgresql/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", + "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", + "npgsql.entityframeworkcore.postgresql.nuspec", + "postgresql.png" + ] + }, + "System.IdentityModel.Tokens.Jwt/8.12.1": { + "sha512": "jlYdVOJrdeyD80ppEqKJ8BhJdrV3MjeA+seURdhC0DnD41GyUA9Ik+P7Sb571ufVVCYIx93GjeqVvY3QyQxZAA==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/8.12.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.12.1.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "Auth.Contracts/1.0.0": { + "type": "project", + "path": "../Auth.Contracts/Auth.Contracts.csproj", + "msbuildProject": "../Auth.Contracts/Auth.Contracts.csproj" + }, + "Auth.Domain/1.0.0": { + "type": "project", + "path": "../Auth.Domain/Auth.Domain.csproj", + "msbuildProject": "../Auth.Domain/Auth.Domain.csproj" + }, + "Generic/1.0.0": { + "type": "project", + "path": "../../../SharedLogic/Generic/Generic.csproj", + "msbuildProject": "../../../SharedLogic/Generic/Generic.csproj" + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Auth.Contracts >= 1.0.0", + "Auth.Domain >= 1.0.0", + "FluentEmail.Core >= 3.0.2", + "FluentEmail.Smtp >= 3.0.2", + "Generic >= 1.0.0", + "Microsoft.AspNetCore.Authentication.JwtBearer >= 10.0.0", + "Microsoft.EntityFrameworkCore >= 10.0.0", + "Npgsql.EntityFrameworkCore.PostgreSQL >= 10.0.0", + "System.IdentityModel.Tokens.Jwt >= 8.12.1" + ] + }, + "packageFolders": { + "/home/yla/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj", + "projectName": "Auth.Core", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj" + }, + "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/SharedLogic/Generic/Generic.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "FluentEmail.Core": { + "target": "Package", + "version": "[3.0.2, )" + }, + "FluentEmail.Smtp": { + "target": "Package", + "version": "[3.0.2, )" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[10.0.0, )" + }, + "System.IdentityModel.Tokens.Jwt": { + "target": "Package", + "version": "[8.12.1, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/Auth.Core/obj/project.nuget.cache b/Auth.Core/obj/project.nuget.cache new file mode 100644 index 0000000..607855b --- /dev/null +++ b/Auth.Core/obj/project.nuget.cache @@ -0,0 +1,40 @@ +{ + "version": 2, + "dgSpecHash": "KdHqt8yDaRk=", + "success": true, + "projectFilePath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Core/Auth.Core.csproj", + "expectedPackageFiles": [ + "/home/yla/.nuget/packages/bogus/35.6.3/bogus.35.6.3.nupkg.sha512", + "/home/yla/.nuget/packages/fluentemail.core/3.0.2/fluentemail.core.3.0.2.nupkg.sha512", + "/home/yla/.nuget/packages/fluentemail.smtp/3.0.2/fluentemail.smtp.3.0.2.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.authentication.jwtbearer/10.0.0/microsoft.aspnetcore.authentication.jwtbearer.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.cryptography.internal/10.0.0/microsoft.aspnetcore.cryptography.internal.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.cryptography.keyderivation/10.0.0/microsoft.aspnetcore.cryptography.keyderivation.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.identity.entityframeworkcore/10.0.0/microsoft.aspnetcore.identity.entityframeworkcore.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.entityframeworkcore/10.0.0/microsoft.entityframeworkcore.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.entityframeworkcore.abstractions/10.0.0/microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.entityframeworkcore.analyzers/10.0.0/microsoft.entityframeworkcore.analyzers.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.entityframeworkcore.relational/10.0.0/microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.caching.abstractions/10.0.0/microsoft.extensions.caching.abstractions.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.caching.memory/10.0.0/microsoft.extensions.caching.memory.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.configuration.abstractions/10.0.0/microsoft.extensions.configuration.abstractions.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.dependencyinjection/10.0.0/microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/10.0.0/microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.identity.core/10.0.0/microsoft.extensions.identity.core.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.identity.stores/10.0.0/microsoft.extensions.identity.stores.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.logging/10.0.0/microsoft.extensions.logging.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.logging.abstractions/10.0.0/microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.options/10.0.0/microsoft.extensions.options.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.primitives/10.0.0/microsoft.extensions.primitives.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.abstractions/8.12.1/microsoft.identitymodel.abstractions.8.12.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.jsonwebtokens/8.12.1/microsoft.identitymodel.jsonwebtokens.8.12.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.logging/8.12.1/microsoft.identitymodel.logging.8.12.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.protocols/8.0.1/microsoft.identitymodel.protocols.8.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.protocols.openidconnect/8.0.1/microsoft.identitymodel.protocols.openidconnect.8.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.identitymodel.tokens/8.12.1/microsoft.identitymodel.tokens.8.12.1.nupkg.sha512", + "/home/yla/.nuget/packages/npgsql/10.0.0/npgsql.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/npgsql.entityframeworkcore.postgresql/10.0.0/npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.identitymodel.tokens.jwt/8.12.1/system.identitymodel.tokens.jwt.8.12.1.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Auth.Domain/Auth.Domain.csproj b/Auth.Domain/Auth.Domain.csproj new file mode 100644 index 0000000..8d085d8 --- /dev/null +++ b/Auth.Domain/Auth.Domain.csproj @@ -0,0 +1,30 @@ + + + + net10.0 + enable + enable + + + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + + + + + \ No newline at end of file diff --git a/Auth.Domain/Configuration/BundleConfiguration.cs b/Auth.Domain/Configuration/BundleConfiguration.cs new file mode 100644 index 0000000..f4dbbe4 --- /dev/null +++ b/Auth.Domain/Configuration/BundleConfiguration.cs @@ -0,0 +1,43 @@ +// using System; +// using System.Collections.Generic; +// using System.Linq; +// using System.Threading.Tasks; +// using Bogus; +// using Domain.Entities; +// using Microsoft.EntityFrameworkCore; +// using Microsoft.EntityFrameworkCore.Metadata.Builders; + +// namespace Auth.Domain.Configuration; + +// public class BundleConfiguration : IEntityTypeConfiguration +// { +// // private readonly int count; + +// public List Bundles { get; set; } + +// public BundleConfiguration(int count) +// { +// // this.count = count; +// Bundles = GenerateBundles(count); +// } + +// private List GenerateBundles(int count) +// { +// var fakerCategory = new Faker() +// .RuleFor(p => p.Id, f => Guid.NewGuid()) +// .RuleFor(p => p.Name, f => f.Commerce.ProductName()) +// .RuleFor(p => p.Description, f => f.Commerce.ProductDescription()) +// .RuleFor(p => p.Photo, f => f.Image.LoremFlickrUrl(640, 480, "bundle")) +// .RuleFor(p => p.Language, f => "test") +// .RuleFor(p => p.CategoryId, f => f.Random.Number(1, 30)); + +// return fakerCategory.Generate(count); +// } + +// public void Configure(EntityTypeBuilder builder) +// { +// ////builder.HasIndex(category => category.Name).IsUnique(); +// //builder.Property(c => c.Name).HasMaxLength(450); +// builder.HasData(Bundles); +// } +// } diff --git a/Auth.Domain/Configuration/CategoryConfiguration.cs b/Auth.Domain/Configuration/CategoryConfiguration.cs new file mode 100755 index 0000000..31501c5 --- /dev/null +++ b/Auth.Domain/Configuration/CategoryConfiguration.cs @@ -0,0 +1,44 @@ +// using Bogus; +// using Domain.Entities; +// using Microsoft.EntityFrameworkCore; +// using Microsoft.EntityFrameworkCore.Metadata.Builders; + +// namespace Auth.Domain.Configuration; + +// public class CategoryConfiguration : IEntityTypeConfiguration +// { +// private readonly int count; + +// public List Categories { get; set; } + +// public CategoryConfiguration(int count) +// { +// this.count = count; +// Categories = GenerateCategories(count); +// } + +// private List GenerateCategories(int count) +// { + +// var id = 1; +// var fakerCategory = new Faker() +// .RuleFor(p => p.Id, f => id++) +// .RuleFor(p => p.Name, f => f.Commerce.ProductName()) +// .RuleFor(p => p.Show, f => true) +// .RuleFor(p => p.Description, f => f.Commerce.ProductDescription()) +// .RuleFor(p => p.Created, f => f.Date.Past(1, DateTime.UtcNow)) +// .RuleFor(p => p.Language, f => "test") + +// .RuleFor(p => p.PhotoPath, f => f.Image.LoremFlickrUrl(512, 512, "Category Categories")); + +// return fakerCategory.Generate(count); +// } + + +// public void Configure(EntityTypeBuilder builder) +// { +// ////builder.HasIndex(category => category.Name).IsUnique(); +// //builder.Property(c => c.Name).HasMaxLength(450); +// builder.HasData(Categories); +// } +// } diff --git a/Auth.Domain/Configuration/ProductConfiguration.cs b/Auth.Domain/Configuration/ProductConfiguration.cs new file mode 100755 index 0000000..693a845 --- /dev/null +++ b/Auth.Domain/Configuration/ProductConfiguration.cs @@ -0,0 +1,44 @@ +// using Bogus; +// using Domain.Entities; +// using Microsoft.EntityFrameworkCore; +// using Microsoft.EntityFrameworkCore.Metadata.Builders; + +// namespace Auth.Domain.Configuration; + +// public class ProductConfiguration : IEntityTypeConfiguration +// { +// private readonly int count; +// private readonly int categoryCount; + +// public ProductConfiguration(int count, int categoryCount) +// { +// this.count = count; +// this.categoryCount = categoryCount; +// } + +// private List GenerateProducts() +// { +// var i = 1; +// var fakerProduct = new Faker() +// .RuleFor(p => p.Id, f => Guid.NewGuid()) +// .RuleFor(p => p.Name, f => f.Commerce.ProductName()) +// // .RuleFor(p => p.Price, f => f.Random.Number(1, 1000)) +// // .RuleFor(p => p.ItemsSold, f => f.Random.Number(2, 5)) +// .RuleFor(p => p.Language, f => "test") + +// // .RuleFor(p => p.PiecesLeft, f => f.Random.Number(2, 5)) +// .RuleFor(p => p.CategoryName, f => "Fishing Rods") +// .RuleFor(p => p.CategoryId, f => f.Random.Number(1, categoryCount)) +// .RuleFor(p => p.Description, f => f.Commerce.ProductDescription()) +// .RuleFor(p => p.Created, f => f.Date.Past(1, DateTime.UtcNow)) +// .RuleFor(p => p.PhotoPath, f => f.Image.LoremFlickrUrl(512, 512, "Product")); + +// return fakerProduct.Generate(count); +// } + +// public void Configure(EntityTypeBuilder builder) +// { +// builder.HasData(GenerateProducts()); +// // builder.HasIndex(u => u.Name).IsUnique(); +// } +// } diff --git a/Auth.Domain/Configuration/RoleConfiguration.cs b/Auth.Domain/Configuration/RoleConfiguration.cs new file mode 100755 index 0000000..2aadb01 --- /dev/null +++ b/Auth.Domain/Configuration/RoleConfiguration.cs @@ -0,0 +1,33 @@ +// using Contracts; +// using Microsoft.AspNetCore.Identity; +// using Microsoft.EntityFrameworkCore; +// using Microsoft.EntityFrameworkCore.Metadata.Builders; + +// namespace Auth.Domain.Configuration; + +// public class RoleConfiguration : IEntityTypeConfiguration +// { +// private List CreateRoles() +// { +// var roleList = new List(); +// // foreach (var role in Enum.GetValues(typeof(AppEnum.Roles))) +// // { +// // var newRole = new IdentityRole() +// // { +// // Id = Guid.NewGuid().ToString(), +// // Name = role.ToString(), +// // NormalizedName = role.ToString().ToUpper(), +// // ConcurrencyStamp = Guid.NewGuid().ToString() +// // }; +// // roleList.Add(newRole); +// // } + +// return roleList; +// } + + +// public void Configure(EntityTypeBuilder builder) +// { +// builder.HasData(CreateRoles()); +// } +// } diff --git a/Auth.Domain/Configuration/ShippingConfiguration.cs b/Auth.Domain/Configuration/ShippingConfiguration.cs new file mode 100644 index 0000000..d6529cd --- /dev/null +++ b/Auth.Domain/Configuration/ShippingConfiguration.cs @@ -0,0 +1,31 @@ +// using System; +// using System.Collections.Generic; +// using System.Linq; +// using System.Threading.Tasks; +// using Domain.Entities; +// using Microsoft.EntityFrameworkCore; +// using Microsoft.EntityFrameworkCore.Metadata.Builders; + +// namespace Auth.Domain.Configuration; + +// public class ShippingConfiguration : IEntityTypeConfiguration +// { +// private List Generate() +// { +// return new List() +// { +// new Shipping() {Id = 1, ShippingCost = 10, Name ="Standard Shipping - $10"}, +// new Shipping() {Id = 2, ShippingCost = 50, Name ="Fast Shipping - $50"}, + +// }; + +// } + +// public void Configure(EntityTypeBuilder builder) +// { +// builder.HasData(Generate()); +// // builder.HasIndex(u => u.Name).IsUnique(); +// } + + +// } diff --git a/Auth.Domain/Configuration/UserConfiguration.cs b/Auth.Domain/Configuration/UserConfiguration.cs new file mode 100755 index 0000000..fa1d09a --- /dev/null +++ b/Auth.Domain/Configuration/UserConfiguration.cs @@ -0,0 +1,55 @@ +// using Bogus; +// using Domain.Entities; +// using Microsoft.AspNetCore.Identity; +// using Microsoft.EntityFrameworkCore; +// using Microsoft.EntityFrameworkCore.Metadata.Builders; + +// namespace Auth.Domain.Configuration; + +// public class UserConfiguration : IEntityTypeConfiguration +// { +// private readonly PasswordHasher _Hasher = new PasswordHasher(); +// private readonly int count; + +// public UserConfiguration(int count) +// { +// this.count = count; + +// } + +// private List GenerateUsers() +// { +// var fakerUser = new Faker() +// .RuleFor(u => u.Name, f => f.Name.FullName(f.Person.Gender)) +// .RuleFor(u => u.Email, (f, u) => f.Internet.Email(u.Name)) +// .RuleFor(u => u.EmailConfirmed, true) +// .RuleFor(u => u.Building, f => f.Address.BuildingNumber()) +// .RuleFor(u => u.Floor, f => f.Random.Number(1, 3)) +// .RuleFor(u => u.Flat, f => f.Random.Number(3, 10)) +// .RuleFor(u => u.PhotoPath, f => f.Person.Avatar) +// .RuleFor(u => u.PasswordHash, (f, u) => _Hasher.HashPassword(u, "aaa111!!!AAA")) +// .RuleFor(u => u.PhoneNumber, f => f.Phone.PhoneNumber()) +// .RuleFor(u => u.locationLati, f => f.Random.Number(300)) +// .RuleFor(u => u.locationLong, f => f.Random.Number(300)); + +// return fakerUser.Generate(count); +// } + +// public void Configure(EntityTypeBuilder builder) +// { +// var adminUser = new AppUser() +// { +// Id = Guid.NewGuid().ToString(), +// Name = "said", +// Email = "said.amir.kattan@outlook.com", +// UserName = "said.amir.kattan@outlook.com", +// NormalizedEmail = "said.amir.kattan@outlook.com".ToUpper(), +// NormalizedUserName = "said.amir.kattan@outlook.com".ToUpper(), +// PhoneNumber = "01231231322", +// EmailConfirmed = true, +// PasswordHash = _Hasher.HashPassword(null, "aaa111!!!AAA") +// }; + +// builder.HasData(GenerateUsers(), adminUser); +// } +// } diff --git a/Auth.Domain/Configuration/UserRoleConfiguration.cs b/Auth.Domain/Configuration/UserRoleConfiguration.cs new file mode 100755 index 0000000..3a942ff --- /dev/null +++ b/Auth.Domain/Configuration/UserRoleConfiguration.cs @@ -0,0 +1,15 @@ +// using Microsoft.AspNetCore.Identity; +// using Microsoft.EntityFrameworkCore; +// using Microsoft.EntityFrameworkCore.Metadata.Builders; + +// namespace Auth.Domain.Configuration; + +// public class UserRoleConfiguration : IEntityTypeConfiguration> +// { + + +// public void Configure(EntityTypeBuilder> builder) +// { + +// } +// } diff --git a/Auth.Domain/Context.cs b/Auth.Domain/Context.cs new file mode 100755 index 0000000..81fa387 --- /dev/null +++ b/Auth.Domain/Context.cs @@ -0,0 +1,129 @@ +using Auth.Domain.Entities; +using Auth.Domain.Entities.HR; +using Bogus; +// using Domain.Configuration; +using Microsoft.AspNetCore.Identity; +using Microsoft.AspNetCore.Identity.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Diagnostics; + +namespace Auth.Domain; + +public class Context : IdentityDbContext +{ + public Context(DbContextOptions options) + : base(options) { } + + // public DbSet Products { get; set; } + public DbSet AppUsers { get; set; } + public DbSet Roles { get; set; } + + // public DbSet Salaries { get; set; } + + // public DbSet Categories { get; set; } + // public DbSet Orders { get; set; } + // public DbSet ItemOrders { get; set; } + + // public DbSet Bills { get; set; } + // public DbSet BillTypes { get; set; } + + // public DbSet Roles { get; set; } + // public DbSet Shippings { get; set; } + + // public DbSet Bundles { get; set; } + // public DbSet Requests { get; set; } + + // public DbSet Purchases { get; set; } + // public DbSet StoreItems { get; set; } + + // public DbSet InventoryOrders { get; set; } + // public DbSet Deliveries { get; set; } + + protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) + { + optionsBuilder.ConfigureWarnings(warnings => + warnings.Ignore(RelationalEventId.PendingModelChangesWarning) + ); + } + + protected override void OnModelCreating(ModelBuilder modelBuilder) + { + base.OnModelCreating(modelBuilder); + + var password = new PasswordHasher(); + var superAdmin = new AppUser() + { + Id = Guid.NewGuid().ToString(), + Name = "said", + Email = "said.amir.kattan@outlook.com", + UserName = "said.amir.kattan@outlook.com", + NormalizedEmail = "said.amir.kattan@outlook.com".ToUpper(), + NormalizedUserName = "said.amir.kattan@outlook.com".ToUpper(), + Building = "Building 123", + PhoneNumber = "01231231322", + PhotoPath = "Test", + EmailConfirmed = true, + Holidays = 2, + PasswordHash = password.HashPassword(null, "aaa111!!!AAA"), + // Roles = new List() {} + }; + + var standardRole = new IdentityRole() + { + Id = Guid.NewGuid().ToString(), + Name = "User", + NormalizedName = "User".ToUpper(), + ConcurrencyStamp = Guid.NewGuid().ToString(), + }; + + var moderatorRole = new IdentityRole() + { + Id = Guid.NewGuid().ToString(), + Name = "Moderator", + NormalizedName = "moderator".ToUpper(), + ConcurrencyStamp = Guid.NewGuid().ToString(), + }; + + var AdminRole = new IdentityRole() + { + Id = Guid.NewGuid().ToString(), + Name = "Admin", + NormalizedName = "Admin".ToUpper(), + ConcurrencyStamp = Guid.NewGuid().ToString(), + }; + + var superAdminRole = new IdentityRole() + { + Id = Guid.NewGuid().ToString(), + Name = "SuperAdmin", + NormalizedName = "superAdmin".ToUpper(), + ConcurrencyStamp = Guid.NewGuid().ToString(), + }; + + var userRole = new IdentityUserRole() + { + RoleId = superAdminRole.Id, + UserId = superAdmin.Id, + }; + + modelBuilder.Entity().HasData(superAdmin); + modelBuilder + .Entity() + .HasData(standardRole, moderatorRole, AdminRole, superAdminRole); + modelBuilder.Entity>().HasData(userRole); + + // var users = new UserConfiguration(300); + + // modelBuilder.Entity().HasData(users); + + + + + // var categoryCount = 30; + //modelBuilder.Entity().HasData(productsList); + // modelBuilder.ApplyConfiguration(new CategoryConfiguration(categoryCount)); + // modelBuilder.ApplyConfiguration(new ProductConfiguration(1000, categoryCount)); + // modelBuilder.ApplyConfiguration(new ShippingConfiguration()); + // modelBuilder.ApplyConfiguration(new BundleConfiguration(50)); + } +} diff --git a/Auth.Domain/Entities/AppUser.cs b/Auth.Domain/Entities/AppUser.cs new file mode 100755 index 0000000..58033bf --- /dev/null +++ b/Auth.Domain/Entities/AppUser.cs @@ -0,0 +1,84 @@ +using System.ComponentModel.DataAnnotations.Schema; +using System.Text.Json.Serialization; +using Auth.Contracts.DTOs.Users; +// using Contracts.DTOs.Users; +// using Domain.Entities.HR; +using Microsoft.AspNetCore.Identity; + +namespace Auth.Domain.Entities.HR; + +public class AppUser : IdentityUser +{ + public string Name { get; set; } + + public string PhotoPath { get; set; } + + public int Holidays { get; set; } = 0; + + public double locationLong { get; set; } + public double locationLati { get; set; } + + // public string? Country { get; set; } + // public string? City { get; set; } + public string? Street { get; set; } + public string Building { get; set; } + public string? Address { get; set; } + public int? Floor { get; set; } + public int? Flat { get; set; } + + public string? Department { get; set; } + + public string? JobTitle { get; set; } + + public double? SalaryAmount { get; set; } + + // public ICollection Salaries { get; set; } + + // public string? CartId { get; set; } + + // public Order? Cart { get; set; } + + // public bool? EmailConfirmed { get; set; } + + + public string? RefreshToken { get; set; } + + public DateTime? RefreshTokenExpiryDate { get; set; } + + // public List Roles { get; set; } + + [JsonIgnore] + public virtual List Favorites { get; set; } = new(); + + // public ICollection Orders { get; set; } + + + public static AppUser ToEntity(UserVM userVM) + { + return new AppUser + { + Id = userVM.Id, + Name = userVM.Name, + PhoneNumber = userVM.PhoneNumber, + PhotoPath = userVM.PhotoPath, + Email = userVM.Email, + // JobTitle = userVM.JobTitle, + // Holidays = userVM.Holidays, + // Roles = userVM.Roles, + }; + } + + public static UserVM ToVM(AppUser appUser) + { + return new UserVM() + { + Id = appUser.Id, + Name = appUser.Name, + PhoneNumber = appUser.PhoneNumber, + PhotoPath = appUser.PhotoPath, + Email = appUser.Email, + // Holidays = appUser.Holidays, + // Roles = appUser.Roles, + }; + } +} diff --git a/Auth.Domain/Entities/Emails/EmailTemplate.cs b/Auth.Domain/Entities/Emails/EmailTemplate.cs new file mode 100644 index 0000000..c6f993d --- /dev/null +++ b/Auth.Domain/Entities/Emails/EmailTemplate.cs @@ -0,0 +1,21 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Domain.Entities.Emails; + +public class EmailTemplate +{ + public Guid Id {get; set;} + + public string Name {get; set;} + + public ICollection Tags {get; set;} + + public string Category {get; set;} + + public string HTMLTemplate {get; set;} + + public string Values { get; set; } +} diff --git a/Auth.Domain/Entities/Emails/SenderEmail.cs b/Auth.Domain/Entities/Emails/SenderEmail.cs new file mode 100644 index 0000000..c0c7883 --- /dev/null +++ b/Auth.Domain/Entities/Emails/SenderEmail.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Domain.Entities.Emails; + +public class SenderCredentials +{ + public Guid Id {get; set;} + + public Guid Email {get; set;} + public Guid Password {get; set;} + +} diff --git a/Auth.Domain/Entities/HR/Punch.cs b/Auth.Domain/Entities/HR/Punch.cs new file mode 100644 index 0000000..75728e2 --- /dev/null +++ b/Auth.Domain/Entities/HR/Punch.cs @@ -0,0 +1,15 @@ +// using System; +// using System.Collections.Generic; +// using System.Linq; +// using System.Threading.Tasks; + +// namespace Auth.Domain.Entities.HR; + +// public class Punch +// { +// public Guid Id { get; set; } +// public string EmployeeId { get; set; } +// public AppUser Employee { get; set; } +// public DateTime DateTime { get; set; } +// public bool IsAttendant { get; set; } +// } diff --git a/Auth.Domain/Entities/HR/Rule.cs b/Auth.Domain/Entities/HR/Rule.cs new file mode 100644 index 0000000..bb20e8a --- /dev/null +++ b/Auth.Domain/Entities/HR/Rule.cs @@ -0,0 +1,8 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; + +namespace Auth.Domain.Entities.HR; + +public class Rule { } diff --git a/Auth.Domain/Entities/HR/Salary.cs b/Auth.Domain/Entities/HR/Salary.cs new file mode 100644 index 0000000..3306939 --- /dev/null +++ b/Auth.Domain/Entities/HR/Salary.cs @@ -0,0 +1,44 @@ +// using System; +// using System.Collections.Generic; +// using System.Linq; +// using System.Threading.Tasks; +// using Contracts.DTOs.HR; + +// namespace Auth.Domain.Entities.HR; + +// public class Salary +// { +// public Guid Id { get; set; } + +// public double Amount { get; set; } + +// public DateTime StartDate { get; set; } + +// public DateTime? EndDate { get; set; } + +// public string EmployeeName { get; set; } +// public string EmployeeId { get; set; } +// public AppUser Employee { get; set; } + +// public static SalaryVM ToVM(Salary salary) +// { +// return new SalaryVM() +// { +// Amount = salary.Amount, +// EmployeeId = salary.EmployeeId, +// StartDate = salary.StartDate, +// EndDate = salary.EndDate, +// }; +// } + +// public static Salary ToEntity(SalaryVM salaryVM) +// { +// return new Salary() +// { +// Amount = salaryVM.Amount, +// EmployeeId = salaryVM.EmployeeId, +// StartDate = salaryVM.StartDate, +// EndDate = salaryVM.EndDate, +// }; +// } +// } diff --git a/Auth.Domain/Entities/Request.cs b/Auth.Domain/Entities/Request.cs new file mode 100644 index 0000000..5ef23f0 --- /dev/null +++ b/Auth.Domain/Entities/Request.cs @@ -0,0 +1,120 @@ +// using System; +// using System.Collections.Generic; +// using System.Linq; +// using System.Threading.Tasks; +// using Contracts; +// using Contracts.DTOs.Requests; + +// namespace Auth.Domain.Entities; + +// public class Request +// { +// public Guid Id { get; set; } + +// public AppEnum.RequestType? RequestType { get; set; } + +// public string Title { get; set; } + +// public string Description { get; set; } + +// // Punch properties +// public DateTime? PunchDate { get; set; } = DateTime.UtcNow; + +// public TimeSpan? PunchTime { get; set; } = DateTime.UtcNow.TimeOfDay; + +// public bool? IsAttend { get; set; } = true; + +// // Leave permission properties +// public DateTime? PermissionDate { get; set; } = DateTime.UtcNow; + +// public TimeSpan? PermissionTime { get; set; } = DateTime.UtcNow.TimeOfDay; + +// public bool? IsLeaveEarly { get; set; } = true; + +// // Absence permission properties +// public DateTime? AbsenceDate { get; set; } = DateTime.UtcNow; + +// public bool? IsFromHolidays { get; set; } = false; + +// // Financial properties +// public AppEnum.FinancialType? FinancialType { get; set; } +// public AppEnum.RequestStatus? RequestStatus { get; set; } + +// public decimal? Amount { get; set; } + +// public string IssuerId { get; set; } +// public AppUser? Issuer { get; set; } + +// public string? AcceptedById { get; set; } +// public AppUser? AcceptedBy { get; set; } + +// public DateTime? DateRequestCreated { get; set; } = DateTime.UtcNow; +// public DateTime? DateRequestTreated { get; set; } + +// public override string ToString() +// { +// return $"Request Type: {RequestType}\n" +// + $"Punch Date: {PunchDate}\n" +// + $"Punch Time: {PunchTime}\n" +// + $"Is Attend: {IsAttend}\n" +// + $"Permission Date: {PermissionDate}\n" +// + $"Permission Time: {PermissionTime}\n" +// + $"Is Leave Early: {IsLeaveEarly}\n" +// + $"Absence Date: {AbsenceDate}\n" +// + $"Is From Holidays: {IsFromHolidays}\n" +// + $"Financial Type: {FinancialType}\n" +// + $"Amount: {Amount}"; +// } + +// public static Request ToEntity(RequestVM requestVM) +// { +// return new Request +// { +// Id = requestVM.Id, +// RequestType = requestVM.RequestType, +// Title = requestVM.Title, +// Description = requestVM.Description, +// PunchDate = requestVM.PunchDate, +// PunchTime = requestVM.PunchTime, +// IsAttend = requestVM.IsAttend, +// PermissionDate = requestVM.PermissionDate, +// PermissionTime = requestVM.PermissionTime, +// IsLeaveEarly = requestVM.IsLeaveEarly, +// AbsenceDate = requestVM.AbsenceDate, +// IsFromHolidays = requestVM.IsFromHolidays, +// FinancialType = requestVM.FinancialType, +// Amount = requestVM.Amount, +// IssuerId = requestVM.IssuerId, +// AcceptedById = requestVM.AcceptedById, +// DateRequestCreated = DateTime.UtcNow, +// DateRequestTreated = requestVM.DateRequestTreated, +// }; +// } + +// public static RequestVM ToVM(Request request) +// { +// return new RequestVM() +// { +// Id = request.Id, +// RequestType = request.RequestType.Value, +// Title = request.Title, +// Description = request.Description, +// PunchDate = request.PunchDate, +// PunchTime = request.PunchTime, +// IsAttend = request.IsAttend, +// PermissionDate = request.PermissionDate, +// PermissionTime = request.PermissionTime, +// IsLeaveEarly = request.IsLeaveEarly, +// AbsenceDate = request.AbsenceDate, +// IsFromHolidays = request.IsFromHolidays, +// FinancialType = request.FinancialType.Value, +// Amount = request.Amount, +// IssuerId = request.IssuerId, +// Issuer = AppUser.ToVM(request.Issuer), +// AcceptedById = request.AcceptedById, +// AcceptedBy = AppUser.ToVM(request.AcceptedBy), +// DateRequestCreated = request.DateRequestCreated, +// DateRequestTreated = request.DateRequestTreated, +// }; +// } +// } diff --git a/Auth.Domain/Entities/Role.cs b/Auth.Domain/Entities/Role.cs new file mode 100644 index 0000000..685148a --- /dev/null +++ b/Auth.Domain/Entities/Role.cs @@ -0,0 +1,11 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using Microsoft.AspNetCore.Identity; + +namespace Auth.Domain.Entities; + +public class Role : IdentityRole { + + } diff --git a/Auth.Domain/Entities/UploadedFile.cs b/Auth.Domain/Entities/UploadedFile.cs new file mode 100644 index 0000000..b46275a --- /dev/null +++ b/Auth.Domain/Entities/UploadedFile.cs @@ -0,0 +1,29 @@ +// using System; +// using System.Collections.Generic; +// using System.ComponentModel.DataAnnotations.Schema; +// using System.Linq; +// using System.Threading.Tasks; + +// namespace Auth.Domain.Entities; + +// public class UploadedFile +// { +// public Guid Id { get; set; } + +// public string Type { get; set; } + +// public string Extension { get; set; } + +// public string Name { get; set; } + + + +// [NotMapped] +// public string? Content64 { get; set; } + +// [NotMapped] +// public byte[]? Content { get; set; } + +// public string? UploadLink { get; set; } + +// } diff --git a/Auth.Domain/Migrations/20251122093051_mig1.Designer.cs b/Auth.Domain/Migrations/20251122093051_mig1.Designer.cs new file mode 100644 index 0000000..09293fa --- /dev/null +++ b/Auth.Domain/Migrations/20251122093051_mig1.Designer.cs @@ -0,0 +1,425 @@ +// +using System; +using System.Collections.Generic; +using Auth.Domain; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +namespace Domain.Migrations +{ + [DbContext(typeof(Context))] + [Migration("20251122093051_mig1")] + partial class mig1 + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "9.0.7") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b => + { + b.Property("Id") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasColumnType("text"); + + b.Property("Discriminator") + .IsRequired() + .HasMaxLength(13) + .HasColumnType("character varying(13)"); + + b.Property("Name") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("NormalizedName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedName") + .IsUnique() + .HasDatabaseName("RoleNameIndex"); + + b.ToTable("AspNetRoles", (string)null); + + b.HasDiscriminator().HasValue("IdentityRole"); + + b.UseTphMappingStrategy(); + + b.HasData( + new + { + Id = "5f2d64eb-b558-45fa-9a93-add5b9940c95", + ConcurrencyStamp = "2f3d3132-e586-4906-b127-65721f5e6d8c", + Name = "User", + NormalizedName = "USER" + }, + new + { + Id = "390a583c-a48c-40ad-a96b-e579fbbae76e", + ConcurrencyStamp = "da829af8-21e0-4ad7-b6f6-4136ecb73715", + Name = "Moderator", + NormalizedName = "MODERATOR" + }, + new + { + Id = "b893be66-0f84-4088-9d31-0079221f8166", + ConcurrencyStamp = "47c2d510-67ba-4c15-84a7-2acb2a38bc96", + Name = "Admin", + NormalizedName = "ADMIN" + }, + new + { + Id = "7d32cf02-906b-474d-a0be-c89778cb4da6", + ConcurrencyStamp = "0dc7feb3-48dc-487f-bf3c-3f505425d18f", + Name = "SuperAdmin", + NormalizedName = "SUPERADMIN" + }); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ClaimType") + .HasColumnType("text"); + + b.Property("ClaimValue") + .HasColumnType("text"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetRoleClaims", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUser", b => + { + b.Property("Id") + .HasColumnType("text"); + + b.Property("AccessFailedCount") + .HasColumnType("integer"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasColumnType("text"); + + b.Property("Discriminator") + .IsRequired() + .HasMaxLength(13) + .HasColumnType("character varying(13)"); + + b.Property("Email") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("EmailConfirmed") + .HasColumnType("boolean"); + + b.Property("LockoutEnabled") + .HasColumnType("boolean"); + + b.Property("LockoutEnd") + .HasColumnType("timestamp with time zone"); + + b.Property("NormalizedEmail") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("NormalizedUserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("PasswordHash") + .HasColumnType("text"); + + b.Property("PhoneNumber") + .HasColumnType("text"); + + b.Property("PhoneNumberConfirmed") + .HasColumnType("boolean"); + + b.Property("SecurityStamp") + .HasColumnType("text"); + + b.Property("TwoFactorEnabled") + .HasColumnType("boolean"); + + b.Property("UserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedEmail") + .HasDatabaseName("EmailIndex"); + + b.HasIndex("NormalizedUserName") + .IsUnique() + .HasDatabaseName("UserNameIndex"); + + b.ToTable("AspNetUsers", (string)null); + + b.HasDiscriminator().HasValue("IdentityUser"); + + b.UseTphMappingStrategy(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ClaimType") + .HasColumnType("text"); + + b.Property("ClaimValue") + .HasColumnType("text"); + + b.Property("UserId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserClaims", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.Property("LoginProvider") + .HasColumnType("text"); + + b.Property("ProviderKey") + .HasColumnType("text"); + + b.Property("ProviderDisplayName") + .HasColumnType("text"); + + b.Property("UserId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("LoginProvider", "ProviderKey"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserLogins", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.Property("UserId") + .HasColumnType("text"); + + b.Property("RoleId") + .HasColumnType("text"); + + b.HasKey("UserId", "RoleId"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetUserRoles", (string)null); + + b.HasData( + new + { + UserId = "a9082144-5081-407c-a897-0149eaeea62e", + RoleId = "7d32cf02-906b-474d-a0be-c89778cb4da6" + }); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.Property("UserId") + .HasColumnType("text"); + + b.Property("LoginProvider") + .HasColumnType("text"); + + b.Property("Name") + .HasColumnType("text"); + + b.Property("Value") + .HasColumnType("text"); + + b.HasKey("UserId", "LoginProvider", "Name"); + + b.ToTable("AspNetUserTokens", (string)null); + }); + + modelBuilder.Entity("Auth.Domain.Entities.Role", b => + { + b.HasBaseType("Microsoft.AspNetCore.Identity.IdentityRole"); + + b.HasDiscriminator().HasValue("Role"); + }); + + modelBuilder.Entity("Auth.Domain.Entities.HR.AppUser", b => + { + b.HasBaseType("Microsoft.AspNetCore.Identity.IdentityUser"); + + b.Property("Address") + .HasColumnType("text"); + + b.Property("Building") + .IsRequired() + .HasColumnType("text"); + + b.Property("Department") + .HasColumnType("text"); + + b.PrimitiveCollection>("Favorites") + .IsRequired() + .HasColumnType("text[]"); + + b.Property("Flat") + .HasColumnType("integer"); + + b.Property("Floor") + .HasColumnType("integer"); + + b.Property("Holidays") + .HasColumnType("integer"); + + b.Property("JobTitle") + .HasColumnType("text"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("PhotoPath") + .IsRequired() + .HasColumnType("text"); + + b.Property("RefreshToken") + .HasColumnType("text"); + + b.Property("RefreshTokenExpiryDate") + .HasColumnType("timestamp with time zone"); + + b.Property("SalaryAmount") + .HasColumnType("double precision"); + + b.Property("Street") + .HasColumnType("text"); + + b.Property("locationLati") + .HasColumnType("double precision"); + + b.Property("locationLong") + .HasColumnType("double precision"); + + b.HasDiscriminator().HasValue("AppUser"); + + b.HasData( + new + { + Id = "a9082144-5081-407c-a897-0149eaeea62e", + AccessFailedCount = 0, + ConcurrencyStamp = "38dead1e-ca98-406d-915e-94f74120063f", + Email = "said.amir.kattan@outlook.com", + EmailConfirmed = true, + LockoutEnabled = false, + NormalizedEmail = "SAID.AMIR.KATTAN@OUTLOOK.COM", + NormalizedUserName = "SAID.AMIR.KATTAN@OUTLOOK.COM", + PasswordHash = "AQAAAAIAAYagAAAAEK2jQjY83ovGSPqDTJdnkaJFTrnbs1NAJRg0eS8EBhhfAfC22BcHsiLU5M4k38Ruag==", + PhoneNumber = "01231231322", + PhoneNumberConfirmed = false, + SecurityStamp = "6326891a-64c3-4f52-b770-61e66454ce5a", + TwoFactorEnabled = false, + UserName = "said.amir.kattan@outlook.com", + Building = "Building 123", + Favorites = new List(), + Holidays = 2, + Name = "said", + PhotoPath = "Test", + locationLati = 0.0, + locationLong = 0.0 + }); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Auth.Domain/Migrations/20251122093051_mig1.cs b/Auth.Domain/Migrations/20251122093051_mig1.cs new file mode 100644 index 0000000..ee62c94 --- /dev/null +++ b/Auth.Domain/Migrations/20251122093051_mig1.cs @@ -0,0 +1,265 @@ +using System; +using System.Collections.Generic; +using Microsoft.EntityFrameworkCore.Migrations; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +#pragma warning disable CA1814 // Prefer jagged arrays over multidimensional + +namespace Domain.Migrations +{ + /// + public partial class mig1 : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "AspNetRoles", + columns: table => new + { + Id = table.Column(type: "text", nullable: false), + Discriminator = table.Column(type: "character varying(13)", maxLength: 13, nullable: false), + Name = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), + NormalizedName = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), + ConcurrencyStamp = table.Column(type: "text", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_AspNetRoles", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "AspNetUsers", + columns: table => new + { + Id = table.Column(type: "text", nullable: false), + Discriminator = table.Column(type: "character varying(13)", maxLength: 13, nullable: false), + Name = table.Column(type: "text", nullable: true), + PhotoPath = table.Column(type: "text", nullable: true), + Holidays = table.Column(type: "integer", nullable: true), + locationLong = table.Column(type: "double precision", nullable: true), + locationLati = table.Column(type: "double precision", nullable: true), + Street = table.Column(type: "text", nullable: true), + Building = table.Column(type: "text", nullable: true), + Address = table.Column(type: "text", nullable: true), + Floor = table.Column(type: "integer", nullable: true), + Flat = table.Column(type: "integer", nullable: true), + Department = table.Column(type: "text", nullable: true), + JobTitle = table.Column(type: "text", nullable: true), + SalaryAmount = table.Column(type: "double precision", nullable: true), + RefreshToken = table.Column(type: "text", nullable: true), + RefreshTokenExpiryDate = table.Column(type: "timestamp with time zone", nullable: true), + Favorites = table.Column>(type: "text[]", nullable: true), + UserName = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), + NormalizedUserName = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), + Email = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), + NormalizedEmail = table.Column(type: "character varying(256)", maxLength: 256, nullable: true), + EmailConfirmed = table.Column(type: "boolean", nullable: false), + PasswordHash = table.Column(type: "text", nullable: true), + SecurityStamp = table.Column(type: "text", nullable: true), + ConcurrencyStamp = table.Column(type: "text", nullable: true), + PhoneNumber = table.Column(type: "text", nullable: true), + PhoneNumberConfirmed = table.Column(type: "boolean", nullable: false), + TwoFactorEnabled = table.Column(type: "boolean", nullable: false), + LockoutEnd = table.Column(type: "timestamp with time zone", nullable: true), + LockoutEnabled = table.Column(type: "boolean", nullable: false), + AccessFailedCount = table.Column(type: "integer", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_AspNetUsers", x => x.Id); + }); + + migrationBuilder.CreateTable( + name: "AspNetRoleClaims", + columns: table => new + { + Id = table.Column(type: "integer", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + RoleId = table.Column(type: "text", nullable: false), + ClaimType = table.Column(type: "text", nullable: true), + ClaimValue = table.Column(type: "text", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_AspNetRoleClaims", x => x.Id); + table.ForeignKey( + name: "FK_AspNetRoleClaims_AspNetRoles_RoleId", + column: x => x.RoleId, + principalTable: "AspNetRoles", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "AspNetUserClaims", + columns: table => new + { + Id = table.Column(type: "integer", nullable: false) + .Annotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn), + UserId = table.Column(type: "text", nullable: false), + ClaimType = table.Column(type: "text", nullable: true), + ClaimValue = table.Column(type: "text", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_AspNetUserClaims", x => x.Id); + table.ForeignKey( + name: "FK_AspNetUserClaims_AspNetUsers_UserId", + column: x => x.UserId, + principalTable: "AspNetUsers", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "AspNetUserLogins", + columns: table => new + { + LoginProvider = table.Column(type: "text", nullable: false), + ProviderKey = table.Column(type: "text", nullable: false), + ProviderDisplayName = table.Column(type: "text", nullable: true), + UserId = table.Column(type: "text", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_AspNetUserLogins", x => new { x.LoginProvider, x.ProviderKey }); + table.ForeignKey( + name: "FK_AspNetUserLogins_AspNetUsers_UserId", + column: x => x.UserId, + principalTable: "AspNetUsers", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "AspNetUserRoles", + columns: table => new + { + UserId = table.Column(type: "text", nullable: false), + RoleId = table.Column(type: "text", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_AspNetUserRoles", x => new { x.UserId, x.RoleId }); + table.ForeignKey( + name: "FK_AspNetUserRoles_AspNetRoles_RoleId", + column: x => x.RoleId, + principalTable: "AspNetRoles", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + table.ForeignKey( + name: "FK_AspNetUserRoles_AspNetUsers_UserId", + column: x => x.UserId, + principalTable: "AspNetUsers", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.CreateTable( + name: "AspNetUserTokens", + columns: table => new + { + UserId = table.Column(type: "text", nullable: false), + LoginProvider = table.Column(type: "text", nullable: false), + Name = table.Column(type: "text", nullable: false), + Value = table.Column(type: "text", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_AspNetUserTokens", x => new { x.UserId, x.LoginProvider, x.Name }); + table.ForeignKey( + name: "FK_AspNetUserTokens_AspNetUsers_UserId", + column: x => x.UserId, + principalTable: "AspNetUsers", + principalColumn: "Id", + onDelete: ReferentialAction.Cascade); + }); + + migrationBuilder.InsertData( + table: "AspNetRoles", + columns: new[] { "Id", "ConcurrencyStamp", "Discriminator", "Name", "NormalizedName" }, + values: new object[,] + { + { "390a583c-a48c-40ad-a96b-e579fbbae76e", "da829af8-21e0-4ad7-b6f6-4136ecb73715", "IdentityRole", "Moderator", "MODERATOR" }, + { "5f2d64eb-b558-45fa-9a93-add5b9940c95", "2f3d3132-e586-4906-b127-65721f5e6d8c", "IdentityRole", "User", "USER" }, + { "7d32cf02-906b-474d-a0be-c89778cb4da6", "0dc7feb3-48dc-487f-bf3c-3f505425d18f", "IdentityRole", "SuperAdmin", "SUPERADMIN" }, + { "b893be66-0f84-4088-9d31-0079221f8166", "47c2d510-67ba-4c15-84a7-2acb2a38bc96", "IdentityRole", "Admin", "ADMIN" } + }); + + migrationBuilder.InsertData( + table: "AspNetUsers", + columns: new[] { "Id", "AccessFailedCount", "Address", "Building", "ConcurrencyStamp", "Department", "Discriminator", "Email", "EmailConfirmed", "Favorites", "Flat", "Floor", "Holidays", "JobTitle", "LockoutEnabled", "LockoutEnd", "Name", "NormalizedEmail", "NormalizedUserName", "PasswordHash", "PhoneNumber", "PhoneNumberConfirmed", "PhotoPath", "RefreshToken", "RefreshTokenExpiryDate", "SalaryAmount", "SecurityStamp", "Street", "TwoFactorEnabled", "UserName", "locationLati", "locationLong" }, + values: new object[] { "a9082144-5081-407c-a897-0149eaeea62e", 0, null, "Building 123", "38dead1e-ca98-406d-915e-94f74120063f", null, "AppUser", "said.amir.kattan@outlook.com", true, new List(), null, null, 2, null, false, null, "said", "SAID.AMIR.KATTAN@OUTLOOK.COM", "SAID.AMIR.KATTAN@OUTLOOK.COM", "AQAAAAIAAYagAAAAEK2jQjY83ovGSPqDTJdnkaJFTrnbs1NAJRg0eS8EBhhfAfC22BcHsiLU5M4k38Ruag==", "01231231322", false, "Test", null, null, null, "6326891a-64c3-4f52-b770-61e66454ce5a", null, false, "said.amir.kattan@outlook.com", 0.0, 0.0 }); + + migrationBuilder.InsertData( + table: "AspNetUserRoles", + columns: new[] { "RoleId", "UserId" }, + values: new object[] { "7d32cf02-906b-474d-a0be-c89778cb4da6", "a9082144-5081-407c-a897-0149eaeea62e" }); + + migrationBuilder.CreateIndex( + name: "IX_AspNetRoleClaims_RoleId", + table: "AspNetRoleClaims", + column: "RoleId"); + + migrationBuilder.CreateIndex( + name: "RoleNameIndex", + table: "AspNetRoles", + column: "NormalizedName", + unique: true); + + migrationBuilder.CreateIndex( + name: "IX_AspNetUserClaims_UserId", + table: "AspNetUserClaims", + column: "UserId"); + + migrationBuilder.CreateIndex( + name: "IX_AspNetUserLogins_UserId", + table: "AspNetUserLogins", + column: "UserId"); + + migrationBuilder.CreateIndex( + name: "IX_AspNetUserRoles_RoleId", + table: "AspNetUserRoles", + column: "RoleId"); + + migrationBuilder.CreateIndex( + name: "EmailIndex", + table: "AspNetUsers", + column: "NormalizedEmail"); + + migrationBuilder.CreateIndex( + name: "UserNameIndex", + table: "AspNetUsers", + column: "NormalizedUserName", + unique: true); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "AspNetRoleClaims"); + + migrationBuilder.DropTable( + name: "AspNetUserClaims"); + + migrationBuilder.DropTable( + name: "AspNetUserLogins"); + + migrationBuilder.DropTable( + name: "AspNetUserRoles"); + + migrationBuilder.DropTable( + name: "AspNetUserTokens"); + + migrationBuilder.DropTable( + name: "AspNetRoles"); + + migrationBuilder.DropTable( + name: "AspNetUsers"); + } + } +} diff --git a/Auth.Domain/Migrations/20251201111936_mig2.Designer.cs b/Auth.Domain/Migrations/20251201111936_mig2.Designer.cs new file mode 100644 index 0000000..068338a --- /dev/null +++ b/Auth.Domain/Migrations/20251201111936_mig2.Designer.cs @@ -0,0 +1,425 @@ +// +using System; +using System.Collections.Generic; +using Auth.Domain; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +namespace Domain.Migrations +{ + [DbContext(typeof(Context))] + [Migration("20251201111936_mig2")] + partial class mig2 + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "9.0.7") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b => + { + b.Property("Id") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasColumnType("text"); + + b.Property("Discriminator") + .IsRequired() + .HasMaxLength(13) + .HasColumnType("character varying(13)"); + + b.Property("Name") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("NormalizedName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedName") + .IsUnique() + .HasDatabaseName("RoleNameIndex"); + + b.ToTable("AspNetRoles", (string)null); + + b.HasDiscriminator().HasValue("IdentityRole"); + + b.UseTphMappingStrategy(); + + b.HasData( + new + { + Id = "64fb5756-3278-4a10-9fb7-56b8c171a50f", + ConcurrencyStamp = "1c17731b-2ae7-43d5-91ba-d29eb67f531d", + Name = "User", + NormalizedName = "USER" + }, + new + { + Id = "f84f7631-463a-4ee3-80ec-f196f621c144", + ConcurrencyStamp = "fc15c07c-d1e3-423e-9feb-d8ca6e27a9a2", + Name = "Moderator", + NormalizedName = "MODERATOR" + }, + new + { + Id = "c0cc1518-1709-48f1-8260-9ba582e0dd9d", + ConcurrencyStamp = "d251ab61-bff0-4d33-8f39-8a9980edd897", + Name = "Admin", + NormalizedName = "ADMIN" + }, + new + { + Id = "26ece933-021a-442a-9d22-9c331ecc5e59", + ConcurrencyStamp = "fd82451c-b583-4768-9601-efc7e1b6d408", + Name = "SuperAdmin", + NormalizedName = "SUPERADMIN" + }); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ClaimType") + .HasColumnType("text"); + + b.Property("ClaimValue") + .HasColumnType("text"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetRoleClaims", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUser", b => + { + b.Property("Id") + .HasColumnType("text"); + + b.Property("AccessFailedCount") + .HasColumnType("integer"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasColumnType("text"); + + b.Property("Discriminator") + .IsRequired() + .HasMaxLength(13) + .HasColumnType("character varying(13)"); + + b.Property("Email") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("EmailConfirmed") + .HasColumnType("boolean"); + + b.Property("LockoutEnabled") + .HasColumnType("boolean"); + + b.Property("LockoutEnd") + .HasColumnType("timestamp with time zone"); + + b.Property("NormalizedEmail") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("NormalizedUserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("PasswordHash") + .HasColumnType("text"); + + b.Property("PhoneNumber") + .HasColumnType("text"); + + b.Property("PhoneNumberConfirmed") + .HasColumnType("boolean"); + + b.Property("SecurityStamp") + .HasColumnType("text"); + + b.Property("TwoFactorEnabled") + .HasColumnType("boolean"); + + b.Property("UserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedEmail") + .HasDatabaseName("EmailIndex"); + + b.HasIndex("NormalizedUserName") + .IsUnique() + .HasDatabaseName("UserNameIndex"); + + b.ToTable("AspNetUsers", (string)null); + + b.HasDiscriminator().HasValue("IdentityUser"); + + b.UseTphMappingStrategy(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ClaimType") + .HasColumnType("text"); + + b.Property("ClaimValue") + .HasColumnType("text"); + + b.Property("UserId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserClaims", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.Property("LoginProvider") + .HasColumnType("text"); + + b.Property("ProviderKey") + .HasColumnType("text"); + + b.Property("ProviderDisplayName") + .HasColumnType("text"); + + b.Property("UserId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("LoginProvider", "ProviderKey"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserLogins", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.Property("UserId") + .HasColumnType("text"); + + b.Property("RoleId") + .HasColumnType("text"); + + b.HasKey("UserId", "RoleId"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetUserRoles", (string)null); + + b.HasData( + new + { + UserId = "67eefc0a-cb03-411e-8557-6b4fe4c40fa8", + RoleId = "26ece933-021a-442a-9d22-9c331ecc5e59" + }); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.Property("UserId") + .HasColumnType("text"); + + b.Property("LoginProvider") + .HasColumnType("text"); + + b.Property("Name") + .HasColumnType("text"); + + b.Property("Value") + .HasColumnType("text"); + + b.HasKey("UserId", "LoginProvider", "Name"); + + b.ToTable("AspNetUserTokens", (string)null); + }); + + modelBuilder.Entity("Auth.Domain.Entities.Role", b => + { + b.HasBaseType("Microsoft.AspNetCore.Identity.IdentityRole"); + + b.HasDiscriminator().HasValue("Role"); + }); + + modelBuilder.Entity("Auth.Domain.Entities.HR.AppUser", b => + { + b.HasBaseType("Microsoft.AspNetCore.Identity.IdentityUser"); + + b.Property("Address") + .HasColumnType("text"); + + b.Property("Building") + .IsRequired() + .HasColumnType("text"); + + b.Property("Department") + .HasColumnType("text"); + + b.PrimitiveCollection>("Favorites") + .IsRequired() + .HasColumnType("text[]"); + + b.Property("Flat") + .HasColumnType("integer"); + + b.Property("Floor") + .HasColumnType("integer"); + + b.Property("Holidays") + .HasColumnType("integer"); + + b.Property("JobTitle") + .HasColumnType("text"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("PhotoPath") + .IsRequired() + .HasColumnType("text"); + + b.Property("RefreshToken") + .HasColumnType("text"); + + b.Property("RefreshTokenExpiryDate") + .HasColumnType("timestamp with time zone"); + + b.Property("SalaryAmount") + .HasColumnType("double precision"); + + b.Property("Street") + .HasColumnType("text"); + + b.Property("locationLati") + .HasColumnType("double precision"); + + b.Property("locationLong") + .HasColumnType("double precision"); + + b.HasDiscriminator().HasValue("AppUser"); + + b.HasData( + new + { + Id = "67eefc0a-cb03-411e-8557-6b4fe4c40fa8", + AccessFailedCount = 0, + ConcurrencyStamp = "4b5b25cb-4cb0-4c01-b7b7-e88a74c9dccb", + Email = "said.amir.kattan@outlook.com", + EmailConfirmed = true, + LockoutEnabled = false, + NormalizedEmail = "SAID.AMIR.KATTAN@OUTLOOK.COM", + NormalizedUserName = "SAID.AMIR.KATTAN@OUTLOOK.COM", + PasswordHash = "AQAAAAIAAYagAAAAEIXlJnxz7XY6hqaQji0dvUgFH7Km+uPKtqohXEEtouUNLfuUR8w7OcrJsu/MJxLLTA==", + PhoneNumber = "01231231322", + PhoneNumberConfirmed = false, + SecurityStamp = "ab41ea0c-937b-48db-b6d2-8065d8a7935f", + TwoFactorEnabled = false, + UserName = "said.amir.kattan@outlook.com", + Building = "Building 123", + Favorites = new List(), + Holidays = 2, + Name = "said", + PhotoPath = "Test", + locationLati = 0.0, + locationLong = 0.0 + }); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Auth.Domain/Migrations/20251201111936_mig2.cs b/Auth.Domain/Migrations/20251201111936_mig2.cs new file mode 100644 index 0000000..53ea1e3 --- /dev/null +++ b/Auth.Domain/Migrations/20251201111936_mig2.cs @@ -0,0 +1,123 @@ +using System.Collections.Generic; +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +#pragma warning disable CA1814 // Prefer jagged arrays over multidimensional + +namespace Domain.Migrations +{ + /// + public partial class mig2 : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.DeleteData( + table: "AspNetRoles", + keyColumn: "Id", + keyValue: "390a583c-a48c-40ad-a96b-e579fbbae76e"); + + migrationBuilder.DeleteData( + table: "AspNetRoles", + keyColumn: "Id", + keyValue: "5f2d64eb-b558-45fa-9a93-add5b9940c95"); + + migrationBuilder.DeleteData( + table: "AspNetRoles", + keyColumn: "Id", + keyValue: "b893be66-0f84-4088-9d31-0079221f8166"); + + migrationBuilder.DeleteData( + table: "AspNetUserRoles", + keyColumns: new[] { "RoleId", "UserId" }, + keyValues: new object[] { "7d32cf02-906b-474d-a0be-c89778cb4da6", "a9082144-5081-407c-a897-0149eaeea62e" }); + + migrationBuilder.DeleteData( + table: "AspNetRoles", + keyColumn: "Id", + keyValue: "7d32cf02-906b-474d-a0be-c89778cb4da6"); + + migrationBuilder.DeleteData( + table: "AspNetUsers", + keyColumn: "Id", + keyValue: "a9082144-5081-407c-a897-0149eaeea62e"); + + migrationBuilder.InsertData( + table: "AspNetRoles", + columns: new[] { "Id", "ConcurrencyStamp", "Discriminator", "Name", "NormalizedName" }, + values: new object[,] + { + { "26ece933-021a-442a-9d22-9c331ecc5e59", "fd82451c-b583-4768-9601-efc7e1b6d408", "IdentityRole", "SuperAdmin", "SUPERADMIN" }, + { "64fb5756-3278-4a10-9fb7-56b8c171a50f", "1c17731b-2ae7-43d5-91ba-d29eb67f531d", "IdentityRole", "User", "USER" }, + { "c0cc1518-1709-48f1-8260-9ba582e0dd9d", "d251ab61-bff0-4d33-8f39-8a9980edd897", "IdentityRole", "Admin", "ADMIN" }, + { "f84f7631-463a-4ee3-80ec-f196f621c144", "fc15c07c-d1e3-423e-9feb-d8ca6e27a9a2", "IdentityRole", "Moderator", "MODERATOR" } + }); + + migrationBuilder.InsertData( + table: "AspNetUsers", + columns: new[] { "Id", "AccessFailedCount", "Address", "Building", "ConcurrencyStamp", "Department", "Discriminator", "Email", "EmailConfirmed", "Favorites", "Flat", "Floor", "Holidays", "JobTitle", "LockoutEnabled", "LockoutEnd", "Name", "NormalizedEmail", "NormalizedUserName", "PasswordHash", "PhoneNumber", "PhoneNumberConfirmed", "PhotoPath", "RefreshToken", "RefreshTokenExpiryDate", "SalaryAmount", "SecurityStamp", "Street", "TwoFactorEnabled", "UserName", "locationLati", "locationLong" }, + values: new object[] { "67eefc0a-cb03-411e-8557-6b4fe4c40fa8", 0, null, "Building 123", "4b5b25cb-4cb0-4c01-b7b7-e88a74c9dccb", null, "AppUser", "said.amir.kattan@outlook.com", true, new List(), null, null, 2, null, false, null, "said", "SAID.AMIR.KATTAN@OUTLOOK.COM", "SAID.AMIR.KATTAN@OUTLOOK.COM", "AQAAAAIAAYagAAAAEIXlJnxz7XY6hqaQji0dvUgFH7Km+uPKtqohXEEtouUNLfuUR8w7OcrJsu/MJxLLTA==", "01231231322", false, "Test", null, null, null, "ab41ea0c-937b-48db-b6d2-8065d8a7935f", null, false, "said.amir.kattan@outlook.com", 0.0, 0.0 }); + + migrationBuilder.InsertData( + table: "AspNetUserRoles", + columns: new[] { "RoleId", "UserId" }, + values: new object[] { "26ece933-021a-442a-9d22-9c331ecc5e59", "67eefc0a-cb03-411e-8557-6b4fe4c40fa8" }); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DeleteData( + table: "AspNetRoles", + keyColumn: "Id", + keyValue: "64fb5756-3278-4a10-9fb7-56b8c171a50f"); + + migrationBuilder.DeleteData( + table: "AspNetRoles", + keyColumn: "Id", + keyValue: "c0cc1518-1709-48f1-8260-9ba582e0dd9d"); + + migrationBuilder.DeleteData( + table: "AspNetRoles", + keyColumn: "Id", + keyValue: "f84f7631-463a-4ee3-80ec-f196f621c144"); + + migrationBuilder.DeleteData( + table: "AspNetUserRoles", + keyColumns: new[] { "RoleId", "UserId" }, + keyValues: new object[] { "26ece933-021a-442a-9d22-9c331ecc5e59", "67eefc0a-cb03-411e-8557-6b4fe4c40fa8" }); + + migrationBuilder.DeleteData( + table: "AspNetRoles", + keyColumn: "Id", + keyValue: "26ece933-021a-442a-9d22-9c331ecc5e59"); + + migrationBuilder.DeleteData( + table: "AspNetUsers", + keyColumn: "Id", + keyValue: "67eefc0a-cb03-411e-8557-6b4fe4c40fa8"); + + migrationBuilder.InsertData( + table: "AspNetRoles", + columns: new[] { "Id", "ConcurrencyStamp", "Discriminator", "Name", "NormalizedName" }, + values: new object[,] + { + { "390a583c-a48c-40ad-a96b-e579fbbae76e", "da829af8-21e0-4ad7-b6f6-4136ecb73715", "IdentityRole", "Moderator", "MODERATOR" }, + { "5f2d64eb-b558-45fa-9a93-add5b9940c95", "2f3d3132-e586-4906-b127-65721f5e6d8c", "IdentityRole", "User", "USER" }, + { "7d32cf02-906b-474d-a0be-c89778cb4da6", "0dc7feb3-48dc-487f-bf3c-3f505425d18f", "IdentityRole", "SuperAdmin", "SUPERADMIN" }, + { "b893be66-0f84-4088-9d31-0079221f8166", "47c2d510-67ba-4c15-84a7-2acb2a38bc96", "IdentityRole", "Admin", "ADMIN" } + }); + + migrationBuilder.InsertData( + table: "AspNetUsers", + columns: new[] { "Id", "AccessFailedCount", "Address", "Building", "ConcurrencyStamp", "Department", "Discriminator", "Email", "EmailConfirmed", "Favorites", "Flat", "Floor", "Holidays", "JobTitle", "LockoutEnabled", "LockoutEnd", "Name", "NormalizedEmail", "NormalizedUserName", "PasswordHash", "PhoneNumber", "PhoneNumberConfirmed", "PhotoPath", "RefreshToken", "RefreshTokenExpiryDate", "SalaryAmount", "SecurityStamp", "Street", "TwoFactorEnabled", "UserName", "locationLati", "locationLong" }, + values: new object[] { "a9082144-5081-407c-a897-0149eaeea62e", 0, null, "Building 123", "38dead1e-ca98-406d-915e-94f74120063f", null, "AppUser", "said.amir.kattan@outlook.com", true, new List(), null, null, 2, null, false, null, "said", "SAID.AMIR.KATTAN@OUTLOOK.COM", "SAID.AMIR.KATTAN@OUTLOOK.COM", "AQAAAAIAAYagAAAAEK2jQjY83ovGSPqDTJdnkaJFTrnbs1NAJRg0eS8EBhhfAfC22BcHsiLU5M4k38Ruag==", "01231231322", false, "Test", null, null, null, "6326891a-64c3-4f52-b770-61e66454ce5a", null, false, "said.amir.kattan@outlook.com", 0.0, 0.0 }); + + migrationBuilder.InsertData( + table: "AspNetUserRoles", + columns: new[] { "RoleId", "UserId" }, + values: new object[] { "7d32cf02-906b-474d-a0be-c89778cb4da6", "a9082144-5081-407c-a897-0149eaeea62e" }); + } + } +} diff --git a/Auth.Domain/Migrations/ContextModelSnapshot.cs b/Auth.Domain/Migrations/ContextModelSnapshot.cs new file mode 100644 index 0000000..6bc3c28 --- /dev/null +++ b/Auth.Domain/Migrations/ContextModelSnapshot.cs @@ -0,0 +1,422 @@ +// +using System; +using System.Collections.Generic; +using Auth.Domain; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; +using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; + +#nullable disable + +namespace Domain.Migrations +{ + [DbContext(typeof(Context))] + partial class ContextModelSnapshot : ModelSnapshot + { + protected override void BuildModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder + .HasAnnotation("ProductVersion", "9.0.7") + .HasAnnotation("Relational:MaxIdentifierLength", 63); + + NpgsqlModelBuilderExtensions.UseIdentityByDefaultColumns(modelBuilder); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRole", b => + { + b.Property("Id") + .HasColumnType("text"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasColumnType("text"); + + b.Property("Discriminator") + .IsRequired() + .HasMaxLength(13) + .HasColumnType("character varying(13)"); + + b.Property("Name") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("NormalizedName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedName") + .IsUnique() + .HasDatabaseName("RoleNameIndex"); + + b.ToTable("AspNetRoles", (string)null); + + b.HasDiscriminator().HasValue("IdentityRole"); + + b.UseTphMappingStrategy(); + + b.HasData( + new + { + Id = "64fb5756-3278-4a10-9fb7-56b8c171a50f", + ConcurrencyStamp = "1c17731b-2ae7-43d5-91ba-d29eb67f531d", + Name = "User", + NormalizedName = "USER" + }, + new + { + Id = "f84f7631-463a-4ee3-80ec-f196f621c144", + ConcurrencyStamp = "fc15c07c-d1e3-423e-9feb-d8ca6e27a9a2", + Name = "Moderator", + NormalizedName = "MODERATOR" + }, + new + { + Id = "c0cc1518-1709-48f1-8260-9ba582e0dd9d", + ConcurrencyStamp = "d251ab61-bff0-4d33-8f39-8a9980edd897", + Name = "Admin", + NormalizedName = "ADMIN" + }, + new + { + Id = "26ece933-021a-442a-9d22-9c331ecc5e59", + ConcurrencyStamp = "fd82451c-b583-4768-9601-efc7e1b6d408", + Name = "SuperAdmin", + NormalizedName = "SUPERADMIN" + }); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ClaimType") + .HasColumnType("text"); + + b.Property("ClaimValue") + .HasColumnType("text"); + + b.Property("RoleId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetRoleClaims", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUser", b => + { + b.Property("Id") + .HasColumnType("text"); + + b.Property("AccessFailedCount") + .HasColumnType("integer"); + + b.Property("ConcurrencyStamp") + .IsConcurrencyToken() + .HasColumnType("text"); + + b.Property("Discriminator") + .IsRequired() + .HasMaxLength(13) + .HasColumnType("character varying(13)"); + + b.Property("Email") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("EmailConfirmed") + .HasColumnType("boolean"); + + b.Property("LockoutEnabled") + .HasColumnType("boolean"); + + b.Property("LockoutEnd") + .HasColumnType("timestamp with time zone"); + + b.Property("NormalizedEmail") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("NormalizedUserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.Property("PasswordHash") + .HasColumnType("text"); + + b.Property("PhoneNumber") + .HasColumnType("text"); + + b.Property("PhoneNumberConfirmed") + .HasColumnType("boolean"); + + b.Property("SecurityStamp") + .HasColumnType("text"); + + b.Property("TwoFactorEnabled") + .HasColumnType("boolean"); + + b.Property("UserName") + .HasMaxLength(256) + .HasColumnType("character varying(256)"); + + b.HasKey("Id"); + + b.HasIndex("NormalizedEmail") + .HasDatabaseName("EmailIndex"); + + b.HasIndex("NormalizedUserName") + .IsUnique() + .HasDatabaseName("UserNameIndex"); + + b.ToTable("AspNetUsers", (string)null); + + b.HasDiscriminator().HasValue("IdentityUser"); + + b.UseTphMappingStrategy(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.Property("Id") + .ValueGeneratedOnAdd() + .HasColumnType("integer"); + + NpgsqlPropertyBuilderExtensions.UseIdentityByDefaultColumn(b.Property("Id")); + + b.Property("ClaimType") + .HasColumnType("text"); + + b.Property("ClaimValue") + .HasColumnType("text"); + + b.Property("UserId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("Id"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserClaims", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.Property("LoginProvider") + .HasColumnType("text"); + + b.Property("ProviderKey") + .HasColumnType("text"); + + b.Property("ProviderDisplayName") + .HasColumnType("text"); + + b.Property("UserId") + .IsRequired() + .HasColumnType("text"); + + b.HasKey("LoginProvider", "ProviderKey"); + + b.HasIndex("UserId"); + + b.ToTable("AspNetUserLogins", (string)null); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.Property("UserId") + .HasColumnType("text"); + + b.Property("RoleId") + .HasColumnType("text"); + + b.HasKey("UserId", "RoleId"); + + b.HasIndex("RoleId"); + + b.ToTable("AspNetUserRoles", (string)null); + + b.HasData( + new + { + UserId = "67eefc0a-cb03-411e-8557-6b4fe4c40fa8", + RoleId = "26ece933-021a-442a-9d22-9c331ecc5e59" + }); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.Property("UserId") + .HasColumnType("text"); + + b.Property("LoginProvider") + .HasColumnType("text"); + + b.Property("Name") + .HasColumnType("text"); + + b.Property("Value") + .HasColumnType("text"); + + b.HasKey("UserId", "LoginProvider", "Name"); + + b.ToTable("AspNetUserTokens", (string)null); + }); + + modelBuilder.Entity("Auth.Domain.Entities.Role", b => + { + b.HasBaseType("Microsoft.AspNetCore.Identity.IdentityRole"); + + b.HasDiscriminator().HasValue("Role"); + }); + + modelBuilder.Entity("Auth.Domain.Entities.HR.AppUser", b => + { + b.HasBaseType("Microsoft.AspNetCore.Identity.IdentityUser"); + + b.Property("Address") + .HasColumnType("text"); + + b.Property("Building") + .IsRequired() + .HasColumnType("text"); + + b.Property("Department") + .HasColumnType("text"); + + b.PrimitiveCollection>("Favorites") + .IsRequired() + .HasColumnType("text[]"); + + b.Property("Flat") + .HasColumnType("integer"); + + b.Property("Floor") + .HasColumnType("integer"); + + b.Property("Holidays") + .HasColumnType("integer"); + + b.Property("JobTitle") + .HasColumnType("text"); + + b.Property("Name") + .IsRequired() + .HasColumnType("text"); + + b.Property("PhotoPath") + .IsRequired() + .HasColumnType("text"); + + b.Property("RefreshToken") + .HasColumnType("text"); + + b.Property("RefreshTokenExpiryDate") + .HasColumnType("timestamp with time zone"); + + b.Property("SalaryAmount") + .HasColumnType("double precision"); + + b.Property("Street") + .HasColumnType("text"); + + b.Property("locationLati") + .HasColumnType("double precision"); + + b.Property("locationLong") + .HasColumnType("double precision"); + + b.HasDiscriminator().HasValue("AppUser"); + + b.HasData( + new + { + Id = "67eefc0a-cb03-411e-8557-6b4fe4c40fa8", + AccessFailedCount = 0, + ConcurrencyStamp = "4b5b25cb-4cb0-4c01-b7b7-e88a74c9dccb", + Email = "said.amir.kattan@outlook.com", + EmailConfirmed = true, + LockoutEnabled = false, + NormalizedEmail = "SAID.AMIR.KATTAN@OUTLOOK.COM", + NormalizedUserName = "SAID.AMIR.KATTAN@OUTLOOK.COM", + PasswordHash = "AQAAAAIAAYagAAAAEIXlJnxz7XY6hqaQji0dvUgFH7Km+uPKtqohXEEtouUNLfuUR8w7OcrJsu/MJxLLTA==", + PhoneNumber = "01231231322", + PhoneNumberConfirmed = false, + SecurityStamp = "ab41ea0c-937b-48db-b6d2-8065d8a7935f", + TwoFactorEnabled = false, + UserName = "said.amir.kattan@outlook.com", + Building = "Building 123", + Favorites = new List(), + Holidays = 2, + Name = "said", + PhotoPath = "Test", + locationLati = 0.0, + locationLong = 0.0 + }); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityRoleClaim", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserClaim", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserLogin", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserRole", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityRole", null) + .WithMany() + .HasForeignKey("RoleId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); + + modelBuilder.Entity("Microsoft.AspNetCore.Identity.IdentityUserToken", b => + { + b.HasOne("Microsoft.AspNetCore.Identity.IdentityUser", null) + .WithMany() + .HasForeignKey("UserId") + .OnDelete(DeleteBehavior.Cascade) + .IsRequired(); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Auth.Domain/bin/Debug/net10.0/Auth.Contracts.dll b/Auth.Domain/bin/Debug/net10.0/Auth.Contracts.dll new file mode 100644 index 0000000..0002357 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/Auth.Contracts.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/Auth.Contracts.pdb b/Auth.Domain/bin/Debug/net10.0/Auth.Contracts.pdb new file mode 100644 index 0000000..0ea86a1 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/Auth.Contracts.pdb differ diff --git a/Auth.Domain/bin/Debug/net10.0/Auth.Domain.deps.json b/Auth.Domain/bin/Debug/net10.0/Auth.Domain.deps.json new file mode 100644 index 0000000..eede879 --- /dev/null +++ b/Auth.Domain/bin/Debug/net10.0/Auth.Domain.deps.json @@ -0,0 +1,1236 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v10.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v10.0": { + "Auth.Domain/1.0.0": { + "dependencies": { + "Auth.Contracts": "1.0.0", + "Bogus": "35.6.3", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "10.0.0", + "Microsoft.EntityFrameworkCore.Design": "10.0.0", + "Npgsql.EntityFrameworkCore.PostgreSQL": "10.0.0" + }, + "runtime": { + "Auth.Domain.dll": {} + } + }, + "Bogus/35.6.3": { + "runtime": { + "lib/net6.0/Bogus.dll": { + "assemblyVersion": "35.6.3.0", + "fileVersion": "35.6.3.0" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/10.0.0": { + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/10.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "10.0.0", + "Microsoft.Extensions.Identity.Stores": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Build/17.7.2": { + "dependencies": { + "Microsoft.Build.Framework": "17.14.28", + "Microsoft.NET.StringTools": "17.14.28", + "System.Configuration.ConfigurationManager": "9.0.0", + "System.Reflection.MetadataLoadContext": "7.0.0", + "System.Security.Permissions": "9.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.Build.dll": { + "assemblyVersion": "15.1.0.0", + "fileVersion": "17.7.2.37605" + } + } + }, + "Microsoft.Build.Framework/17.14.28": { + "runtime": { + "lib/net9.0/Microsoft.Build.Framework.dll": { + "assemblyVersion": "15.1.0.0", + "fileVersion": "17.14.28.46601" + } + } + }, + "Microsoft.Build.Tasks.Core/17.14.28": { + "dependencies": { + "Microsoft.Build.Framework": "17.14.28", + "Microsoft.Build.Utilities.Core": "17.14.28", + "Microsoft.NET.StringTools": "17.14.28", + "System.CodeDom": "9.0.0", + "System.Configuration.ConfigurationManager": "9.0.0", + "System.Diagnostics.EventLog": "9.0.0", + "System.Formats.Nrbf": "9.0.0", + "System.Resources.Extensions": "9.0.0", + "System.Security.Cryptography.Pkcs": "9.0.0", + "System.Security.Cryptography.ProtectedData": "9.0.0", + "System.Security.Cryptography.Xml": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Build.Tasks.Core.dll": { + "assemblyVersion": "15.1.0.0", + "fileVersion": "17.14.28.46601" + } + } + }, + "Microsoft.Build.Utilities.Core/17.14.28": { + "dependencies": { + "Microsoft.Build.Framework": "17.14.28", + "Microsoft.NET.StringTools": "17.14.28", + "System.Configuration.ConfigurationManager": "9.0.0", + "System.Diagnostics.EventLog": "9.0.0", + "System.Security.Cryptography.ProtectedData": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.Build.Utilities.Core.dll": { + "assemblyVersion": "15.1.0.0", + "fileVersion": "17.14.28.46601" + } + } + }, + "Microsoft.CodeAnalysis.Common/4.14.0": { + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.dll": { + "assemblyVersion": "4.14.0.0", + "fileVersion": "4.1400.25.26210" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.14.0": { + "dependencies": { + "Microsoft.CodeAnalysis.Common": "4.14.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": { + "assemblyVersion": "4.14.0.0", + "fileVersion": "4.1400.25.26210" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.14.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.CSharp": "4.14.0", + "Microsoft.CodeAnalysis.Common": "4.14.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.14.0", + "System.Composition": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "assemblyVersion": "4.14.0.0", + "fileVersion": "4.1400.25.26210" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.14.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Common": "4.14.0", + "System.Composition": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "assemblyVersion": "4.14.0.0", + "fileVersion": "4.1400.25.26210" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.14.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build": "17.7.2", + "Microsoft.Build.Framework": "17.14.28", + "Microsoft.Build.Tasks.Core": "17.14.28", + "Microsoft.Build.Utilities.Core": "17.14.28", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.14.0", + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "Microsoft.Extensions.Primitives": "10.0.0", + "Newtonsoft.Json": "13.0.3", + "System.CodeDom": "9.0.0", + "System.Composition": "9.0.0", + "System.Configuration.ConfigurationManager": "9.0.0", + "System.Diagnostics.EventLog": "9.0.0", + "System.Resources.Extensions": "9.0.0", + "System.Security.Cryptography.Pkcs": "9.0.0", + "System.Security.Cryptography.ProtectedData": "9.0.0", + "System.Security.Cryptography.Xml": "9.0.0", + "System.Security.Permissions": "9.0.0", + "System.Windows.Extensions": "9.0.0" + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll": { + "assemblyVersion": "4.14.0.0", + "fileVersion": "4.1400.25.26210" + }, + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "4.14.0.0", + "fileVersion": "4.1400.25.26210" + } + }, + "resources": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.EntityFrameworkCore/10.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "10.0.0", + "Microsoft.Extensions.Caching.Memory": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.EntityFrameworkCore.Design/10.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.14.28", + "Microsoft.Build.Tasks.Core": "17.14.28", + "Microsoft.Build.Utilities.Core": "17.14.28", + "Microsoft.CodeAnalysis.CSharp": "4.14.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.14.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.14.0", + "Microsoft.EntityFrameworkCore.Relational": "10.0.0", + "Microsoft.Extensions.Caching.Memory": "10.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", + "Microsoft.Extensions.DependencyModel": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0", + "Mono.TextTemplating": "3.0.0", + "Newtonsoft.Json": "13.0.3" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.0", + "Microsoft.Extensions.Caching.Memory": "10.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Caching.Abstractions/10.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Caching.Memory/10.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "10.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.DependencyModel/10.0.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Identity.Core/10.0.0": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Identity.Stores/10.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "10.0.0", + "Microsoft.Extensions.Identity.Core": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Logging/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Options/10.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "runtime": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.25.52411" + } + } + }, + "Microsoft.NET.StringTools/17.14.28": { + "runtime": { + "lib/net9.0/Microsoft.NET.StringTools.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "17.14.28.46601" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "9.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + } + }, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Npgsql/10.0.0": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "10.0.0" + }, + "runtime": { + "lib/net10.0/Npgsql.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.0.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.0", + "Microsoft.EntityFrameworkCore.Relational": "10.0.0", + "Npgsql": "10.0.0" + }, + "runtime": { + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "10.0.0.0", + "fileVersion": "10.0.0.0" + } + } + }, + "System.CodeDom/9.0.0": { + "runtime": { + "lib/net9.0/System.CodeDom.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Composition/9.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "9.0.0", + "System.Composition.Convention": "9.0.0", + "System.Composition.Hosting": "9.0.0", + "System.Composition.Runtime": "9.0.0", + "System.Composition.TypedParts": "9.0.0" + } + }, + "System.Composition.AttributedModel/9.0.0": { + "runtime": { + "lib/net9.0/System.Composition.AttributedModel.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Composition.Convention/9.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Composition.Convention.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Composition.Hosting/9.0.0": { + "dependencies": { + "System.Composition.Runtime": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Composition.Hosting.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Composition.Runtime/9.0.0": { + "runtime": { + "lib/net9.0/System.Composition.Runtime.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Composition.TypedParts/9.0.0": { + "dependencies": { + "System.Composition.AttributedModel": "9.0.0", + "System.Composition.Hosting": "9.0.0", + "System.Composition.Runtime": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Composition.TypedParts.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Configuration.ConfigurationManager/9.0.0": { + "dependencies": { + "System.Diagnostics.EventLog": "9.0.0", + "System.Security.Cryptography.ProtectedData": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Configuration.ConfigurationManager.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Diagnostics.EventLog/9.0.0": { + "runtime": { + "lib/net9.0/System.Diagnostics.EventLog.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + }, + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Formats.Nrbf/9.0.0": { + "runtime": { + "lib/net9.0/System.Formats.Nrbf.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Reflection.MetadataLoadContext/7.0.0": { + "runtime": { + "lib/net7.0/System.Reflection.MetadataLoadContext.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "System.Resources.Extensions/9.0.0": { + "dependencies": { + "System.Formats.Nrbf": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Resources.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Security.Cryptography.Pkcs/9.0.0": { + "runtime": { + "lib/net9.0/System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net9.0/System.Security.Cryptography.Pkcs.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Security.Cryptography.ProtectedData/9.0.0": { + "runtime": { + "lib/net9.0/System.Security.Cryptography.ProtectedData.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Security.Cryptography.Xml/9.0.0": { + "dependencies": { + "System.Security.Cryptography.Pkcs": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Security.Permissions/9.0.0": { + "dependencies": { + "System.Windows.Extensions": "9.0.0" + }, + "runtime": { + "lib/net9.0/System.Security.Permissions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.Windows.Extensions/9.0.0": { + "runtime": { + "lib/net9.0/System.Windows.Extensions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net9.0/System.Windows.Extensions.dll": { + "rid": "win", + "assetType": "runtime", + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "Auth.Contracts/1.0.0": { + "runtime": { + "Auth.Contracts.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "Auth.Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Bogus/35.6.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+5omfZWy8gOcbpc48vKfMI4h/ecbdf3NQm6xCl3zMbaP4J3rMMm5h3kPFeIWBgt4mbz6YY0eeZDLR/6yv1khKw==", + "path": "bogus/35.6.3", + "hashPath": "bogus.35.6.3.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" + }, + "Microsoft.AspNetCore.Cryptography.Internal/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jGlm8BsWcN1IIxLaxcHP6s0u2OEiBMa0HPCiWkMK7xox/h4WP2CRMyk7tV0cJC5LdM3JoR5UUqU2cxat6ElwlA==", + "path": "microsoft.aspnetcore.cryptography.internal/10.0.0", + "hashPath": "microsoft.aspnetcore.cryptography.internal.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xo7cBZnUfe+i+rnfM+NH/KVD50BnBrfjsUBjMzjxAL0HdNAUcnhcx9/01o4CX7CKf+jc2bgvg+frlT4aJcVdyg==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/10.0.0", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.10.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mH1+58nbX5RWSd8hajSnXSdpQ1MN3oca488Zd+DvKX2nPTAyTVNRzubMV06BmPcjOZ9waLr/AjwcNiCQ8bCscQ==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/10.0.0", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.10.0.0.nupkg.sha512" + }, + "Microsoft.Build/17.7.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-AmWnumxsMiRycFfE3kq/XnFFTAoPpCWl3UuiKQWCa5Z0+hBKVoiydzS2iXJGd3x+jry+qaTR9GzoezjV9NFT5A==", + "path": "microsoft.build/17.7.2", + "hashPath": "microsoft.build.17.7.2.nupkg.sha512" + }, + "Microsoft.Build.Framework/17.14.28": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wRcyTzGV0LRAtFdrddtioh59Ky4/zbvyraP0cQkDzRSRkhgAQb0K88D/JNC6VHLIXanRi3mtV1jU0uQkBwmiVg==", + "path": "microsoft.build.framework/17.14.28", + "hashPath": "microsoft.build.framework.17.14.28.nupkg.sha512" + }, + "Microsoft.Build.Tasks.Core/17.14.28": { + "type": "package", + "serviceable": true, + "sha512": "sha512-jk3O0tXp9QWPXhLJ7Pl8wm/eGtGgA1++vwHGWEmnwMU6eP//ghtcCUpQh9CQMwEKGDnH0aJf285V1s8yiSlKfQ==", + "path": "microsoft.build.tasks.core/17.14.28", + "hashPath": "microsoft.build.tasks.core.17.14.28.nupkg.sha512" + }, + "Microsoft.Build.Utilities.Core/17.14.28": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rhSdPo8QfLXXWM+rY0x0z1G4KK4ZhMoIbHROyDj8MUBFab9nvHR0NaMnjzOgXldhmD2zi2ir8d6xCatNzlhF5g==", + "path": "microsoft.build.utilities.core/17.14.28", + "hashPath": "microsoft.build.utilities.core.17.14.28.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Common/4.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PC3tuwZYnC+idaPuoC/AZpEdwrtX7qFpmnrfQkgobGIWiYmGi5MCRtl5mx6QrfMGQpK78X2lfIEoZDLg/qnuHg==", + "path": "microsoft.codeanalysis.common/4.14.0", + "hashPath": "microsoft.codeanalysis.common.4.14.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp/4.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-568a6wcTivauIhbeWcCwfWwIn7UV7MeHEBvFB2uzGIpM2OhJ4eM/FZ8KS0yhPoNxnSpjGzz7x7CIjTxhslojQA==", + "path": "microsoft.codeanalysis.csharp/4.14.0", + "hashPath": "microsoft.codeanalysis.csharp.4.14.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QkgCEM4qJo6gdtblXtNgHqtykS61fxW+820hx5JN6n9DD4mQtqNB+6fPeJ3GQWg6jkkGz6oG9yZq7H3Gf0zwYw==", + "path": "microsoft.codeanalysis.csharp.workspaces/4.14.0", + "hashPath": "microsoft.codeanalysis.csharp.workspaces.4.14.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-wNVK9JrqjqDC/WgBUFV6henDfrW87NPfo98nzah/+M/G1D6sBOPtXwqce3UQNn+6AjTnmkHYN1WV9XmTlPemTw==", + "path": "microsoft.codeanalysis.workspaces.common/4.14.0", + "hashPath": "microsoft.codeanalysis.workspaces.common.4.14.0.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.14.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YU7Sguzm1Cuhi2U6S0DRKcVpqAdBd2QmatpyE0KqYMJogJ9E27KHOWGUzAOjsyjAM7sNaUk+a8VPz24knDseFw==", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.14.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.14.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-hHa2amRjMyBLUH/KTML6FgIAhZ0VFYkhCKwWEax0rO6iNeM1P5MflyeQLE5dniSIOZHc3Oqyv5UIyTFO4e1Auw==", + "path": "microsoft.entityframeworkcore/10.0.0", + "hashPath": "microsoft.entityframeworkcore.10.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-C+TT9k7f1GQ8agOfV512K9iwrzi76RXVSDiLx+iWC9pz3QhEpSF1Dyk+FpVvd8ULQ+rqymfM8KQ7g48ttQVyMg==", + "path": "microsoft.entityframeworkcore.abstractions/10.0.0", + "hashPath": "microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-R7BeFniEpBrHw8kKVtWiMG4PRAwJ4K1RZoQWB32Ak8ws3uvYH98DVp9Y2UBUgbwY5lR9wPlrxp7P3GGDQ7LUSQ==", + "path": "microsoft.entityframeworkcore.design/10.0.0", + "hashPath": "microsoft.entityframeworkcore.design.10.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-A3MX1ee7RDxWCUdx/KqP+74fbksz0UIhkVZh56YHvbPkEKsffCXgHU3LGkRDwqR/MrBNWLCWC/IVX79tzM30ZA==", + "path": "microsoft.entityframeworkcore.relational/10.0.0", + "hashPath": "microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Zcoy6H9mSoGyvr7UvlGokEZrlZkcPCICPZr8mCsSt9U/N8eeCwCXwKF5bShdA66R0obxBCwP4AxomQHvVkC/uA==", + "path": "microsoft.extensions.caching.abstractions/10.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-krK19MKp0BNiR9rpBDW7PKSrTMLVlifS9am3CVc4O1Jq6GWz0o4F+sw5OSL4L3mVd56W8l6JRgghUa2KB51vOw==", + "path": "microsoft.extensions.caching.memory/10.0.0", + "hashPath": "microsoft.extensions.caching.memory.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-d2kDKnCsJvY7mBVhcjPSp9BkJk48DsaHPg5u+Oy4f8XaOqnEedRy/USyvnpHL92wpJ6DrTPy7htppUUzskbCXQ==", + "path": "microsoft.extensions.configuration.abstractions/10.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f0RBabswJq+gRu5a+hWIobrLWiUYPKMhCD9WO3sYBAdSy3FFH14LMvLVFZc2kPSCimBLxSuitUhsd6tb0TAY6A==", + "path": "microsoft.extensions.dependencyinjection/10.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-RFYJR7APio/BiqdQunRq6DB+nDB6nc2qhHr77mlvZ0q0BT8PubMXN7XicmfzCbrDE/dzhBnUKBRXLTcqUiZDGg==", + "path": "microsoft.extensions.dependencymodel/10.0.0", + "hashPath": "microsoft.extensions.dependencymodel.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-EstJPVPxd71mTw5x4pbnUvSpPi3xWDNasM0QZx0p2J6bCxQkq7YNksRUJvOfFN28VCMrGRejnheNaGLDy/ROQQ==", + "path": "microsoft.extensions.identity.core/10.0.0", + "hashPath": "microsoft.extensions.identity.core.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Rtg3Mjy13li7Lpim7qP+JN1pWXsBR/8mslLIhSMvt8WfojxkDlvUhVxY2leIVYnnl5igfixGLzjpC2soGhPCBw==", + "path": "microsoft.extensions.identity.stores/10.0.0", + "hashPath": "microsoft.extensions.identity.stores.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-BStFkd5CcnEtarlcgYDBcFzGYCuuNMzPs02wN3WBsOFoYIEmYoUdAiU+au6opzoqfTYJsMTW00AeqDdnXH2CvA==", + "path": "microsoft.extensions.logging/10.0.0", + "hashPath": "microsoft.extensions.logging.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", + "path": "microsoft.extensions.logging.abstractions/10.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8oCAgXOow5XDrY9HaXX1QmH3ORsyZO/ANVHBlhLyCeWTH5Sg4UuqZeOTWJi6484M+LqSx0RqQXDJtdYy2BNiLQ==", + "path": "microsoft.extensions.options/10.0.0", + "hashPath": "microsoft.extensions.options.10.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-inRnbpCS0nwO/RuoZIAqxQUuyjaknOOnCEZB55KSMMjRhl0RQDttSmLSGsUJN3RQ3ocf5NDLFd2mOQViHqMK5w==", + "path": "microsoft.extensions.primitives/10.0.0", + "hashPath": "microsoft.extensions.primitives.10.0.0.nupkg.sha512" + }, + "Microsoft.NET.StringTools/17.14.28": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DMIeWDlxe0Wz0DIhJZ2FMoGQAN2yrGZOi5jjFhRYHWR5ONd0CS6IpAHlRnA7uA/5BF+BADvgsETxW2XrPiFc1A==", + "path": "microsoft.net.stringtools/17.14.28", + "hashPath": "microsoft.net.stringtools.17.14.28.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.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/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", + "path": "npgsql/10.0.0", + "hashPath": "npgsql.10.0.0.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", + "path": "npgsql.entityframeworkcore.postgresql/10.0.0", + "hashPath": "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512" + }, + "System.CodeDom/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA==", + "path": "system.codedom/9.0.0", + "hashPath": "system.codedom.9.0.0.nupkg.sha512" + }, + "System.Composition/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3Djj70fFTraOarSKmRnmRy/zm4YurICm+kiCtI0dYRqGJnLX6nJ+G3WYuFJ173cAPax/gh96REcbNiVqcrypFQ==", + "path": "system.composition/9.0.0", + "hashPath": "system.composition.9.0.0.nupkg.sha512" + }, + "System.Composition.AttributedModel/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iri00l/zIX9g4lHMY+Nz0qV1n40+jFYAmgsaiNn16xvt2RDwlqByNG4wgblagnDYxm3YSQQ0jLlC/7Xlk9CzyA==", + "path": "system.composition.attributedmodel/9.0.0", + "hashPath": "system.composition.attributedmodel.9.0.0.nupkg.sha512" + }, + "System.Composition.Convention/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+vuqVP6xpi582XIjJi6OCsIxuoTZfR0M7WWufk3uGDeCl3wGW6KnpylUJ3iiXdPByPE0vR5TjJgR6hDLez4FQg==", + "path": "system.composition.convention/9.0.0", + "hashPath": "system.composition.convention.9.0.0.nupkg.sha512" + }, + "System.Composition.Hosting/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OFqSeFeJYr7kHxDfaViGM1ymk7d4JxK//VSoNF9Ux0gpqkLsauDZpu89kTHHNdCWfSljbFcvAafGyBoY094btQ==", + "path": "system.composition.hosting/9.0.0", + "hashPath": "system.composition.hosting.9.0.0.nupkg.sha512" + }, + "System.Composition.Runtime/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-w1HOlQY1zsOWYussjFGZCEYF2UZXgvoYnS94NIu2CBnAGMbXFAX8PY8c92KwUItPmowal68jnVLBCzdrWLeEKA==", + "path": "system.composition.runtime/9.0.0", + "hashPath": "system.composition.runtime.9.0.0.nupkg.sha512" + }, + "System.Composition.TypedParts/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aRZlojCCGEHDKqh43jaDgaVpYETsgd7Nx4g1zwLKMtv4iTo0627715ajEFNpEEBTgLmvZuv8K0EVxc3sM4NWJA==", + "path": "system.composition.typedparts/9.0.0", + "hashPath": "system.composition.typedparts.9.0.0.nupkg.sha512" + }, + "System.Configuration.ConfigurationManager/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PdkuMrwDhXoKFo/JxISIi9E8L+QGn9Iquj2OKDWHB6Y/HnUOuBouF7uS3R4Hw3FoNmwwMo6hWgazQdyHIIs27A==", + "path": "system.configuration.configurationmanager/9.0.0", + "hashPath": "system.configuration.configurationmanager.9.0.0.nupkg.sha512" + }, + "System.Diagnostics.EventLog/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==", + "path": "system.diagnostics.eventlog/9.0.0", + "hashPath": "system.diagnostics.eventlog.9.0.0.nupkg.sha512" + }, + "System.Formats.Nrbf/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-F/6tNE+ckmdFeSQAyQo26bQOqfPFKEfZcuqnp4kBE6/7jP26diP+QTHCJJ6vpEfaY6bLy+hBLiIQUSxSmNwLkA==", + "path": "system.formats.nrbf/9.0.0", + "hashPath": "system.formats.nrbf.9.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.Resources.Extensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tvhuT1D2OwPROdL1kRWtaTJliQo0WdyhvwDpd8RM997G7m3Hya5nhbYhNTS75x6Vu+ypSOgL5qxDCn8IROtCxw==", + "path": "system.resources.extensions/9.0.0", + "hashPath": "system.resources.extensions.9.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Pkcs/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-8tluJF8w9si+2yoHeL8rgVJS6lKvWomTDC8px65Z8MCzzdME5eaPtEQf4OfVGrAxB5fW93ncucy1+221O9EQaw==", + "path": "system.security.cryptography.pkcs/9.0.0", + "hashPath": "system.security.cryptography.pkcs.9.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.ProtectedData/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CJW+x/F6fmRQ7N6K8paasTw9PDZp4t7G76UjGNlSDgoHPF0h08vTzLYbLZpOLEJSg35d5wy2jCXGo84EN05DpQ==", + "path": "system.security.cryptography.protecteddata/9.0.0", + "hashPath": "system.security.cryptography.protecteddata.9.0.0.nupkg.sha512" + }, + "System.Security.Cryptography.Xml/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-GQZn5wFd+pyOfwWaCbqxG7trQ5ox01oR8kYgWflgtux4HiUNihGEgG2TktRWyH+9bw7NoEju1D41H/upwQeFQw==", + "path": "system.security.cryptography.xml/9.0.0", + "hashPath": "system.security.cryptography.xml.9.0.0.nupkg.sha512" + }, + "System.Security.Permissions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-H2VFD4SFVxieywNxn9/epb63/IOcPPfA0WOtfkljzNfu7GCcHIBQNuwP6zGCEIi7Ci/oj8aLPUNK9sYImMFf4Q==", + "path": "system.security.permissions/9.0.0", + "hashPath": "system.security.permissions.9.0.0.nupkg.sha512" + }, + "System.Windows.Extensions/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-U9msthvnH2Fsw7xwAvIhNHOdnIjOQTwOc8Vd0oGOsiRcGMGoBFlUD6qtYawRUoQdKH9ysxesZ9juFElt1Jw/7A==", + "path": "system.windows.extensions/9.0.0", + "hashPath": "system.windows.extensions.9.0.0.nupkg.sha512" + }, + "Auth.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Auth.Domain/bin/Debug/net10.0/Auth.Domain.dll b/Auth.Domain/bin/Debug/net10.0/Auth.Domain.dll new file mode 100644 index 0000000..9fb83f2 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/Auth.Domain.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/Auth.Domain.pdb b/Auth.Domain/bin/Debug/net10.0/Auth.Domain.pdb new file mode 100644 index 0000000..3cf6984 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/Auth.Domain.pdb differ diff --git a/Auth.Domain/bin/Debug/net10.0/Auth.Domain.runtimeconfig.json b/Auth.Domain/bin/Debug/net10.0/Auth.Domain.runtimeconfig.json new file mode 100644 index 0000000..d8ac2bc --- /dev/null +++ b/Auth.Domain/bin/Debug/net10.0/Auth.Domain.runtimeconfig.json @@ -0,0 +1,13 @@ +{ + "runtimeOptions": { + "tfm": "net10.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "10.0.0" + }, + "configProperties": { + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll new file mode 100755 index 0000000..13b1021 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe new file mode 100755 index 0000000..00dd99f Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config new file mode 100755 index 0000000..f52998b --- /dev/null +++ b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config @@ -0,0 +1,56 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll new file mode 100755 index 0000000..88e63d8 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll new file mode 100755 index 0000000..1d035d6 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll new file mode 100755 index 0000000..f2d83c5 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll new file mode 100755 index 0000000..7594b2e Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll new file mode 100755 index 0000000..d0bbad5 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll new file mode 100755 index 0000000..4617199 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll new file mode 100755 index 0000000..0865972 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll new file mode 100755 index 0000000..c5ba4e4 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll new file mode 100755 index 0000000..eeec928 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll new file mode 100755 index 0000000..0be3757 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll new file mode 100755 index 0000000..bfed293 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll new file mode 100755 index 0000000..5e1c416 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll new file mode 100755 index 0000000..2916bdf Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll new file mode 100755 index 0000000..1a55c94 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll new file mode 100755 index 0000000..c1be153 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll new file mode 100755 index 0000000..bfcbbc6 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll new file mode 100755 index 0000000..b9efaec Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll new file mode 100755 index 0000000..69612cb Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll new file mode 100755 index 0000000..042aaf8 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll new file mode 100755 index 0000000..629b98b Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll new file mode 100755 index 0000000..ff8dacb Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll new file mode 100755 index 0000000..9b9870a Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll new file mode 100755 index 0000000..cafcf21 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json new file mode 100755 index 0000000..ed7fe7a --- /dev/null +++ b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json @@ -0,0 +1,260 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v6.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v6.0": { + "Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost/4.14.0-3.25262.10": { + "dependencies": { + "Microsoft.Build.Locator": "1.6.10", + "Microsoft.CodeAnalysis.NetAnalyzers": "8.0.0-preview.23468.1", + "Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers": "3.3.4-beta1.22504.1", + "Microsoft.DotNet.XliffTasks": "9.0.0-beta.25255.5", + "Microsoft.VisualStudio.Threading.Analyzers": "17.13.2", + "Newtonsoft.Json": "13.0.3", + "Roslyn.Diagnostics.Analyzers": "3.11.0-beta1.24081.1", + "System.Collections.Immutable": "9.0.0", + "System.CommandLine": "2.0.0-beta4.24528.1" + }, + "runtime": { + "Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": {} + }, + "resources": { + "cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.Build.Locator/1.6.10": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.6.10.57384" + } + } + }, + "Microsoft.CodeAnalysis.BannedApiAnalyzers/3.11.0-beta1.24081.1": {}, + "Microsoft.CodeAnalysis.NetAnalyzers/8.0.0-preview.23468.1": {}, + "Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers/3.3.4-beta1.22504.1": {}, + "Microsoft.CodeAnalysis.PublicApiAnalyzers/3.11.0-beta1.24081.1": {}, + "Microsoft.DotNet.XliffTasks/9.0.0-beta.25255.5": {}, + "Microsoft.VisualStudio.Threading.Analyzers/17.13.2": {}, + "Newtonsoft.Json/13.0.3": { + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "assemblyVersion": "13.0.0.0", + "fileVersion": "13.0.3.27908" + } + } + }, + "Roslyn.Diagnostics.Analyzers/3.11.0-beta1.24081.1": { + "dependencies": { + "Microsoft.CodeAnalysis.BannedApiAnalyzers": "3.11.0-beta1.24081.1", + "Microsoft.CodeAnalysis.PublicApiAnalyzers": "3.11.0-beta1.24081.1" + } + }, + "System.Collections.Immutable/9.0.0": { + "dependencies": { + "System.Memory": "4.5.5", + "System.Runtime.CompilerServices.Unsafe": "6.0.0" + }, + "runtime": { + "lib/netstandard2.0/System.Collections.Immutable.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.24.52809" + } + } + }, + "System.CommandLine/2.0.0-beta4.24528.1": { + "dependencies": { + "System.Memory": "4.5.5" + }, + "runtime": { + "lib/netstandard2.0/System.CommandLine.dll": { + "assemblyVersion": "2.0.0.0", + "fileVersion": "2.0.24.52801" + } + }, + "resources": { + "lib/netstandard2.0/cs/System.CommandLine.resources.dll": { + "locale": "cs" + }, + "lib/netstandard2.0/de/System.CommandLine.resources.dll": { + "locale": "de" + }, + "lib/netstandard2.0/es/System.CommandLine.resources.dll": { + "locale": "es" + }, + "lib/netstandard2.0/fr/System.CommandLine.resources.dll": { + "locale": "fr" + }, + "lib/netstandard2.0/it/System.CommandLine.resources.dll": { + "locale": "it" + }, + "lib/netstandard2.0/ja/System.CommandLine.resources.dll": { + "locale": "ja" + }, + "lib/netstandard2.0/ko/System.CommandLine.resources.dll": { + "locale": "ko" + }, + "lib/netstandard2.0/pl/System.CommandLine.resources.dll": { + "locale": "pl" + }, + "lib/netstandard2.0/pt-BR/System.CommandLine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netstandard2.0/ru/System.CommandLine.resources.dll": { + "locale": "ru" + }, + "lib/netstandard2.0/tr/System.CommandLine.resources.dll": { + "locale": "tr" + }, + "lib/netstandard2.0/zh-Hans/System.CommandLine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netstandard2.0/zh-Hant/System.CommandLine.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "System.Memory/4.5.5": {}, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {} + } + }, + "libraries": { + "Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost/4.14.0-3.25262.10": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Microsoft.Build.Locator/1.6.10": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DJhCkTGqy1LMJzEmG/2qxRTMHwdPc3WdVoGQI5o5mKHVo4dsHrCMLIyruwU/NSvPNSdvONlaf7jdFXnAMuxAuA==", + "path": "microsoft.build.locator/1.6.10", + "hashPath": "microsoft.build.locator.1.6.10.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.BannedApiAnalyzers/3.11.0-beta1.24081.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DH6L3rsbjppLrHM2l2/NKbnMaYd0NFHx2pjZaFdrVcRkONrV3i9FHv6Id8Dp6/TmjhXQsJVJJFbhhjkpuP1xxg==", + "path": "microsoft.codeanalysis.bannedapianalyzers/3.11.0-beta1.24081.1", + "hashPath": "microsoft.codeanalysis.bannedapianalyzers.3.11.0-beta1.24081.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.NetAnalyzers/8.0.0-preview.23468.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ZhIvyxmUCqb8OiU/VQfxfuAmIB4lQsjqhMVYKeoyxzSI+d7uR5Pzx3ZKoaIhPizQ15wa4lnyD6wg3TnSJ6P4LA==", + "path": "microsoft.codeanalysis.netanalyzers/8.0.0-preview.23468.1", + "hashPath": "microsoft.codeanalysis.netanalyzers.8.0.0-preview.23468.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.PerformanceSensitiveAnalyzers/3.3.4-beta1.22504.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2XRlqPAzVke7Sb80+UqaC7o57OwfK+tIr+aIOxrx41RWDMeR2SBUW7kL4sd6hfLFfBNsLo3W5PT+UwfvwPaOzA==", + "path": "microsoft.codeanalysis.performancesensitiveanalyzers/3.3.4-beta1.22504.1", + "hashPath": "microsoft.codeanalysis.performancesensitiveanalyzers.3.3.4-beta1.22504.1.nupkg.sha512" + }, + "Microsoft.CodeAnalysis.PublicApiAnalyzers/3.11.0-beta1.24081.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3bYGBihvoNO0rhCOG1U9O50/4Q8suZ+glHqQLIAcKvnodSnSW+dYWYzTNb1UbS8pUS8nAUfxSFMwuMup/G5DtQ==", + "path": "microsoft.codeanalysis.publicapianalyzers/3.11.0-beta1.24081.1", + "hashPath": "microsoft.codeanalysis.publicapianalyzers.3.11.0-beta1.24081.1.nupkg.sha512" + }, + "Microsoft.DotNet.XliffTasks/9.0.0-beta.25255.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-bb0fZB5ViPscdfYeWlmtyXJMzNkgcpkV5RWmXktfV9lwIUZgNZmFotUXrdcTyZzrN7v1tQK/Y6BGnbkP9gEsXg==", + "path": "microsoft.dotnet.xlifftasks/9.0.0-beta.25255.5", + "hashPath": "microsoft.dotnet.xlifftasks.9.0.0-beta.25255.5.nupkg.sha512" + }, + "Microsoft.VisualStudio.Threading.Analyzers/17.13.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Qcd8IlaTXZVq3wolBnzby1P7kWihdWaExtD8riumiKuG1sHa8EgjV/o70TMjTaeUMhomBbhfdC9OPwAHoZfnjQ==", + "path": "microsoft.visualstudio.threading.analyzers/17.13.2", + "hashPath": "microsoft.visualstudio.threading.analyzers.17.13.2.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" + }, + "Roslyn.Diagnostics.Analyzers/3.11.0-beta1.24081.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-reHqZCDKifA+DURcL8jUfYkMGL4FpgNt5LI0uWTS6IpM8kKVbu/kO8byZsqfhBu4wUzT3MBDcoMfzhZPdENIpg==", + "path": "roslyn.diagnostics.analyzers/3.11.0-beta1.24081.1", + "hashPath": "roslyn.diagnostics.analyzers.3.11.0-beta1.24081.1.nupkg.sha512" + }, + "System.Collections.Immutable/9.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-QhkXUl2gNrQtvPmtBTQHb0YsUrDiDQ2QS09YbtTTiSjGcf7NBqtYbrG/BE06zcBPCKEwQGzIv13IVdXNOSub2w==", + "path": "system.collections.immutable/9.0.0", + "hashPath": "system.collections.immutable.9.0.0.nupkg.sha512" + }, + "System.CommandLine/2.0.0-beta4.24528.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Xt8tsSU8yd0ZpbT9gl5DAwkMYWLo8PV1fq2R/belrUbHVVOIKqhLfbWksbdknUDpmzMHZenBtD6AGAp9uJTa2w==", + "path": "system.commandline/2.0.0-beta4.24528.1", + "hashPath": "system.commandline.2.0.0-beta4.24528.1.nupkg.sha512" + }, + "System.Memory/4.5.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-XIWiDvKPXaTveaB7HVganDlOCRoj03l+jrwNvcge/t8vhGYKvqV+dMv6G4SAX2NoNmN0wZfVPTAlFwZcZvVOUw==", + "path": "system.memory/4.5.5", + "hashPath": "system.memory.4.5.5.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" + } + } +} \ No newline at end of file diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll new file mode 100755 index 0000000..993b54f Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config new file mode 100755 index 0000000..27bdea7 --- /dev/null +++ b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config @@ -0,0 +1,605 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json new file mode 100755 index 0000000..3a5998a --- /dev/null +++ b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json @@ -0,0 +1,13 @@ +{ + "runtimeOptions": { + "tfm": "net6.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "6.0.0" + }, + "rollForward": "Major", + "configProperties": { + "System.Reflection.Metadata.MetadataUpdater.IsSupported": false + } + } +} \ No newline at end of file diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll new file mode 100755 index 0000000..87bf9aa Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll new file mode 100755 index 0000000..b182127 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll new file mode 100755 index 0000000..d0bbad5 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll new file mode 100755 index 0000000..0be3757 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll new file mode 100755 index 0000000..bfed293 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll new file mode 100755 index 0000000..5e1c416 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll new file mode 100755 index 0000000..2916bdf Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll new file mode 100755 index 0000000..1a55c94 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll new file mode 100755 index 0000000..c1be153 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll new file mode 100755 index 0000000..bfcbbc6 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll new file mode 100755 index 0000000..b9efaec Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll new file mode 100755 index 0000000..69612cb Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll new file mode 100755 index 0000000..042aaf8 Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll new file mode 100755 index 0000000..629b98b Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll new file mode 100755 index 0000000..ff8dacb Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll new file mode 100755 index 0000000..9b9870a Binary files /dev/null and b/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll differ diff --git a/Auth.Domain/bin/Debug/net9.0/Auth.Contracts.dll b/Auth.Domain/bin/Debug/net9.0/Auth.Contracts.dll new file mode 100644 index 0000000..7122b9c Binary files /dev/null and b/Auth.Domain/bin/Debug/net9.0/Auth.Contracts.dll differ diff --git a/Auth.Domain/bin/Debug/net9.0/Auth.Contracts.pdb b/Auth.Domain/bin/Debug/net9.0/Auth.Contracts.pdb new file mode 100644 index 0000000..07eea5e Binary files /dev/null and b/Auth.Domain/bin/Debug/net9.0/Auth.Contracts.pdb differ diff --git a/Auth.Domain/bin/Debug/net9.0/Auth.Domain.deps.json b/Auth.Domain/bin/Debug/net9.0/Auth.Domain.deps.json new file mode 100644 index 0000000..a94116c --- /dev/null +++ b/Auth.Domain/bin/Debug/net9.0/Auth.Domain.deps.json @@ -0,0 +1,1035 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Auth.Domain/1.0.0": { + "dependencies": { + "Auth.Contracts": "1.0.0", + "Bogus": "35.6.3", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.7", + "Microsoft.EntityFrameworkCore.Design": "9.0.7", + "Microsoft.EntityFrameworkCore.Tools": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "runtime": { + "Auth.Domain.dll": {} + } + }, + "Bogus/35.6.3": { + "runtime": { + "lib/net6.0/Bogus.dll": { + "assemblyVersion": "35.6.3.0", + "fileVersion": "35.6.3.0" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Microsoft.Extensions.Identity.Stores": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "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.Build.Framework/17.8.3": {}, + "Microsoft.Build.Locator/1.7.8": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.7.8.28074" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "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.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.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.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "dependencies": { + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0", + "System.Text.Json": "9.0.7" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + }, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.7", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.7": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.7": {}, + "Microsoft.EntityFrameworkCore.Design/9.0.7": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.7", + "Microsoft.Extensions.DependencyModel": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7", + "Mono.TextTemplating": "3.0.0", + "System.Text.Json": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Tools/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "9.0.7" + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyModel/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "9.0.0.7", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Identity.Core/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.Identity.Core": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.Extensions.Logging/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Options/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + } + }, + "Npgsql/9.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Npgsql": "9.0.3" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "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.IO.Pipelines/7.0.0": {}, + "System.Reflection.Metadata/7.0.0": { + "dependencies": { + "System.Collections.Immutable": "7.0.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Text.Json/9.0.7": {}, + "System.Threading.Channels/7.0.0": {}, + "Auth.Contracts/1.0.0": { + "runtime": { + "Auth.Contracts.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "Auth.Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Bogus/35.6.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+5omfZWy8gOcbpc48vKfMI4h/ecbdf3NQm6xCl3zMbaP4J3rMMm5h3kPFeIWBgt4mbz6YY0eeZDLR/6yv1khKw==", + "path": "bogus/35.6.3", + "hashPath": "bogus.35.6.3.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" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5di3GKY/a9ceGAdVk78QFGMO55NrFRN1rnh4xNr7MHjOCOMhgcWkyv9051wkPUDfX+g2cNN6+ckHvNnlxUwc2A==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.7", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ms7cTGHBzhCTfC8yIv9KfMrLKsRLg60jGsoZ/oEjoBXbqcEsXcjNtXqaOJCjpeltLDKoePrfSWzjhMUxTHHMA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.7", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tr4JHBgE/wN4Q/iQkWsi0oZXcaM7WFeZ1rpCUeTVka6az3DTtG0+RMuvZvPIq8U8vCANVuzqAcr+uUry4FUKrg==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.7", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.7.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.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.Build.Locator/1.7.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "path": "microsoft.build.locator/1.7.8", + "hashPath": "microsoft.build.locator.1.7.8.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.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.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.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.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PbD0q5ax15r91jD4TN7xbDCjldZSz4JfpYN4ZZjAkWeUyROkV92Ydg0O2/1keFA+2u3KPsDkJMmBKv2zQ06ZVg==", + "path": "microsoft.entityframeworkcore/9.0.7", + "hashPath": "microsoft.entityframeworkcore.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YUXNerEkCf4OANO+zjuMznpUW7R8XxSCqmBfYhBrbrJVc09i84KkNgeUTaOUXCGogSK/3d7ORRhMqfUobnejBg==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.7", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HqiPjAvjVOsyA1svnjL81/Wk2MRQYMK/lxKVWvw0f5IcA//VcxBepVSAqe7CFirdsPXqe8rFKEwZROWZTz7Jqw==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.7", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zvZ2/bRwdPrBfQ2fRd2IQL6icyIOtosZSz2QpXtsn7M+c6e4GvpNfpSxBprLfoKhH6NeAFNV9ool0Vp/1DJd/A==", + "path": "microsoft.entityframeworkcore.design/9.0.7", + "hashPath": "microsoft.entityframeworkcore.design.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yo5joquG7L79H5BhtpqP8apu+KFOAYfvmj0dZnVkPElBY14wY5qva0SOcrDWzYw5BrJrhIArfCcJCJHBvMYiKg==", + "path": "microsoft.entityframeworkcore.relational/9.0.7", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Tools/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NyRRParn9vUQDkHDeWoPU1/+E+gcHTBQR4Nn5XZPxBE5t6CiXwzl3ag0a6Z2SfrGSPyDDVT39r2cz33ar2xsZg==", + "path": "microsoft.entityframeworkcore.tools/9.0.7", + "hashPath": "microsoft.entityframeworkcore.tools.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-30necCQehcg9lFkMEIE7HczcoYGML8GUH6jlincA18d896fLZM9wl5tpTPJHgzANQE/6KXRLZSWbgevgg5csSw==", + "path": "microsoft.extensions.caching.abstractions/9.0.7", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nDu6c8fwrHQYccLnWnvyElrdkL3rZ97TZNqL+niMFUcApVBHdpDmKcRvciGymJ4Y0iLDTOo5J2XhDQEbNb+dFg==", + "path": "microsoft.extensions.caching.memory/9.0.7", + "hashPath": "microsoft.extensions.caching.memory.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lut/kiVvNsQ120VERMUYSFhpXPpKjjql+giy03LesASPBBcC0o6+aoFdzJH9GaYpFTQ3fGVhVjKjvJDoAW5/IQ==", + "path": "microsoft.extensions.configuration.abstractions/9.0.7", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i05AYA91vgq0as84ROVCyltD2gnxaba/f1Qw2rG7mUsS0gv8cPTr1Gm7jPQHq7JTr4MJoQUcanLVs16tIOUJaQ==", + "path": "microsoft.extensions.dependencyinjection/9.0.7", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iPK1FxbGFr2Xb+4Y+dTYI8Gupu9pOi8I3JPuPsrogUmEhe2hzZ9LpCmolMEBhVDo2ikcSr7G5zYiwaapHSQTew==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.7", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aXEt8QW1Fj9aC81GfkMtfip4wfbkEA7VBvNkx6Rx6ZKyqXIF/9qzRtH6v/2096IDK4lt6dlQp5Ajf+kjHfUdOA==", + "path": "microsoft.extensions.dependencymodel/9.0.7", + "hashPath": "microsoft.extensions.dependencymodel.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yFMK7yhLYbiwiiKOI/A1rReteRbO4vnN3SPNF5YpUHf6BvSMn5K1TDa7GVszJBH/VmxP0EAsHnSH05GEV0x3cg==", + "path": "microsoft.extensions.identity.core/9.0.7", + "hashPath": "microsoft.extensions.identity.core.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mf04+xUV6HCeLROYHZeGSSSIbwXN2taLOcDpSKYO6BawqNOJoBSN9MaQ5vMNrlnH6BnXYPO8S4PuREftqXx5KA==", + "path": "microsoft.extensions.identity.stores/9.0.7", + "hashPath": "microsoft.extensions.identity.stores.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fdIeQpXYV8yxSWG03cCbU2Otdrq4NWuhnQLXokWLv3L9YcK055E7u8WFJvP+uuP4CFeCEoqZQL4yPcjuXhCZrg==", + "path": "microsoft.extensions.logging/9.0.7", + "hashPath": "microsoft.extensions.logging.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sMM6NEAdUTE/elJ2wqjOi0iBWqZmSyaTByLF9e8XHv6DRJFFnOe0N+s8Uc6C91E4SboQCfLswaBIZ+9ZXA98AA==", + "path": "microsoft.extensions.logging.abstractions/9.0.7", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-trJnF6cRWgR5uMmHpGoHmM1wOVFdIYlELlkO9zX+RfieK0321Y55zrcs4AaEymKup7dxgEN/uJU25CAcMNQRXw==", + "path": "microsoft.extensions.options/9.0.7", + "hashPath": "microsoft.extensions.options.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ti/zD9BuuO50IqlvhWQs9GHxkCmoph5BHjGiWKdg2t6Or8XoyAfRJiKag+uvd/fpASnNklfsB01WpZ4fhAe0VQ==", + "path": "microsoft.extensions.primitives/9.0.7", + "hashPath": "microsoft.extensions.primitives.9.0.7.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" + }, + "Npgsql/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "path": "npgsql/9.0.3", + "hashPath": "npgsql.9.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.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.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.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.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.Text.Json/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-u/lN2FEEXs3ghj2ta8tWA4r2MS9Yni07K7jDmnz8h1UPDf0lIIIEMkWx383Zz4fJjJio7gDl+00RYuQ/7R8ZQw==", + "path": "system.text.json/9.0.7", + "hashPath": "system.text.json.9.0.7.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" + }, + "Auth.Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Auth.Domain/bin/Debug/net9.0/Auth.Domain.dll b/Auth.Domain/bin/Debug/net9.0/Auth.Domain.dll new file mode 100644 index 0000000..28ae93b Binary files /dev/null and b/Auth.Domain/bin/Debug/net9.0/Auth.Domain.dll differ diff --git a/Auth.Domain/bin/Debug/net9.0/Auth.Domain.pdb b/Auth.Domain/bin/Debug/net9.0/Auth.Domain.pdb new file mode 100644 index 0000000..e62e5cd Binary files /dev/null and b/Auth.Domain/bin/Debug/net9.0/Auth.Domain.pdb differ diff --git a/Auth.Domain/bin/Debug/net9.0/Auth.Domain.runtimeconfig.json b/Auth.Domain/bin/Debug/net9.0/Auth.Domain.runtimeconfig.json new file mode 100644 index 0000000..c5de900 --- /dev/null +++ b/Auth.Domain/bin/Debug/net9.0/Auth.Domain.runtimeconfig.json @@ -0,0 +1,13 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + "configProperties": { + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/Auth.Domain/bin/Debug/net9.0/Contracts.dll b/Auth.Domain/bin/Debug/net9.0/Contracts.dll new file mode 100644 index 0000000..7ee0998 Binary files /dev/null and b/Auth.Domain/bin/Debug/net9.0/Contracts.dll differ diff --git a/Auth.Domain/bin/Debug/net9.0/Contracts.pdb b/Auth.Domain/bin/Debug/net9.0/Contracts.pdb new file mode 100644 index 0000000..3479ccd Binary files /dev/null and b/Auth.Domain/bin/Debug/net9.0/Contracts.pdb differ diff --git a/Auth.Domain/bin/Debug/net9.0/Domain.deps.json b/Auth.Domain/bin/Debug/net9.0/Domain.deps.json new file mode 100644 index 0000000..ebaa4fd --- /dev/null +++ b/Auth.Domain/bin/Debug/net9.0/Domain.deps.json @@ -0,0 +1,1035 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v9.0", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v9.0": { + "Domain/1.0.0": { + "dependencies": { + "Bogus": "35.6.3", + "Contracts": "1.0.0", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": "9.0.7", + "Microsoft.EntityFrameworkCore.Design": "9.0.7", + "Microsoft.EntityFrameworkCore.Tools": "9.0.7", + "Npgsql.EntityFrameworkCore.PostgreSQL": "9.0.4" + }, + "runtime": { + "Domain.dll": {} + } + }, + "Bogus/35.6.3": { + "runtime": { + "lib/net6.0/Bogus.dll": { + "assemblyVersion": "35.6.3.0", + "fileVersion": "35.6.3.0" + } + } + }, + "Humanizer.Core/2.14.1": { + "runtime": { + "lib/net6.0/Humanizer.dll": { + "assemblyVersion": "2.14.0.0", + "fileVersion": "2.14.1.48190" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Microsoft.Extensions.Identity.Stores": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "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.Build.Framework/17.8.3": {}, + "Microsoft.Build.Locator/1.7.8": { + "runtime": { + "lib/net6.0/Microsoft.Build.Locator.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.7.8.28074" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.3.4": {}, + "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.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.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.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "dependencies": { + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.CodeAnalysis.Common": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "4.8.0", + "System.Text.Json": "9.0.7" + }, + "runtime": { + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + }, + "lib/net7.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "assemblyVersion": "4.8.0.0", + "fileVersion": "4.800.23.55801" + } + }, + "resources": { + "lib/net7.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "cs" + }, + "lib/net7.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "de" + }, + "lib/net7.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "es" + }, + "lib/net7.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "fr" + }, + "lib/net7.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "it" + }, + "lib/net7.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ja" + }, + "lib/net7.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ko" + }, + "lib/net7.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pl" + }, + "lib/net7.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "pt-BR" + }, + "lib/net7.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "ru" + }, + "lib/net7.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "tr" + }, + "lib/net7.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net7.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.EntityFrameworkCore/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "9.0.7", + "Microsoft.EntityFrameworkCore.Analyzers": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.7": { + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.7": {}, + "Microsoft.EntityFrameworkCore.Design/9.0.7": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.8.3", + "Microsoft.Build.Locator": "1.7.8", + "Microsoft.CodeAnalysis.CSharp": "4.8.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.8.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.8.0", + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.7", + "Microsoft.Extensions.DependencyModel": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7", + "Mono.TextTemplating": "3.0.0", + "System.Text.Json": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Design.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.Extensions.Caching.Memory": "9.0.7", + "Microsoft.Extensions.Configuration.Abstractions": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net8.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "9.0.7.0", + "fileVersion": "9.0.725.31607" + } + } + }, + "Microsoft.EntityFrameworkCore.Tools/9.0.7": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "9.0.7" + } + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Caching.Memory/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyInjection/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.DependencyModel/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "9.0.0.7", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Identity.Core/9.0.7": { + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Core.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.Extensions.Identity.Stores/9.0.7": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "9.0.7", + "Microsoft.Extensions.Identity.Core": "9.0.7", + "Microsoft.Extensions.Logging": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Identity.Stores.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31702" + } + } + }, + "Microsoft.Extensions.Logging/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "9.0.7", + "Microsoft.Extensions.Logging.Abstractions": "9.0.7", + "Microsoft.Extensions.Options": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Options/9.0.7": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "9.0.7", + "Microsoft.Extensions.Primitives": "9.0.7" + }, + "runtime": { + "lib/net9.0/Microsoft.Extensions.Options.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Microsoft.Extensions.Primitives/9.0.7": { + "runtime": { + "lib/net9.0/Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "9.0.0.0", + "fileVersion": "9.0.725.31616" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": { + "assemblyVersion": "3.0.0.0", + "fileVersion": "3.0.0.1" + } + } + }, + "Npgsql/9.0.3": { + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "9.0.7" + }, + "runtime": { + "lib/net8.0/Npgsql.dll": { + "assemblyVersion": "9.0.3.0", + "fileVersion": "9.0.3.0" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "9.0.7", + "Microsoft.EntityFrameworkCore.Relational": "9.0.7", + "Npgsql": "9.0.3" + }, + "runtime": { + "lib/net8.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "assemblyVersion": "9.0.4.0", + "fileVersion": "9.0.4.0" + } + } + }, + "System.CodeDom/6.0.0": { + "runtime": { + "lib/net6.0/System.CodeDom.dll": { + "assemblyVersion": "6.0.0.0", + "fileVersion": "6.0.21.52210" + } + } + }, + "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.IO.Pipelines/7.0.0": {}, + "System.Reflection.Metadata/7.0.0": { + "dependencies": { + "System.Collections.Immutable": "7.0.0" + } + }, + "System.Runtime.CompilerServices.Unsafe/6.0.0": {}, + "System.Text.Json/9.0.7": {}, + "System.Threading.Channels/7.0.0": {}, + "Contracts/1.0.0": { + "runtime": { + "Contracts.dll": { + "assemblyVersion": "1.0.0.0", + "fileVersion": "1.0.0.0" + } + } + } + } + }, + "libraries": { + "Domain/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "Bogus/35.6.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-+5omfZWy8gOcbpc48vKfMI4h/ecbdf3NQm6xCl3zMbaP4J3rMMm5h3kPFeIWBgt4mbz6YY0eeZDLR/6yv1khKw==", + "path": "bogus/35.6.3", + "hashPath": "bogus.35.6.3.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" + }, + "Microsoft.AspNetCore.Cryptography.Internal/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-5di3GKY/a9ceGAdVk78QFGMO55NrFRN1rnh4xNr7MHjOCOMhgcWkyv9051wkPUDfX+g2cNN6+ckHvNnlxUwc2A==", + "path": "microsoft.aspnetcore.cryptography.internal/9.0.7", + "hashPath": "microsoft.aspnetcore.cryptography.internal.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9ms7cTGHBzhCTfC8yIv9KfMrLKsRLg60jGsoZ/oEjoBXbqcEsXcjNtXqaOJCjpeltLDKoePrfSWzjhMUxTHHMA==", + "path": "microsoft.aspnetcore.cryptography.keyderivation/9.0.7", + "hashPath": "microsoft.aspnetcore.cryptography.keyderivation.9.0.7.nupkg.sha512" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tr4JHBgE/wN4Q/iQkWsi0oZXcaM7WFeZ1rpCUeTVka6az3DTtG0+RMuvZvPIq8U8vCANVuzqAcr+uUry4FUKrg==", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/9.0.7", + "hashPath": "microsoft.aspnetcore.identity.entityframeworkcore.9.0.7.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.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.Build.Locator/1.7.8": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sPy10x527Ph16S2u0yGME4S6ohBKJ69WfjeGG/bvELYeZVmJdKjxgnlL8cJJJLGV/cZIRqSfB12UDB8ICakOog==", + "path": "microsoft.build.locator/1.7.8", + "hashPath": "microsoft.build.locator.1.7.8.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.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.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.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.CodeAnalysis.Workspaces.MSBuild/4.8.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IEYreI82QZKklp54yPHxZNG9EKSK6nHEkeuf+0Asie9llgS1gp0V1hw7ODG+QyoB7MuAnNQHmeV1Per/ECpv6A==", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.8.0", + "hashPath": "microsoft.codeanalysis.workspaces.msbuild.4.8.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PbD0q5ax15r91jD4TN7xbDCjldZSz4JfpYN4ZZjAkWeUyROkV92Ydg0O2/1keFA+2u3KPsDkJMmBKv2zQ06ZVg==", + "path": "microsoft.entityframeworkcore/9.0.7", + "hashPath": "microsoft.entityframeworkcore.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YUXNerEkCf4OANO+zjuMznpUW7R8XxSCqmBfYhBrbrJVc09i84KkNgeUTaOUXCGogSK/3d7ORRhMqfUobnejBg==", + "path": "microsoft.entityframeworkcore.abstractions/9.0.7", + "hashPath": "microsoft.entityframeworkcore.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-HqiPjAvjVOsyA1svnjL81/Wk2MRQYMK/lxKVWvw0f5IcA//VcxBepVSAqe7CFirdsPXqe8rFKEwZROWZTz7Jqw==", + "path": "microsoft.entityframeworkcore.analyzers/9.0.7", + "hashPath": "microsoft.entityframeworkcore.analyzers.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zvZ2/bRwdPrBfQ2fRd2IQL6icyIOtosZSz2QpXtsn7M+c6e4GvpNfpSxBprLfoKhH6NeAFNV9ool0Vp/1DJd/A==", + "path": "microsoft.entityframeworkcore.design/9.0.7", + "hashPath": "microsoft.entityframeworkcore.design.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Yo5joquG7L79H5BhtpqP8apu+KFOAYfvmj0dZnVkPElBY14wY5qva0SOcrDWzYw5BrJrhIArfCcJCJHBvMYiKg==", + "path": "microsoft.entityframeworkcore.relational/9.0.7", + "hashPath": "microsoft.entityframeworkcore.relational.9.0.7.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Tools/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-NyRRParn9vUQDkHDeWoPU1/+E+gcHTBQR4Nn5XZPxBE5t6CiXwzl3ag0a6Z2SfrGSPyDDVT39r2cz33ar2xsZg==", + "path": "microsoft.entityframeworkcore.tools/9.0.7", + "hashPath": "microsoft.entityframeworkcore.tools.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-30necCQehcg9lFkMEIE7HczcoYGML8GUH6jlincA18d896fLZM9wl5tpTPJHgzANQE/6KXRLZSWbgevgg5csSw==", + "path": "microsoft.extensions.caching.abstractions/9.0.7", + "hashPath": "microsoft.extensions.caching.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nDu6c8fwrHQYccLnWnvyElrdkL3rZ97TZNqL+niMFUcApVBHdpDmKcRvciGymJ4Y0iLDTOo5J2XhDQEbNb+dFg==", + "path": "microsoft.extensions.caching.memory/9.0.7", + "hashPath": "microsoft.extensions.caching.memory.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lut/kiVvNsQ120VERMUYSFhpXPpKjjql+giy03LesASPBBcC0o6+aoFdzJH9GaYpFTQ3fGVhVjKjvJDoAW5/IQ==", + "path": "microsoft.extensions.configuration.abstractions/9.0.7", + "hashPath": "microsoft.extensions.configuration.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-i05AYA91vgq0as84ROVCyltD2gnxaba/f1Qw2rG7mUsS0gv8cPTr1Gm7jPQHq7JTr4MJoQUcanLVs16tIOUJaQ==", + "path": "microsoft.extensions.dependencyinjection/9.0.7", + "hashPath": "microsoft.extensions.dependencyinjection.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-iPK1FxbGFr2Xb+4Y+dTYI8Gupu9pOi8I3JPuPsrogUmEhe2hzZ9LpCmolMEBhVDo2ikcSr7G5zYiwaapHSQTew==", + "path": "microsoft.extensions.dependencyinjection.abstractions/9.0.7", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aXEt8QW1Fj9aC81GfkMtfip4wfbkEA7VBvNkx6Rx6ZKyqXIF/9qzRtH6v/2096IDK4lt6dlQp5Ajf+kjHfUdOA==", + "path": "microsoft.extensions.dependencymodel/9.0.7", + "hashPath": "microsoft.extensions.dependencymodel.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Core/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-yFMK7yhLYbiwiiKOI/A1rReteRbO4vnN3SPNF5YpUHf6BvSMn5K1TDa7GVszJBH/VmxP0EAsHnSH05GEV0x3cg==", + "path": "microsoft.extensions.identity.core/9.0.7", + "hashPath": "microsoft.extensions.identity.core.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Identity.Stores/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mf04+xUV6HCeLROYHZeGSSSIbwXN2taLOcDpSKYO6BawqNOJoBSN9MaQ5vMNrlnH6BnXYPO8S4PuREftqXx5KA==", + "path": "microsoft.extensions.identity.stores/9.0.7", + "hashPath": "microsoft.extensions.identity.stores.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fdIeQpXYV8yxSWG03cCbU2Otdrq4NWuhnQLXokWLv3L9YcK055E7u8WFJvP+uuP4CFeCEoqZQL4yPcjuXhCZrg==", + "path": "microsoft.extensions.logging/9.0.7", + "hashPath": "microsoft.extensions.logging.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-sMM6NEAdUTE/elJ2wqjOi0iBWqZmSyaTByLF9e8XHv6DRJFFnOe0N+s8Uc6C91E4SboQCfLswaBIZ+9ZXA98AA==", + "path": "microsoft.extensions.logging.abstractions/9.0.7", + "hashPath": "microsoft.extensions.logging.abstractions.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Options/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-trJnF6cRWgR5uMmHpGoHmM1wOVFdIYlELlkO9zX+RfieK0321Y55zrcs4AaEymKup7dxgEN/uJU25CAcMNQRXw==", + "path": "microsoft.extensions.options/9.0.7", + "hashPath": "microsoft.extensions.options.9.0.7.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ti/zD9BuuO50IqlvhWQs9GHxkCmoph5BHjGiWKdg2t6Or8XoyAfRJiKag+uvd/fpASnNklfsB01WpZ4fhAe0VQ==", + "path": "microsoft.extensions.primitives/9.0.7", + "hashPath": "microsoft.extensions.primitives.9.0.7.nupkg.sha512" + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "path": "mono.texttemplating/3.0.0", + "hashPath": "mono.texttemplating.3.0.0.nupkg.sha512" + }, + "Npgsql/9.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tPvY61CxOAWxNsKLEBg+oR646X4Bc8UmyQ/tJszL/7mEmIXQnnBhVJZrZEEUv0Bstu0mEsHZD5At3EO8zQRAYw==", + "path": "npgsql/9.0.3", + "hashPath": "npgsql.9.0.3.nupkg.sha512" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/9.0.4": { + "type": "package", + "serviceable": true, + "sha512": "sha512-mw5vcY2IEc7L+IeGrxpp/J5OSnCcjkjAgJYCm/eD52wpZze8zsSifdqV7zXslSMmfJG2iIUGZyo3KuDtEFKwMQ==", + "path": "npgsql.entityframeworkcore.postgresql/9.0.4", + "hashPath": "npgsql.entityframeworkcore.postgresql.9.0.4.nupkg.sha512" + }, + "System.CodeDom/6.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-CPc6tWO1LAer3IzfZufDBRL+UZQcj5uS207NHALQzP84Vp/z6wF0Aa0YZImOQY8iStY0A2zI/e3ihKNPfUm8XA==", + "path": "system.codedom/6.0.0", + "hashPath": "system.codedom.6.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.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.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.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.Text.Json/9.0.7": { + "type": "package", + "serviceable": true, + "sha512": "sha512-u/lN2FEEXs3ghj2ta8tWA4r2MS9Yni07K7jDmnz8h1UPDf0lIIIEMkWx383Zz4fJjJio7gDl+00RYuQ/7R8ZQw==", + "path": "system.text.json/9.0.7", + "hashPath": "system.text.json.9.0.7.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" + }, + "Contracts/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + } + } +} \ No newline at end of file diff --git a/Auth.Domain/bin/Debug/net9.0/Domain.dll b/Auth.Domain/bin/Debug/net9.0/Domain.dll new file mode 100644 index 0000000..39e6dc6 Binary files /dev/null and b/Auth.Domain/bin/Debug/net9.0/Domain.dll differ diff --git a/Auth.Domain/bin/Debug/net9.0/Domain.pdb b/Auth.Domain/bin/Debug/net9.0/Domain.pdb new file mode 100644 index 0000000..920d5fe Binary files /dev/null and b/Auth.Domain/bin/Debug/net9.0/Domain.pdb differ diff --git a/Auth.Domain/bin/Debug/net9.0/Domain.runtimeconfig.json b/Auth.Domain/bin/Debug/net9.0/Domain.runtimeconfig.json new file mode 100644 index 0000000..c5de900 --- /dev/null +++ b/Auth.Domain/bin/Debug/net9.0/Domain.runtimeconfig.json @@ -0,0 +1,13 @@ +{ + "runtimeOptions": { + "tfm": "net9.0", + "framework": { + "name": "Microsoft.NETCore.App", + "version": "9.0.0" + }, + "configProperties": { + "System.Reflection.NullabilityInfoContext.IsSupported": true, + "System.Runtime.Serialization.EnableUnsafeBinaryFormatterSerialization": false + } + } +} \ No newline at end of file diff --git a/Auth.Domain/obj/Auth.Domain.csproj.nuget.dgspec.json b/Auth.Domain/obj/Auth.Domain.csproj.nuget.dgspec.json new file mode 100644 index 0000000..834a147 --- /dev/null +++ b/Auth.Domain/obj/Auth.Domain.csproj.nuget.dgspec.json @@ -0,0 +1,704 @@ +{ + "format": 1, + "restore": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj": {} + }, + "projects": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj", + "projectName": "Auth.Contracts", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + }, + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj", + "projectName": "Auth.Domain", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Bogus": { + "target": "Package", + "version": "[35.6.3, )" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[10.0.0, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[10.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } + } +} \ No newline at end of file diff --git a/Auth.Domain/obj/Auth.Domain.csproj.nuget.g.props b/Auth.Domain/obj/Auth.Domain.csproj.nuget.g.props new file mode 100644 index 0000000..ba71cb8 --- /dev/null +++ b/Auth.Domain/obj/Auth.Domain.csproj.nuget.g.props @@ -0,0 +1,532 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 7.0.0 + + + + + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/Microsoft.Build.Locator.dll + BuildHost-net472/ + True + BuildHost-net472/Microsoft.Build.Locator.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe + BuildHost-net472/ + True + BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config + BuildHost-net472/ + True + BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/Microsoft.IO.Redist.dll + BuildHost-net472/ + True + BuildHost-net472/Microsoft.IO.Redist.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/Newtonsoft.Json.dll + BuildHost-net472/ + True + BuildHost-net472/Newtonsoft.Json.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/System.Buffers.dll + BuildHost-net472/ + True + BuildHost-net472/System.Buffers.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/System.Collections.Immutable.dll + BuildHost-net472/ + True + BuildHost-net472/System.Collections.Immutable.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/System.CommandLine.dll + BuildHost-net472/ + True + BuildHost-net472/System.CommandLine.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/System.Memory.dll + BuildHost-net472/ + True + BuildHost-net472/System.Memory.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/System.Numerics.Vectors.dll + BuildHost-net472/ + True + BuildHost-net472/System.Numerics.Vectors.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll + BuildHost-net472/ + True + BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/System.Threading.Tasks.Extensions.dll + BuildHost-net472/ + True + BuildHost-net472/System.Threading.Tasks.Extensions.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/cs/System.CommandLine.resources.dll + BuildHost-net472/cs/ + True + BuildHost-net472/cs/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/de/System.CommandLine.resources.dll + BuildHost-net472/de/ + True + BuildHost-net472/de/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/es/System.CommandLine.resources.dll + BuildHost-net472/es/ + True + BuildHost-net472/es/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/fr/System.CommandLine.resources.dll + BuildHost-net472/fr/ + True + BuildHost-net472/fr/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/it/System.CommandLine.resources.dll + BuildHost-net472/it/ + True + BuildHost-net472/it/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/ja/System.CommandLine.resources.dll + BuildHost-net472/ja/ + True + BuildHost-net472/ja/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/ko/System.CommandLine.resources.dll + BuildHost-net472/ko/ + True + BuildHost-net472/ko/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/pl/System.CommandLine.resources.dll + BuildHost-net472/pl/ + True + BuildHost-net472/pl/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/pt-BR/System.CommandLine.resources.dll + BuildHost-net472/pt-BR/ + True + BuildHost-net472/pt-BR/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/ru/System.CommandLine.resources.dll + BuildHost-net472/ru/ + True + BuildHost-net472/ru/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/tr/System.CommandLine.resources.dll + BuildHost-net472/tr/ + True + BuildHost-net472/tr/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/zh-Hans/System.CommandLine.resources.dll + BuildHost-net472/zh-Hans/ + True + BuildHost-net472/zh-Hans/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-net472/zh-Hant/System.CommandLine.resources.dll + BuildHost-net472/zh-Hant/ + True + BuildHost-net472/zh-Hant/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/Microsoft.Build.Locator.dll + BuildHost-netcore/ + True + BuildHost-netcore/Microsoft.Build.Locator.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json + BuildHost-netcore/ + True + BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll + BuildHost-netcore/ + True + BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config + BuildHost-netcore/ + True + BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json + BuildHost-netcore/ + True + BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/Newtonsoft.Json.dll + BuildHost-netcore/ + True + BuildHost-netcore/Newtonsoft.Json.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/System.Collections.Immutable.dll + BuildHost-netcore/ + True + BuildHost-netcore/System.Collections.Immutable.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/System.CommandLine.dll + BuildHost-netcore/ + True + BuildHost-netcore/System.CommandLine.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/cs/System.CommandLine.resources.dll + BuildHost-netcore/cs/ + True + BuildHost-netcore/cs/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/de/System.CommandLine.resources.dll + BuildHost-netcore/de/ + True + BuildHost-netcore/de/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/es/System.CommandLine.resources.dll + BuildHost-netcore/es/ + True + BuildHost-netcore/es/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/fr/System.CommandLine.resources.dll + BuildHost-netcore/fr/ + True + BuildHost-netcore/fr/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/it/System.CommandLine.resources.dll + BuildHost-netcore/it/ + True + BuildHost-netcore/it/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/ja/System.CommandLine.resources.dll + BuildHost-netcore/ja/ + True + BuildHost-netcore/ja/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/ko/System.CommandLine.resources.dll + BuildHost-netcore/ko/ + True + BuildHost-netcore/ko/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/pl/System.CommandLine.resources.dll + BuildHost-netcore/pl/ + True + BuildHost-netcore/pl/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/pt-BR/System.CommandLine.resources.dll + BuildHost-netcore/pt-BR/ + True + BuildHost-netcore/pt-BR/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/ru/System.CommandLine.resources.dll + BuildHost-netcore/ru/ + True + BuildHost-netcore/ru/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/tr/System.CommandLine.resources.dll + BuildHost-netcore/tr/ + True + BuildHost-netcore/tr/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll + BuildHost-netcore/zh-Hans/ + True + BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll + + + Microsoft.CodeAnalysis.Workspaces.MSBuild + 4.14.0 + Content + false + PreserveNewest + BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll + BuildHost-netcore/zh-Hant/ + True + BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll + + + + + + + + + /home/yla/.nuget/packages/microsoft.codeanalysis.analyzers/3.11.0 + /home/yla/.nuget/packages/microsoft.entityframeworkcore.tools/10.0.0 + + \ No newline at end of file diff --git a/Auth.Domain/obj/Auth.Domain.csproj.nuget.g.targets b/Auth.Domain/obj/Auth.Domain.csproj.nuget.g.targets new file mode 100644 index 0000000..6f07e60 --- /dev/null +++ b/Auth.Domain/obj/Auth.Domain.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/Auth.Domain/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/Auth.Domain/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/Auth.Domain/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/Auth.Domain/obj/Debug/net10.0/Auth.Dom.44AFD750.Up2Date b/Auth.Domain/obj/Debug/net10.0/Auth.Dom.44AFD750.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/Auth.Domain/obj/Debug/net10.0/Auth.Domain.AssemblyInfo.cs b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.AssemblyInfo.cs new file mode 100644 index 0000000..7326c7b --- /dev/null +++ b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Auth.Domain")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Auth.Domain")] +[assembly: System.Reflection.AssemblyTitleAttribute("Auth.Domain")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.Domain/obj/Debug/net10.0/Auth.Domain.AssemblyInfoInputs.cache b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.AssemblyInfoInputs.cache new file mode 100644 index 0000000..1bca3ba --- /dev/null +++ b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +89c3db8402c5dd4e18a47b44eea5863f394a6d0629ae0955b911a51eb7a45fd9 diff --git a/Auth.Domain/obj/Debug/net10.0/Auth.Domain.GeneratedMSBuildEditorConfig.editorconfig b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..19306cd --- /dev/null +++ b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,25 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFramework = net10.0 +build_property.TargetPlatformMinVersion = +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.UsingMicrosoftNETSdkWeb = +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.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.RootNamespace = Auth.Domain +build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/Auth.Domain/obj/Debug/net10.0/Auth.Domain.GlobalUsings.g.cs b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.GlobalUsings.g.cs new file mode 100644 index 0000000..d12bcbc --- /dev/null +++ b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; diff --git a/Auth.Domain/obj/Debug/net10.0/Auth.Domain.assets.cache b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.assets.cache new file mode 100644 index 0000000..48f9e0a Binary files /dev/null and b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.assets.cache differ diff --git a/Auth.Domain/obj/Debug/net10.0/Auth.Domain.csproj.AssemblyReference.cache b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.csproj.AssemblyReference.cache new file mode 100644 index 0000000..11f8460 Binary files /dev/null and b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.csproj.AssemblyReference.cache differ diff --git a/Auth.Domain/obj/Debug/net10.0/Auth.Domain.csproj.CoreCompileInputs.cache b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..4b561a3 --- /dev/null +++ b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +a13020eccbf8379795ce0e500fd641fa56f8fc9d9a93fc1243f4677739ef8b2e diff --git a/Auth.Domain/obj/Debug/net10.0/Auth.Domain.csproj.FileListAbsolute.txt b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..4f0f570 --- /dev/null +++ b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.csproj.FileListAbsolute.txt @@ -0,0 +1,126 @@ +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/Auth.Domain.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/Auth.Domain.runtimeconfig.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/Auth.Domain.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/Auth.Domain.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/Auth.Contracts.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Domain.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Domain.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Domain.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Domain.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Domain.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Dom.44AFD750.Up2Date +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Domain.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/refint/Auth.Domain.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Domain.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Domain.genruntimeconfig.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/ref/Auth.Domain.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.Build.Locator.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Microsoft.IO.Redist.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/Newtonsoft.Json.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Buffers.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Collections.Immutable.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.CommandLine.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Memory.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Numerics.Vectors.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/System.Threading.Tasks.Extensions.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/cs/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/de/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/es/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/fr/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/it/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/ja/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/ko/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/pl/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/pt-BR/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/ru/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/tr/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.Build.Locator.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/Newtonsoft.Json.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/System.Collections.Immutable.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/System.CommandLine.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/cs/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/de/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/es/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/fr/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/it/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/ja/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/ko/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/pl/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/ru/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/tr/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/Auth.Domain.deps.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/Auth.Domain.runtimeconfig.json +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/Auth.Domain.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/Auth.Domain.pdb +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/Auth.Contracts.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net10.0/Auth.Contracts.pdb +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Domain.csproj.AssemblyReference.cache +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Domain.GeneratedMSBuildEditorConfig.editorconfig +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Domain.AssemblyInfoInputs.cache +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Domain.AssemblyInfo.cs +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Domain.csproj.CoreCompileInputs.cache +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Dom.44AFD750.Up2Date +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Domain.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/refint/Auth.Domain.dll +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Domain.pdb +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/Auth.Domain.genruntimeconfig.cache +/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net10.0/ref/Auth.Domain.dll diff --git a/Auth.Domain/obj/Debug/net10.0/Auth.Domain.dll b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.dll new file mode 100644 index 0000000..9fb83f2 Binary files /dev/null and b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.dll differ diff --git a/Auth.Domain/obj/Debug/net10.0/Auth.Domain.genruntimeconfig.cache b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.genruntimeconfig.cache new file mode 100644 index 0000000..a8bd5de --- /dev/null +++ b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.genruntimeconfig.cache @@ -0,0 +1 @@ +fc5eb9062573b9911e98267cf2b26b56fb55f6b168b8b3c28e5f3451e52c5a65 diff --git a/Auth.Domain/obj/Debug/net10.0/Auth.Domain.pdb b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.pdb new file mode 100644 index 0000000..3cf6984 Binary files /dev/null and b/Auth.Domain/obj/Debug/net10.0/Auth.Domain.pdb differ diff --git a/Auth.Domain/obj/Debug/net10.0/ref/Auth.Domain.dll b/Auth.Domain/obj/Debug/net10.0/ref/Auth.Domain.dll new file mode 100644 index 0000000..5553746 Binary files /dev/null and b/Auth.Domain/obj/Debug/net10.0/ref/Auth.Domain.dll differ diff --git a/Auth.Domain/obj/Debug/net10.0/refint/Auth.Domain.dll b/Auth.Domain/obj/Debug/net10.0/refint/Auth.Domain.dll new file mode 100644 index 0000000..5553746 Binary files /dev/null and b/Auth.Domain/obj/Debug/net10.0/refint/Auth.Domain.dll differ diff --git a/Auth.Domain/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/Auth.Domain/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..9e76325 --- /dev/null +++ b/Auth.Domain/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/Auth.Domain/obj/Debug/net9.0/Auth.Dom.44AFD750.Up2Date b/Auth.Domain/obj/Debug/net9.0/Auth.Dom.44AFD750.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/Auth.Domain/obj/Debug/net9.0/Auth.Domain.AssemblyInfo.cs b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.AssemblyInfo.cs new file mode 100644 index 0000000..7326c7b --- /dev/null +++ b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Auth.Domain")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Auth.Domain")] +[assembly: System.Reflection.AssemblyTitleAttribute("Auth.Domain")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.Domain/obj/Debug/net9.0/Auth.Domain.AssemblyInfoInputs.cache b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.AssemblyInfoInputs.cache new file mode 100644 index 0000000..1bca3ba --- /dev/null +++ b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +89c3db8402c5dd4e18a47b44eea5863f394a6d0629ae0955b911a51eb7a45fd9 diff --git a/Auth.Domain/obj/Debug/net9.0/Auth.Domain.GeneratedMSBuildEditorConfig.editorconfig b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d3a1a82 --- /dev/null +++ b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,23 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetFramework = net9.0 +build_property.TargetPlatformMinVersion = +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.UsingMicrosoftNETSdkWeb = +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 = Auth.Domain +build_property.ProjectDir = /mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/Auth.Domain/obj/Debug/net9.0/Auth.Domain.GlobalUsings.g.cs b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/Auth.Domain/obj/Debug/net9.0/Auth.Domain.assets.cache b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.assets.cache new file mode 100644 index 0000000..c72d4c5 Binary files /dev/null and b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.assets.cache differ diff --git a/Auth.Domain/obj/Debug/net9.0/Auth.Domain.csproj.AssemblyReference.cache b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.csproj.AssemblyReference.cache new file mode 100644 index 0000000..77d6678 Binary files /dev/null and b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.csproj.AssemblyReference.cache differ diff --git a/Auth.Domain/obj/Debug/net9.0/Auth.Domain.csproj.CoreCompileInputs.cache b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..ff1c719 --- /dev/null +++ b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +54634abf5cb9e8794015a6c2f5d38a3811af27b86cf350a9688e3b3f7a9745d8 diff --git a/Auth.Domain/obj/Debug/net9.0/Auth.Domain.csproj.FileListAbsolute.txt b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..d300c4f --- /dev/null +++ b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.csproj.FileListAbsolute.txt @@ -0,0 +1,34 @@ +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net9.0/Auth.Domain.deps.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net9.0/Auth.Domain.runtimeconfig.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net9.0/Auth.Domain.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net9.0/Auth.Domain.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net9.0/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net9.0/Auth.Contracts.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Domain.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Domain.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Domain.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Domain.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Domain.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Dom.44AFD750.Up2Date +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Domain.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/refint/Auth.Domain.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Domain.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Domain.genruntimeconfig.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/ref/Auth.Domain.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net9.0/Auth.Domain.deps.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net9.0/Auth.Domain.runtimeconfig.json +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net9.0/Auth.Domain.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net9.0/Auth.Domain.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net9.0/Auth.Contracts.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/bin/Debug/net9.0/Auth.Contracts.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Domain.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Domain.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Domain.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Domain.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Domain.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Dom.44AFD750.Up2Date +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Domain.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/refint/Auth.Domain.dll +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Domain.pdb +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/Auth.Domain.genruntimeconfig.cache +/mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/Debug/net9.0/ref/Auth.Domain.dll diff --git a/Auth.Domain/obj/Debug/net9.0/Auth.Domain.dll b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.dll new file mode 100644 index 0000000..28ae93b Binary files /dev/null and b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.dll differ diff --git a/Auth.Domain/obj/Debug/net9.0/Auth.Domain.genruntimeconfig.cache b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.genruntimeconfig.cache new file mode 100644 index 0000000..c31fc2a --- /dev/null +++ b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.genruntimeconfig.cache @@ -0,0 +1 @@ +de4ecfaf0a8734cf6d9de408c4a47f97b50bd482df97c037d9a9475343d394b2 diff --git a/Auth.Domain/obj/Debug/net9.0/Auth.Domain.pdb b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.pdb new file mode 100644 index 0000000..e62e5cd Binary files /dev/null and b/Auth.Domain/obj/Debug/net9.0/Auth.Domain.pdb differ diff --git a/Auth.Domain/obj/Debug/net9.0/Domain.AssemblyInfo.cs b/Auth.Domain/obj/Debug/net9.0/Domain.AssemblyInfo.cs new file mode 100644 index 0000000..b062752 --- /dev/null +++ b/Auth.Domain/obj/Debug/net9.0/Domain.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Domain")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0+89d8c7f2868cdc25655d2a003c6dc8ab9e106e46")] +[assembly: System.Reflection.AssemblyProductAttribute("Domain")] +[assembly: System.Reflection.AssemblyTitleAttribute("Domain")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.Domain/obj/Debug/net9.0/Domain.AssemblyInfoInputs.cache b/Auth.Domain/obj/Debug/net9.0/Domain.AssemblyInfoInputs.cache new file mode 100644 index 0000000..7e2d3e1 --- /dev/null +++ b/Auth.Domain/obj/Debug/net9.0/Domain.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +a2f5ff3a8b65e45bb4126dc42b7981da83a373d659edc1c1cbc50abde4c2776d diff --git a/Auth.Domain/obj/Debug/net9.0/Domain.GeneratedMSBuildEditorConfig.editorconfig b/Auth.Domain/obj/Debug/net9.0/Domain.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..d5eecf0 --- /dev/null +++ b/Auth.Domain/obj/Debug/net9.0/Domain.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,23 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetFramework = net9.0 +build_property.TargetPlatformMinVersion = +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.UsingMicrosoftNETSdkWeb = +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 = Domain +build_property.ProjectDir = /mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/Auth.Domain/obj/Debug/net9.0/Domain.GlobalUsings.g.cs b/Auth.Domain/obj/Debug/net9.0/Domain.GlobalUsings.g.cs new file mode 100644 index 0000000..8578f3d --- /dev/null +++ b/Auth.Domain/obj/Debug/net9.0/Domain.GlobalUsings.g.cs @@ -0,0 +1,8 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; diff --git a/Auth.Domain/obj/Debug/net9.0/Domain.assets.cache b/Auth.Domain/obj/Debug/net9.0/Domain.assets.cache new file mode 100644 index 0000000..40a5a3f Binary files /dev/null and b/Auth.Domain/obj/Debug/net9.0/Domain.assets.cache differ diff --git a/Auth.Domain/obj/Debug/net9.0/Domain.csproj.AssemblyReference.cache b/Auth.Domain/obj/Debug/net9.0/Domain.csproj.AssemblyReference.cache new file mode 100644 index 0000000..66e6b8e Binary files /dev/null and b/Auth.Domain/obj/Debug/net9.0/Domain.csproj.AssemblyReference.cache differ diff --git a/Auth.Domain/obj/Debug/net9.0/Domain.csproj.CoreCompileInputs.cache b/Auth.Domain/obj/Debug/net9.0/Domain.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..977840a --- /dev/null +++ b/Auth.Domain/obj/Debug/net9.0/Domain.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +0bb0a39632c126504eca8c9f02fa3f03af123fa0cdacc6a4a27edaacafee5ba7 diff --git a/Auth.Domain/obj/Debug/net9.0/Domain.csproj.FileListAbsolute.txt b/Auth.Domain/obj/Debug/net9.0/Domain.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..3249516 --- /dev/null +++ b/Auth.Domain/obj/Debug/net9.0/Domain.csproj.FileListAbsolute.txt @@ -0,0 +1,156 @@ +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/bin/Debug/net9.0/Domain.deps.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/bin/Debug/net9.0/Domain.runtimeconfig.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/obj/Debug/net9.0/Domain.csproj.AssemblyReference.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/obj/Debug/net9.0/Domain.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/obj/Debug/net9.0/Domain.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/obj/Debug/net9.0/Domain.AssemblyInfo.cs +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/obj/Debug/net9.0/Domain.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/obj/Debug/net9.0/Domain.sourcelink.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/obj/Debug/net9.0/Domain.csproj.Up2Date +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/obj/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/obj/Debug/net9.0/refint/Domain.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/obj/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/obj/Debug/net9.0/Domain.genruntimeconfig.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Domain/obj/Debug/net9.0/ref/Domain.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/bin/Debug/net9.0/Domain.deps.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/bin/Debug/net9.0/Domain.runtimeconfig.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/obj/Debug/net9.0/Domain.csproj.AssemblyReference.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/obj/Debug/net9.0/Domain.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/obj/Debug/net9.0/Domain.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/obj/Debug/net9.0/Domain.AssemblyInfo.cs +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/obj/Debug/net9.0/Domain.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/obj/Debug/net9.0/Domain.sourcelink.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/obj/Debug/net9.0/Domain.csproj.Up2Date +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/obj/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/obj/Debug/net9.0/refint/Domain.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/obj/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/obj/Debug/net9.0/Domain.genruntimeconfig.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/HR/Domain/obj/Debug/net9.0/ref/Domain.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/bin/Debug/net9.0/Domain.deps.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/bin/Debug/net9.0/Domain.runtimeconfig.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/obj/Debug/net9.0/Domain.csproj.AssemblyReference.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/obj/Debug/net9.0/Domain.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/obj/Debug/net9.0/Domain.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/obj/Debug/net9.0/Domain.AssemblyInfo.cs +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/obj/Debug/net9.0/Domain.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/obj/Debug/net9.0/Domain.sourcelink.json +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/obj/Debug/net9.0/Domain.csproj.Up2Date +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/obj/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/obj/Debug/net9.0/refint/Domain.dll +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/obj/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/obj/Debug/net9.0/Domain.genruntimeconfig.cache +/run/media/yla/Dataa/Programming/Projects/Work/ERP/MassTech_ERP/erp/Backend/Auth/Domain/obj/Debug/net9.0/ref/Domain.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.deps.json +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.runtimeconfig.json +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.AssemblyReference.cache +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.AssemblyInfoInputs.cache +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.AssemblyInfo.cs +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.Up2Date +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/refint/Domain.dll +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.genruntimeconfig.cache +/run/media/yla/Dataa1/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/ref/Domain.dll +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.AssemblyReference.cache +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.AssemblyInfo.cs +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/refint/Domain.dll +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.deps.json +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.runtimeconfig.json +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.Up2Date +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.genruntimeconfig.cache +/run/media/yla/Dataa/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/ref/Domain.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.deps.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.runtimeconfig.json +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.AssemblyReference.cache +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.AssemblyInfoInputs.cache +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.AssemblyInfo.cs +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.Up2Date +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/refint/Domain.dll +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.genruntimeconfig.cache +/run/media/yla/Dataa1/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/ref/Domain.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.deps.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.runtimeconfig.json +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.AssemblyReference.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.AssemblyInfoInputs.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.AssemblyInfo.cs +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.Up2Date +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/refint/Domain.dll +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.genruntimeconfig.cache +/run/media/yla/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/ref/Domain.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.deps.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.runtimeconfig.json +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Contracts.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Contracts.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.AssemblyReference.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.GeneratedMSBuildEditorConfig.editorconfig +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.AssemblyInfoInputs.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.AssemblyInfo.cs +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.CoreCompileInputs.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.Up2Date +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/refint/Domain.dll +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.pdb +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.genruntimeconfig.cache +/run/media/yla/Dataa2/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/ref/Domain.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.deps.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.runtimeconfig.json +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Domain.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Contracts.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/bin/Debug/net9.0/Contracts.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.AssemblyReference.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.GeneratedMSBuildEditorConfig.editorconfig +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.AssemblyInfoInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.AssemblyInfo.cs +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.CoreCompileInputs.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.csproj.Up2Date +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/refint/Domain.dll +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.pdb +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/Domain.genruntimeconfig.cache +/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/Debug/net9.0/ref/Domain.dll diff --git a/Auth.Domain/obj/Debug/net9.0/Domain.csproj.Up2Date b/Auth.Domain/obj/Debug/net9.0/Domain.csproj.Up2Date new file mode 100644 index 0000000..e69de29 diff --git a/Auth.Domain/obj/Debug/net9.0/Domain.dll b/Auth.Domain/obj/Debug/net9.0/Domain.dll new file mode 100644 index 0000000..39e6dc6 Binary files /dev/null and b/Auth.Domain/obj/Debug/net9.0/Domain.dll differ diff --git a/Auth.Domain/obj/Debug/net9.0/Domain.genruntimeconfig.cache b/Auth.Domain/obj/Debug/net9.0/Domain.genruntimeconfig.cache new file mode 100644 index 0000000..f56d704 --- /dev/null +++ b/Auth.Domain/obj/Debug/net9.0/Domain.genruntimeconfig.cache @@ -0,0 +1 @@ +97881f7aaf474445118b655a5390a82a65768a1e3f4a9c1a6cdc8ff056a5f144 diff --git a/Auth.Domain/obj/Debug/net9.0/Domain.pdb b/Auth.Domain/obj/Debug/net9.0/Domain.pdb new file mode 100644 index 0000000..920d5fe Binary files /dev/null and b/Auth.Domain/obj/Debug/net9.0/Domain.pdb differ diff --git a/Auth.Domain/obj/Debug/net9.0/ref/Auth.Domain.dll b/Auth.Domain/obj/Debug/net9.0/ref/Auth.Domain.dll new file mode 100644 index 0000000..5290ec0 Binary files /dev/null and b/Auth.Domain/obj/Debug/net9.0/ref/Auth.Domain.dll differ diff --git a/Auth.Domain/obj/Debug/net9.0/ref/Domain.dll b/Auth.Domain/obj/Debug/net9.0/ref/Domain.dll new file mode 100644 index 0000000..491ff0a Binary files /dev/null and b/Auth.Domain/obj/Debug/net9.0/ref/Domain.dll differ diff --git a/Auth.Domain/obj/Debug/net9.0/refint/Auth.Domain.dll b/Auth.Domain/obj/Debug/net9.0/refint/Auth.Domain.dll new file mode 100644 index 0000000..5290ec0 Binary files /dev/null and b/Auth.Domain/obj/Debug/net9.0/refint/Auth.Domain.dll differ diff --git a/Auth.Domain/obj/Debug/net9.0/refint/Domain.dll b/Auth.Domain/obj/Debug/net9.0/refint/Domain.dll new file mode 100644 index 0000000..491ff0a Binary files /dev/null and b/Auth.Domain/obj/Debug/net9.0/refint/Domain.dll differ diff --git a/Auth.Domain/obj/Domain.csproj.EntityFrameworkCore.targets b/Auth.Domain/obj/Domain.csproj.EntityFrameworkCore.targets new file mode 100644 index 0000000..6b67a59 --- /dev/null +++ b/Auth.Domain/obj/Domain.csproj.EntityFrameworkCore.targets @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Auth.Domain/obj/Domain.csproj.nuget.dgspec.json b/Auth.Domain/obj/Domain.csproj.nuget.dgspec.json new file mode 100644 index 0000000..248a357 --- /dev/null +++ b/Auth.Domain/obj/Domain.csproj.nuget.dgspec.json @@ -0,0 +1,158 @@ +{ + "format": 1, + "restore": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/Domain.csproj": {} + }, + "projects": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj", + "projectName": "Contracts", + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + }, + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/Domain.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/Domain.csproj", + "projectName": "Domain", + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/Domain.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Domain/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj": { + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Contracts/Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Bogus": { + "target": "Package", + "version": "[35.6.3, )" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.7, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[9.0.7, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[9.0.4, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Auth.Domain/obj/Domain.csproj.nuget.g.props b/Auth.Domain/obj/Domain.csproj.nuget.g.props new file mode 100644 index 0000000..1866100 --- /dev/null +++ b/Auth.Domain/obj/Domain.csproj.nuget.g.props @@ -0,0 +1,24 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 6.14.0 + + + + + + + + + + + /home/yla/.nuget/packages/microsoft.codeanalysis.analyzers/3.3.4 + /home/yla/.nuget/packages/microsoft.entityframeworkcore.tools/9.0.7 + + \ No newline at end of file diff --git a/Auth.Domain/obj/Domain.csproj.nuget.g.targets b/Auth.Domain/obj/Domain.csproj.nuget.g.targets new file mode 100644 index 0000000..1b76db8 --- /dev/null +++ b/Auth.Domain/obj/Domain.csproj.nuget.g.targets @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Auth.Domain/obj/project.assets.json b/Auth.Domain/obj/project.assets.json new file mode 100644 index 0000000..c0f1feb --- /dev/null +++ b/Auth.Domain/obj/project.assets.json @@ -0,0 +1,4200 @@ +{ + "version": 3, + "targets": { + "net10.0": { + "Bogus/35.6.3": { + "type": "package", + "compile": { + "lib/net6.0/Bogus.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Bogus.dll": { + "related": ".xml" + } + } + }, + "Humanizer.Core/2.14.1": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Humanizer.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.Internal/10.0.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Cryptography.Internal.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.Internal": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll": { + "related": ".xml" + } + } + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Relational": "10.0.0", + "Microsoft.Extensions.Identity.Stores": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Build/17.7.2": { + "type": "package", + "dependencies": { + "Microsoft.Build.Framework": "17.7.2", + "Microsoft.NET.StringTools": "17.7.2", + "System.Configuration.ConfigurationManager": "7.0.0", + "System.Reflection.MetadataLoadContext": "7.0.0", + "System.Security.Permissions": "7.0.0" + }, + "compile": { + "ref/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Build.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Build.Framework/17.14.28": { + "type": "package", + "compile": { + "ref/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Build.Framework.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Build.Tasks.Core/17.14.28": { + "type": "package", + "dependencies": { + "Microsoft.Build.Framework": "17.14.28", + "Microsoft.Build.Utilities.Core": "17.14.28", + "Microsoft.NET.StringTools": "17.14.28", + "System.CodeDom": "9.0.0", + "System.Configuration.ConfigurationManager": "9.0.0", + "System.Diagnostics.EventLog": "9.0.0", + "System.Formats.Nrbf": "9.0.0", + "System.Resources.Extensions": "9.0.0", + "System.Security.Cryptography.Pkcs": "9.0.0", + "System.Security.Cryptography.ProtectedData": "9.0.0", + "System.Security.Cryptography.Xml": "9.0.0" + }, + "compile": { + "ref/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Build.Tasks.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.Build.Utilities.Core/17.14.28": { + "type": "package", + "dependencies": { + "Microsoft.Build.Framework": "17.14.28", + "Microsoft.NET.StringTools": "17.14.28", + "System.Configuration.ConfigurationManager": "9.0.0", + "System.Diagnostics.EventLog": "9.0.0", + "System.Security.Cryptography.ProtectedData": "9.0.0" + }, + "compile": { + "ref/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.Build.Utilities.Core.dll": { + "related": ".pdb;.xml" + } + } + }, + "Microsoft.CodeAnalysis.Analyzers/3.11.0": { + "type": "package", + "build": { + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.props": {}, + "buildTransitive/Microsoft.CodeAnalysis.Analyzers.targets": {} + } + }, + "Microsoft.CodeAnalysis.Common/4.14.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0" + }, + "compile": { + "lib/net9.0/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp/4.14.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[4.14.0]" + }, + "compile": { + "lib/net9.0/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.14.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.CSharp": "[4.14.0]", + "Microsoft.CodeAnalysis.Common": "[4.14.0]", + "Microsoft.CodeAnalysis.Workspaces.Common": "[4.14.0]", + "System.Composition": "9.0.0" + }, + "compile": { + "lib/net9.0/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.14.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Common": "[4.14.0]", + "System.Composition": "9.0.0" + }, + "compile": { + "lib/net9.0/_._": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.14.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build": "17.7.2", + "Microsoft.Build.Framework": "17.7.2", + "Microsoft.Build.Tasks.Core": "17.7.2", + "Microsoft.Build.Utilities.Core": "17.7.2", + "Microsoft.CodeAnalysis.Analyzers": "3.11.0", + "Microsoft.CodeAnalysis.Workspaces.Common": "[4.14.0]", + "Microsoft.Extensions.DependencyInjection": "9.0.0", + "Microsoft.Extensions.Logging": "9.0.0", + "Microsoft.Extensions.Logging.Abstractions": "9.0.0", + "Microsoft.Extensions.Options": "9.0.0", + "Microsoft.Extensions.Primitives": "9.0.0", + "Newtonsoft.Json": "13.0.3", + "System.CodeDom": "7.0.0", + "System.Composition": "9.0.0", + "System.Configuration.ConfigurationManager": "9.0.0", + "System.Diagnostics.EventLog": "9.0.0", + "System.Resources.Extensions": "9.0.0", + "System.Security.Cryptography.Pkcs": "7.0.2", + "System.Security.Cryptography.ProtectedData": "9.0.0", + "System.Security.Cryptography.Xml": "7.0.1", + "System.Security.Permissions": "9.0.0", + "System.Windows.Extensions": "9.0.0" + }, + "compile": { + "lib/net9.0/_._": {} + }, + "runtime": { + "lib/net9.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll": {}, + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll": { + "related": ".pdb;.xml" + } + }, + "resource": { + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "cs" + }, + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "de" + }, + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "es" + }, + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "fr" + }, + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "it" + }, + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ja" + }, + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ko" + }, + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "pl" + }, + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "pt-BR" + }, + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "ru" + }, + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "tr" + }, + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "zh-Hans" + }, + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll": { + "locale": "zh-Hant" + } + }, + "contentFiles": { + "contentFiles/any/any/BuildHost-net472/Microsoft.Build.Locator.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/Microsoft.Build.Locator.dll" + }, + "contentFiles/any/any/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe" + }, + "contentFiles/any/any/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config" + }, + "contentFiles/any/any/BuildHost-net472/Microsoft.IO.Redist.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/Microsoft.IO.Redist.dll" + }, + "contentFiles/any/any/BuildHost-net472/Newtonsoft.Json.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/Newtonsoft.Json.dll" + }, + "contentFiles/any/any/BuildHost-net472/System.Buffers.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/System.Buffers.dll" + }, + "contentFiles/any/any/BuildHost-net472/System.Collections.Immutable.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/System.Collections.Immutable.dll" + }, + "contentFiles/any/any/BuildHost-net472/System.CommandLine.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/System.CommandLine.dll" + }, + "contentFiles/any/any/BuildHost-net472/System.Memory.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/System.Memory.dll" + }, + "contentFiles/any/any/BuildHost-net472/System.Numerics.Vectors.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/System.Numerics.Vectors.dll" + }, + "contentFiles/any/any/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll" + }, + "contentFiles/any/any/BuildHost-net472/System.Threading.Tasks.Extensions.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/System.Threading.Tasks.Extensions.dll" + }, + "contentFiles/any/any/BuildHost-net472/cs/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/cs/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/de/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/de/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/es/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/es/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/fr/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/fr/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/it/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/it/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/ja/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/ja/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/ko/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/ko/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/pl/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/pl/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/pt-BR/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/pt-BR/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/ru/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/ru/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/tr/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/tr/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/zh-Hans/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-net472/zh-Hant/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/Microsoft.Build.Locator.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/Microsoft.Build.Locator.dll" + }, + "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json" + }, + "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll" + }, + "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config" + }, + "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json" + }, + "contentFiles/any/any/BuildHost-netcore/Newtonsoft.Json.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/Newtonsoft.Json.dll" + }, + "contentFiles/any/any/BuildHost-netcore/System.Collections.Immutable.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/System.Collections.Immutable.dll" + }, + "contentFiles/any/any/BuildHost-netcore/System.CommandLine.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/System.CommandLine.dll" + }, + "contentFiles/any/any/BuildHost-netcore/cs/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/cs/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/de/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/de/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/es/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/es/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/fr/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/fr/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/it/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/it/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/ja/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/ja/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/ko/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/ko/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/pl/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/pl/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/pt-BR/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/ru/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/ru/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/tr/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/tr/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll" + }, + "contentFiles/any/any/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll": { + "buildAction": "Content", + "codeLanguage": "any", + "copyToOutput": true, + "outputPath": "BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll" + } + } + }, + "Microsoft.EntityFrameworkCore/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "10.0.0", + "Microsoft.EntityFrameworkCore.Analyzers": "10.0.0", + "Microsoft.Extensions.Caching.Memory": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/10.0.0": { + "type": "package" + }, + "Microsoft.EntityFrameworkCore.Design/10.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.Build.Framework": "17.14.28", + "Microsoft.Build.Tasks.Core": "17.14.28", + "Microsoft.Build.Utilities.Core": "17.14.28", + "Microsoft.CodeAnalysis.CSharp": "4.14.0", + "Microsoft.CodeAnalysis.CSharp.Workspaces": "4.14.0", + "Microsoft.CodeAnalysis.Workspaces.MSBuild": "4.14.0", + "Microsoft.EntityFrameworkCore.Relational": "10.0.0", + "Microsoft.Extensions.Caching.Memory": "10.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", + "Microsoft.Extensions.DependencyModel": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0", + "Mono.TextTemplating": "3.0.0", + "Newtonsoft.Json": "13.0.3" + }, + "compile": { + "lib/net10.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Design.dll": { + "related": ".xml" + } + }, + "build": { + "build/net10.0/Microsoft.EntityFrameworkCore.Design.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "10.0.0", + "Microsoft.Extensions.Caching.Memory": "10.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Tools/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "10.0.0" + } + }, + "Microsoft.Extensions.Caching.Abstractions/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "10.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0", + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/10.0.0": { + "type": "package", + "compile": { + "lib/net10.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Identity.Core/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.AspNetCore.Cryptography.KeyDerivation": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Identity.Core.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Identity.Stores/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "10.0.0", + "Microsoft.Extensions.Identity.Core": "10.0.0", + "Microsoft.Extensions.Logging": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Identity.Stores.dll": { + "related": ".xml" + } + } + }, + "Microsoft.Extensions.Logging/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "10.0.0", + "Microsoft.Extensions.Logging.Abstractions": "10.0.0", + "Microsoft.Extensions.Options": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "10.0.0", + "Microsoft.Extensions.Primitives": "10.0.0" + }, + "compile": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/Microsoft.Extensions.Options.targets": {} + } + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "type": "package", + "compile": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "Microsoft.NET.StringTools/17.14.28": { + "type": "package", + "compile": { + "ref/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/Microsoft.NET.StringTools.dll": { + "related": ".pdb;.xml" + } + } + }, + "Mono.TextTemplating/3.0.0": { + "type": "package", + "dependencies": { + "System.CodeDom": "6.0.0" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/Mono.TextTemplating.dll": {} + }, + "build": { + "buildTransitive/Mono.TextTemplating.targets": {} + } + }, + "Newtonsoft.Json/13.0.3": { + "type": "package", + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "Npgsql/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Logging.Abstractions": "10.0.0" + }, + "compile": { + "lib/net10.0/Npgsql.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Npgsql.dll": { + "related": ".xml" + } + } + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "[10.0.0, 11.0.0)", + "Microsoft.EntityFrameworkCore.Relational": "[10.0.0, 11.0.0)", + "Npgsql": "10.0.0" + }, + "compile": { + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll": { + "related": ".xml" + } + } + }, + "System.CodeDom/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.CodeDom.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "9.0.0", + "System.Composition.Convention": "9.0.0", + "System.Composition.Hosting": "9.0.0", + "System.Composition.Runtime": "9.0.0", + "System.Composition.TypedParts": "9.0.0" + }, + "compile": { + "lib/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.AttributedModel/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.AttributedModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Convention/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "9.0.0" + }, + "compile": { + "lib/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Convention.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Hosting/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.Runtime": "9.0.0" + }, + "compile": { + "lib/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Hosting.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.Runtime/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.Runtime.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Composition.TypedParts/9.0.0": { + "type": "package", + "dependencies": { + "System.Composition.AttributedModel": "9.0.0", + "System.Composition.Hosting": "9.0.0", + "System.Composition.Runtime": "9.0.0" + }, + "compile": { + "lib/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Composition.TypedParts.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Configuration.ConfigurationManager/9.0.0": { + "type": "package", + "dependencies": { + "System.Diagnostics.EventLog": "9.0.0", + "System.Security.Cryptography.ProtectedData": "9.0.0" + }, + "compile": { + "lib/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Configuration.ConfigurationManager.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Diagnostics.EventLog/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Diagnostics.EventLog.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll": { + "assetType": "runtime", + "rid": "win" + }, + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Formats.Nrbf/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Formats.Nrbf.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Reflection.MetadataLoadContext/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Reflection.MetadataLoadContext.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Resources.Extensions/9.0.0": { + "type": "package", + "dependencies": { + "System.Formats.Nrbf": "9.0.0" + }, + "compile": { + "lib/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Resources.Extensions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Security.Cryptography.Pkcs/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Security.Cryptography.Pkcs.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + }, + "runtimeTargets": { + "runtimes/win/lib/net9.0/System.Security.Cryptography.Pkcs.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Security.Cryptography.ProtectedData/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Security.Cryptography.ProtectedData.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Security.Cryptography.Xml/9.0.0": { + "type": "package", + "dependencies": { + "System.Security.Cryptography.Pkcs": "9.0.0" + }, + "compile": { + "lib/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Security.Cryptography.Xml.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Security.Permissions/9.0.0": { + "type": "package", + "dependencies": { + "System.Windows.Extensions": "9.0.0" + }, + "compile": { + "lib/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Security.Permissions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net8.0/_._": {} + } + }, + "System.Windows.Extensions/9.0.0": { + "type": "package", + "compile": { + "lib/net9.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net9.0/System.Windows.Extensions.dll": { + "related": ".xml" + } + }, + "runtimeTargets": { + "runtimes/win/lib/net9.0/System.Windows.Extensions.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "Auth.Contracts/1.0.0": { + "type": "project", + "framework": ".NETCoreApp,Version=v10.0", + "compile": { + "bin/placeholder/Auth.Contracts.dll": {} + }, + "runtime": { + "bin/placeholder/Auth.Contracts.dll": {} + } + } + } + }, + "libraries": { + "Bogus/35.6.3": { + "sha512": "+5omfZWy8gOcbpc48vKfMI4h/ecbdf3NQm6xCl3zMbaP4J3rMMm5h3kPFeIWBgt4mbz6YY0eeZDLR/6yv1khKw==", + "type": "package", + "path": "bogus/35.6.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE", + "bogus.128.png", + "bogus.35.6.3.nupkg.sha512", + "bogus.nuspec", + "lib/net40/Bogus.dll", + "lib/net40/Bogus.xml", + "lib/net6.0/Bogus.dll", + "lib/net6.0/Bogus.xml", + "lib/netstandard1.3/Bogus.dll", + "lib/netstandard1.3/Bogus.xml", + "lib/netstandard2.0/Bogus.dll", + "lib/netstandard2.0/Bogus.xml" + ] + }, + "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" + ] + }, + "Microsoft.AspNetCore.Cryptography.Internal/10.0.0": { + "sha512": "jGlm8BsWcN1IIxLaxcHP6s0u2OEiBMa0HPCiWkMK7xox/h4WP2CRMyk7tV0cJC5LdM3JoR5UUqU2cxat6ElwlA==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.internal/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net10.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.Internal.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.Internal.xml", + "microsoft.aspnetcore.cryptography.internal.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.cryptography.internal.nuspec" + ] + }, + "Microsoft.AspNetCore.Cryptography.KeyDerivation/10.0.0": { + "sha512": "Xo7cBZnUfe+i+rnfM+NH/KVD50BnBrfjsUBjMzjxAL0HdNAUcnhcx9/01o4CX7CKf+jc2bgvg+frlT4aJcVdyg==", + "type": "package", + "path": "microsoft.aspnetcore.cryptography.keyderivation/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net10.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/net462/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.dll", + "lib/netstandard2.0/Microsoft.AspNetCore.Cryptography.KeyDerivation.xml", + "microsoft.aspnetcore.cryptography.keyderivation.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.cryptography.keyderivation.nuspec" + ] + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore/10.0.0": { + "sha512": "mH1+58nbX5RWSd8hajSnXSdpQ1MN3oca488Zd+DvKX2nPTAyTVNRzubMV06BmPcjOZ9waLr/AjwcNiCQ8bCscQ==", + "type": "package", + "path": "microsoft.aspnetcore.identity.entityframeworkcore/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.dll", + "lib/net10.0/Microsoft.AspNetCore.Identity.EntityFrameworkCore.xml", + "microsoft.aspnetcore.identity.entityframeworkcore.10.0.0.nupkg.sha512", + "microsoft.aspnetcore.identity.entityframeworkcore.nuspec" + ] + }, + "Microsoft.Build/17.7.2": { + "sha512": "AmWnumxsMiRycFfE3kq/XnFFTAoPpCWl3UuiKQWCa5Z0+hBKVoiydzS2iXJGd3x+jry+qaTR9GzoezjV9NFT5A==", + "type": "package", + "path": "microsoft.build/17.7.2", + "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/net7.0/Microsoft.Build.dll", + "lib/net7.0/Microsoft.Build.pdb", + "lib/net7.0/Microsoft.Build.xml", + "microsoft.build.17.7.2.nupkg.sha512", + "microsoft.build.nuspec", + "notices/THIRDPARTYNOTICES.txt", + "ref/net472/Microsoft.Build.dll", + "ref/net472/Microsoft.Build.xml", + "ref/net7.0/Microsoft.Build.dll", + "ref/net7.0/Microsoft.Build.xml" + ] + }, + "Microsoft.Build.Framework/17.14.28": { + "sha512": "wRcyTzGV0LRAtFdrddtioh59Ky4/zbvyraP0cQkDzRSRkhgAQb0K88D/JNC6VHLIXanRi3mtV1jU0uQkBwmiVg==", + "type": "package", + "path": "microsoft.build.framework/17.14.28", + "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/net9.0/Microsoft.Build.Framework.dll", + "lib/net9.0/Microsoft.Build.Framework.pdb", + "lib/net9.0/Microsoft.Build.Framework.xml", + "microsoft.build.framework.17.14.28.nupkg.sha512", + "microsoft.build.framework.nuspec", + "notices/THIRDPARTYNOTICES.txt", + "ref/net472/Microsoft.Build.Framework.dll", + "ref/net472/Microsoft.Build.Framework.xml", + "ref/net9.0/Microsoft.Build.Framework.dll", + "ref/net9.0/Microsoft.Build.Framework.xml", + "ref/netstandard2.0/Microsoft.Build.Framework.dll", + "ref/netstandard2.0/Microsoft.Build.Framework.xml" + ] + }, + "Microsoft.Build.Tasks.Core/17.14.28": { + "sha512": "jk3O0tXp9QWPXhLJ7Pl8wm/eGtGgA1++vwHGWEmnwMU6eP//ghtcCUpQh9CQMwEKGDnH0aJf285V1s8yiSlKfQ==", + "type": "package", + "path": "microsoft.build.tasks.core/17.14.28", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MSBuild-NuGet-Icon.png", + "README.md", + "lib/net472/Microsoft.Build.Tasks.Core.dll", + "lib/net472/Microsoft.Build.Tasks.Core.pdb", + "lib/net472/Microsoft.Build.Tasks.Core.xml", + "lib/net9.0/Microsoft.Build.Tasks.Core.dll", + "lib/net9.0/Microsoft.Build.Tasks.Core.pdb", + "lib/net9.0/Microsoft.Build.Tasks.Core.xml", + "microsoft.build.tasks.core.17.14.28.nupkg.sha512", + "microsoft.build.tasks.core.nuspec", + "notices/THIRDPARTYNOTICES.txt", + "ref/net472/Microsoft.Build.Tasks.Core.dll", + "ref/net472/Microsoft.Build.Tasks.Core.xml", + "ref/net9.0/Microsoft.Build.Tasks.Core.dll", + "ref/net9.0/Microsoft.Build.Tasks.Core.xml", + "ref/netstandard2.0/Microsoft.Build.Tasks.Core.dll", + "ref/netstandard2.0/Microsoft.Build.Tasks.Core.xml" + ] + }, + "Microsoft.Build.Utilities.Core/17.14.28": { + "sha512": "rhSdPo8QfLXXWM+rY0x0z1G4KK4ZhMoIbHROyDj8MUBFab9nvHR0NaMnjzOgXldhmD2zi2ir8d6xCatNzlhF5g==", + "type": "package", + "path": "microsoft.build.utilities.core/17.14.28", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "MSBuild-NuGet-Icon.png", + "README.md", + "lib/net472/Microsoft.Build.Utilities.Core.dll", + "lib/net472/Microsoft.Build.Utilities.Core.pdb", + "lib/net472/Microsoft.Build.Utilities.Core.xml", + "lib/net9.0/Microsoft.Build.Utilities.Core.dll", + "lib/net9.0/Microsoft.Build.Utilities.Core.pdb", + "lib/net9.0/Microsoft.Build.Utilities.Core.xml", + "microsoft.build.utilities.core.17.14.28.nupkg.sha512", + "microsoft.build.utilities.core.nuspec", + "notices/THIRDPARTYNOTICES.txt", + "ref/net472/Microsoft.Build.Utilities.Core.dll", + "ref/net472/Microsoft.Build.Utilities.Core.xml", + "ref/net9.0/Microsoft.Build.Utilities.Core.dll", + "ref/net9.0/Microsoft.Build.Utilities.Core.xml", + "ref/netstandard2.0/Microsoft.Build.Utilities.Core.dll", + "ref/netstandard2.0/Microsoft.Build.Utilities.Core.xml" + ] + }, + "Microsoft.CodeAnalysis.Analyzers/3.11.0": { + "sha512": "v/EW3UE8/lbEYHoC2Qq7AR/DnmvpgdtAMndfQNmpuIMx/Mto8L5JnuCfdBYtgvalQOtfNCnxFejxuRrryvUTsg==", + "type": "package", + "path": "microsoft.codeanalysis.analyzers/3.11.0", + "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_4_all.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevel_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelcorrectness_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevellibrary_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscompatibility_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysiscorrectness_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdesign_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisdocumentation_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysislocalization_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisperformance_3_3_4_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_4_all.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_all_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_default.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_default_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_minimum.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_minimum_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_none.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_none_warnaserror.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_recommended.globalconfig", + "buildTransitive/config/analysislevelmicrosoftcodeanalysisreleasetracking_3_3_4_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", + "documentation/readme.md", + "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.11.0.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.Common/4.14.0": { + "sha512": "PC3tuwZYnC+idaPuoC/AZpEdwrtX7qFpmnrfQkgobGIWiYmGi5MCRtl5mx6QrfMGQpK78X2lfIEoZDLg/qnuHg==", + "type": "package", + "path": "microsoft.codeanalysis.common/4.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.dll", + "lib/net8.0/Microsoft.CodeAnalysis.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.dll", + "lib/net9.0/Microsoft.CodeAnalysis.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.resources.dll", + "lib/net9.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.14.0.nupkg.sha512", + "microsoft.codeanalysis.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp/4.14.0": { + "sha512": "568a6wcTivauIhbeWcCwfWwIn7UV7MeHEBvFB2uzGIpM2OhJ4eM/FZ8KS0yhPoNxnSpjGzz7x7CIjTxhslojQA==", + "type": "package", + "path": "microsoft.codeanalysis.csharp/4.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.resources.dll", + "lib/net9.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.14.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.nuspec" + ] + }, + "Microsoft.CodeAnalysis.CSharp.Workspaces/4.14.0": { + "sha512": "QkgCEM4qJo6gdtblXtNgHqtykS61fxW+820hx5JN6n9DD4mQtqNB+6fPeJ3GQWg6jkkGz6oG9yZq7H3Gf0zwYw==", + "type": "package", + "path": "microsoft.codeanalysis.csharp.workspaces/4.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.dll", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.CSharp.Workspaces.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.CSharp.Workspaces.resources.dll", + "lib/net9.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.14.0.nupkg.sha512", + "microsoft.codeanalysis.csharp.workspaces.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.Common/4.14.0": { + "sha512": "wNVK9JrqjqDC/WgBUFV6henDfrW87NPfo98nzah/+M/G1D6sBOPtXwqce3UQNn+6AjTnmkHYN1WV9XmTlPemTw==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.common/4.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.resources.dll", + "lib/net9.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.14.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.common.nuspec" + ] + }, + "Microsoft.CodeAnalysis.Workspaces.MSBuild/4.14.0": { + "sha512": "YU7Sguzm1Cuhi2U6S0DRKcVpqAdBd2QmatpyE0KqYMJogJ9E27KHOWGUzAOjsyjAM7sNaUk+a8VPz24knDseFw==", + "type": "package", + "path": "microsoft.codeanalysis.workspaces.msbuild/4.14.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.rtf", + "contentFiles/any/any/BuildHost-net472/Microsoft.Build.Locator.dll", + "contentFiles/any/any/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe", + "contentFiles/any/any/BuildHost-net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.exe.config", + "contentFiles/any/any/BuildHost-net472/Microsoft.IO.Redist.dll", + "contentFiles/any/any/BuildHost-net472/Newtonsoft.Json.dll", + "contentFiles/any/any/BuildHost-net472/System.Buffers.dll", + "contentFiles/any/any/BuildHost-net472/System.Collections.Immutable.dll", + "contentFiles/any/any/BuildHost-net472/System.CommandLine.dll", + "contentFiles/any/any/BuildHost-net472/System.Memory.dll", + "contentFiles/any/any/BuildHost-net472/System.Numerics.Vectors.dll", + "contentFiles/any/any/BuildHost-net472/System.Runtime.CompilerServices.Unsafe.dll", + "contentFiles/any/any/BuildHost-net472/System.Threading.Tasks.Extensions.dll", + "contentFiles/any/any/BuildHost-net472/cs/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/de/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/es/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/fr/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/it/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/ja/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/ko/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/pl/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/pt-BR/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/ru/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/tr/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/zh-Hans/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-net472/zh-Hant/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/Microsoft.Build.Locator.dll", + "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.deps.json", + "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll", + "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.dll.config", + "contentFiles/any/any/BuildHost-netcore/Microsoft.CodeAnalysis.Workspaces.MSBuild.BuildHost.runtimeconfig.json", + "contentFiles/any/any/BuildHost-netcore/Newtonsoft.Json.dll", + "contentFiles/any/any/BuildHost-netcore/System.Collections.Immutable.dll", + "contentFiles/any/any/BuildHost-netcore/System.CommandLine.dll", + "contentFiles/any/any/BuildHost-netcore/cs/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/de/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/es/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/fr/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/it/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/ja/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/ko/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/pl/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/pt-BR/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/ru/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/tr/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/zh-Hans/System.CommandLine.resources.dll", + "contentFiles/any/any/BuildHost-netcore/zh-Hant/System.CommandLine.resources.dll", + "lib/net472/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb", + "lib/net472/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml", + "lib/net472/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net472/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb", + "lib/net8.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml", + "lib/net8.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net8.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/Microsoft.CodeAnalysis.ExternalAccess.RazorCompiler.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.dll", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.pdb", + "lib/net9.0/Microsoft.CodeAnalysis.Workspaces.MSBuild.xml", + "lib/net9.0/cs/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/de/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/es/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/fr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/it/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/ja/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/ko/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/pl/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/pt-BR/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/ru/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/tr/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/zh-Hans/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "lib/net9.0/zh-Hant/Microsoft.CodeAnalysis.Workspaces.MSBuild.resources.dll", + "microsoft.codeanalysis.workspaces.msbuild.4.14.0.nupkg.sha512", + "microsoft.codeanalysis.workspaces.msbuild.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore/10.0.0": { + "sha512": "hHa2amRjMyBLUH/KTML6FgIAhZ0VFYkhCKwWEax0rO6iNeM1P5MflyeQLE5dniSIOZHc3Oqyv5UIyTFO4e1Auw==", + "type": "package", + "path": "microsoft.entityframeworkcore/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "buildTransitive/net10.0/Microsoft.EntityFrameworkCore.props", + "lib/net10.0/Microsoft.EntityFrameworkCore.dll", + "lib/net10.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.10.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/10.0.0": { + "sha512": "C+TT9k7f1GQ8agOfV512K9iwrzi76RXVSDiLx+iWC9pz3QhEpSF1Dyk+FpVvd8ULQ+rqymfM8KQ7g48ttQVyMg==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net10.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/10.0.0": { + "sha512": "TxHQq0kn0tpYs2ljeRl8jtmWk720B0nteqI6mAZM77HWJpYT9Zj8SkkBBlj8K3Yeq18a6NBjz6YutE+shEk4Ag==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "docs/PACKAGE.md", + "microsoft.entityframeworkcore.analyzers.10.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Design/10.0.0": { + "sha512": "R7BeFniEpBrHw8kKVtWiMG4PRAwJ4K1RZoQWB32Ak8ws3uvYH98DVp9Y2UBUgbwY5lR9wPlrxp7P3GGDQ7LUSQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.design/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "build/net10.0/Microsoft.EntityFrameworkCore.Design.props", + "lib/net10.0/Microsoft.EntityFrameworkCore.Design.dll", + "lib/net10.0/Microsoft.EntityFrameworkCore.Design.xml", + "microsoft.entityframeworkcore.design.10.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.design.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/10.0.0": { + "sha512": "A3MX1ee7RDxWCUdx/KqP+74fbksz0UIhkVZh56YHvbPkEKsffCXgHU3LGkRDwqR/MrBNWLCWC/IVX79tzM30ZA==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net10.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Tools/10.0.0": { + "sha512": "Gx6AWCf1CsBHTbvVVWBYBKp6hrwZt0IgBigoBPaybwOBG2EFIfZc7NP2BoR6r56YuuikbPIzCuvQuFYNnX43+A==", + "type": "package", + "path": "microsoft.entityframeworkcore.tools/10.0.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "docs/PACKAGE.md", + "microsoft.entityframeworkcore.tools.10.0.0.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/net10.0/any/ef.dll", + "tools/net10.0/any/ef.runtimeconfig.json", + "tools/net472/any/ef.exe", + "tools/net472/win-arm64/ef.exe", + "tools/net472/win-x86/ef.exe" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/10.0.0": { + "sha512": "Zcoy6H9mSoGyvr7UvlGokEZrlZkcPCICPZr8mCsSt9U/N8eeCwCXwKF5bShdA66R0obxBCwP4AxomQHvVkC/uA==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net9.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.10.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/10.0.0": { + "sha512": "krK19MKp0BNiR9rpBDW7PKSrTMLVlifS9am3CVc4O1Jq6GWz0o4F+sw5OSL4L3mVd56W8l6JRgghUa2KB51vOw==", + "type": "package", + "path": "microsoft.extensions.caching.memory/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net10.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net10.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net8.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net9.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net9.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.10.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/10.0.0": { + "sha512": "d2kDKnCsJvY7mBVhcjPSp9BkJk48DsaHPg5u+Oy4f8XaOqnEedRy/USyvnpHL92wpJ6DrTPy7htppUUzskbCXQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net9.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.10.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/10.0.0": { + "sha512": "f0RBabswJq+gRu5a+hWIobrLWiUYPKMhCD9WO3sYBAdSy3FFH14LMvLVFZc2kPSCimBLxSuitUhsd6tb0TAY6A==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net9.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.10.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/10.0.0": { + "sha512": "L3AdmZ1WOK4XXT5YFPEwyt0ep6l8lGIPs7F5OOBZc77Zqeo01Of7XXICy47628sdVl0v/owxYJTe86DTgFwKCA==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net9.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.10.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/10.0.0": { + "sha512": "RFYJR7APio/BiqdQunRq6DB+nDB6nc2qhHr77mlvZ0q0BT8PubMXN7XicmfzCbrDE/dzhBnUKBRXLTcqUiZDGg==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net10.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net10.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net8.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net8.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net9.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net9.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.10.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Identity.Core/10.0.0": { + "sha512": "EstJPVPxd71mTw5x4pbnUvSpPi3xWDNasM0QZx0p2J6bCxQkq7YNksRUJvOfFN28VCMrGRejnheNaGLDy/ROQQ==", + "type": "package", + "path": "microsoft.extensions.identity.core/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.Extensions.Identity.Core.dll", + "lib/net10.0/Microsoft.Extensions.Identity.Core.xml", + "lib/net462/Microsoft.Extensions.Identity.Core.dll", + "lib/net462/Microsoft.Extensions.Identity.Core.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Core.xml", + "microsoft.extensions.identity.core.10.0.0.nupkg.sha512", + "microsoft.extensions.identity.core.nuspec" + ] + }, + "Microsoft.Extensions.Identity.Stores/10.0.0": { + "sha512": "Rtg3Mjy13li7Lpim7qP+JN1pWXsBR/8mslLIhSMvt8WfojxkDlvUhVxY2leIVYnnl5igfixGLzjpC2soGhPCBw==", + "type": "package", + "path": "microsoft.extensions.identity.stores/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net10.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/net10.0/Microsoft.Extensions.Identity.Stores.xml", + "lib/net462/Microsoft.Extensions.Identity.Stores.dll", + "lib/net462/Microsoft.Extensions.Identity.Stores.xml", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.dll", + "lib/netstandard2.0/Microsoft.Extensions.Identity.Stores.xml", + "microsoft.extensions.identity.stores.10.0.0.nupkg.sha512", + "microsoft.extensions.identity.stores.nuspec" + ] + }, + "Microsoft.Extensions.Logging/10.0.0": { + "sha512": "BStFkd5CcnEtarlcgYDBcFzGYCuuNMzPs02wN3WBsOFoYIEmYoUdAiU+au6opzoqfTYJsMTW00AeqDdnXH2CvA==", + "type": "package", + "path": "microsoft.extensions.logging/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net10.0/Microsoft.Extensions.Logging.dll", + "lib/net10.0/Microsoft.Extensions.Logging.xml", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net8.0/Microsoft.Extensions.Logging.dll", + "lib/net8.0/Microsoft.Extensions.Logging.xml", + "lib/net9.0/Microsoft.Extensions.Logging.dll", + "lib/net9.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.10.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/10.0.0": { + "sha512": "FU/IfjDfwaMuKr414SSQNTIti/69bHEMb+QKrskRb26oVqpx3lNFXMjs/RC9ZUuhBhcwDM2BwOgoMw+PZ+beqQ==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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/net8.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net10.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net8.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net9.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net9.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.10.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/10.0.0": { + "sha512": "8oCAgXOow5XDrY9HaXX1QmH3ORsyZO/ANVHBlhLyCeWTH5Sg4UuqZeOTWJi6484M+LqSx0RqQXDJtdYy2BNiLQ==", + "type": "package", + "path": "microsoft.extensions.options/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "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/net8.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Options.targets", + "lib/net10.0/Microsoft.Extensions.Options.dll", + "lib/net10.0/Microsoft.Extensions.Options.xml", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net8.0/Microsoft.Extensions.Options.dll", + "lib/net8.0/Microsoft.Extensions.Options.xml", + "lib/net9.0/Microsoft.Extensions.Options.dll", + "lib/net9.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.10.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/10.0.0": { + "sha512": "inRnbpCS0nwO/RuoZIAqxQUuyjaknOOnCEZB55KSMMjRhl0RQDttSmLSGsUJN3RQ3ocf5NDLFd2mOQViHqMK5w==", + "type": "package", + "path": "microsoft.extensions.primitives/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net10.0/Microsoft.Extensions.Primitives.dll", + "lib/net10.0/Microsoft.Extensions.Primitives.xml", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net8.0/Microsoft.Extensions.Primitives.dll", + "lib/net8.0/Microsoft.Extensions.Primitives.xml", + "lib/net9.0/Microsoft.Extensions.Primitives.dll", + "lib/net9.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.10.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.NET.StringTools/17.14.28": { + "sha512": "DMIeWDlxe0Wz0DIhJZ2FMoGQAN2yrGZOi5jjFhRYHWR5ONd0CS6IpAHlRnA7uA/5BF+BADvgsETxW2XrPiFc1A==", + "type": "package", + "path": "microsoft.net.stringtools/17.14.28", + "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/net9.0/Microsoft.NET.StringTools.dll", + "lib/net9.0/Microsoft.NET.StringTools.pdb", + "lib/net9.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.14.28.nupkg.sha512", + "microsoft.net.stringtools.nuspec", + "notices/THIRDPARTYNOTICES.txt", + "ref/net472/Microsoft.NET.StringTools.dll", + "ref/net472/Microsoft.NET.StringTools.xml", + "ref/net9.0/Microsoft.NET.StringTools.dll", + "ref/net9.0/Microsoft.NET.StringTools.xml", + "ref/netstandard2.0/Microsoft.NET.StringTools.dll", + "ref/netstandard2.0/Microsoft.NET.StringTools.xml" + ] + }, + "Mono.TextTemplating/3.0.0": { + "sha512": "YqueG52R/Xej4VVbKuRIodjiAhV0HR/XVbLbNrJhCZnzjnSjgMJ/dCdV0akQQxavX6hp/LC6rqLGLcXeQYU7XA==", + "type": "package", + "path": "mono.texttemplating/3.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.txt/LICENSE", + "buildTransitive/Mono.TextTemplating.targets", + "lib/net472/Mono.TextTemplating.dll", + "lib/net6.0/Mono.TextTemplating.dll", + "lib/netstandard2.0/Mono.TextTemplating.dll", + "mono.texttemplating.3.0.0.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/10.0.0": { + "sha512": "xZAYhPOU2rUIFpV48xsqhCx9vXs6Y+0jX2LCoSEfDFYMw9jtAOUk3iQsCnDLrFIv9NT3JGMihn7nnuZsPKqJmA==", + "type": "package", + "path": "npgsql/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net10.0/Npgsql.dll", + "lib/net10.0/Npgsql.xml", + "lib/net8.0/Npgsql.dll", + "lib/net8.0/Npgsql.xml", + "lib/net9.0/Npgsql.dll", + "lib/net9.0/Npgsql.xml", + "npgsql.10.0.0.nupkg.sha512", + "npgsql.nuspec", + "postgresql.png" + ] + }, + "Npgsql.EntityFrameworkCore.PostgreSQL/10.0.0": { + "sha512": "E2+uSWxSB8LdsUVwPaqRWOcGOP92biry2JEwc0KJMdLJF+aZdczeIdEXVwEyv4nSVMQJH0o8tLhyAMiR6VF0lw==", + "type": "package", + "path": "npgsql.entityframeworkcore.postgresql/10.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "README.md", + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.dll", + "lib/net10.0/Npgsql.EntityFrameworkCore.PostgreSQL.xml", + "npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", + "npgsql.entityframeworkcore.postgresql.nuspec", + "postgresql.png" + ] + }, + "System.CodeDom/9.0.0": { + "sha512": "oTE5IfuMoET8yaZP/vdvy9xO47guAv/rOhe4DODuFBN3ySprcQOlXqO3j+e/H/YpKKR5sglrxRaZ2HYOhNJrqA==", + "type": "package", + "path": "system.codedom/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.CodeDom.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.CodeDom.targets", + "lib/net462/System.CodeDom.dll", + "lib/net462/System.CodeDom.xml", + "lib/net8.0/System.CodeDom.dll", + "lib/net8.0/System.CodeDom.xml", + "lib/net9.0/System.CodeDom.dll", + "lib/net9.0/System.CodeDom.xml", + "lib/netstandard2.0/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.xml", + "system.codedom.9.0.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition/9.0.0": { + "sha512": "3Djj70fFTraOarSKmRnmRy/zm4YurICm+kiCtI0dYRqGJnLX6nJ+G3WYuFJ173cAPax/gh96REcbNiVqcrypFQ==", + "type": "package", + "path": "system.composition/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.targets", + "lib/net461/_._", + "lib/netcoreapp2.0/_._", + "lib/netstandard2.0/_._", + "system.composition.9.0.0.nupkg.sha512", + "system.composition.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.AttributedModel/9.0.0": { + "sha512": "iri00l/zIX9g4lHMY+Nz0qV1n40+jFYAmgsaiNn16xvt2RDwlqByNG4wgblagnDYxm3YSQQ0jLlC/7Xlk9CzyA==", + "type": "package", + "path": "system.composition.attributedmodel/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.AttributedModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.AttributedModel.targets", + "lib/net462/System.Composition.AttributedModel.dll", + "lib/net462/System.Composition.AttributedModel.xml", + "lib/net8.0/System.Composition.AttributedModel.dll", + "lib/net8.0/System.Composition.AttributedModel.xml", + "lib/net9.0/System.Composition.AttributedModel.dll", + "lib/net9.0/System.Composition.AttributedModel.xml", + "lib/netstandard2.0/System.Composition.AttributedModel.dll", + "lib/netstandard2.0/System.Composition.AttributedModel.xml", + "system.composition.attributedmodel.9.0.0.nupkg.sha512", + "system.composition.attributedmodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Convention/9.0.0": { + "sha512": "+vuqVP6xpi582XIjJi6OCsIxuoTZfR0M7WWufk3uGDeCl3wGW6KnpylUJ3iiXdPByPE0vR5TjJgR6hDLez4FQg==", + "type": "package", + "path": "system.composition.convention/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Convention.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Convention.targets", + "lib/net462/System.Composition.Convention.dll", + "lib/net462/System.Composition.Convention.xml", + "lib/net8.0/System.Composition.Convention.dll", + "lib/net8.0/System.Composition.Convention.xml", + "lib/net9.0/System.Composition.Convention.dll", + "lib/net9.0/System.Composition.Convention.xml", + "lib/netstandard2.0/System.Composition.Convention.dll", + "lib/netstandard2.0/System.Composition.Convention.xml", + "system.composition.convention.9.0.0.nupkg.sha512", + "system.composition.convention.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Hosting/9.0.0": { + "sha512": "OFqSeFeJYr7kHxDfaViGM1ymk7d4JxK//VSoNF9Ux0gpqkLsauDZpu89kTHHNdCWfSljbFcvAafGyBoY094btQ==", + "type": "package", + "path": "system.composition.hosting/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Hosting.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Hosting.targets", + "lib/net462/System.Composition.Hosting.dll", + "lib/net462/System.Composition.Hosting.xml", + "lib/net8.0/System.Composition.Hosting.dll", + "lib/net8.0/System.Composition.Hosting.xml", + "lib/net9.0/System.Composition.Hosting.dll", + "lib/net9.0/System.Composition.Hosting.xml", + "lib/netstandard2.0/System.Composition.Hosting.dll", + "lib/netstandard2.0/System.Composition.Hosting.xml", + "system.composition.hosting.9.0.0.nupkg.sha512", + "system.composition.hosting.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.Runtime/9.0.0": { + "sha512": "w1HOlQY1zsOWYussjFGZCEYF2UZXgvoYnS94NIu2CBnAGMbXFAX8PY8c92KwUItPmowal68jnVLBCzdrWLeEKA==", + "type": "package", + "path": "system.composition.runtime/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.Runtime.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.Runtime.targets", + "lib/net462/System.Composition.Runtime.dll", + "lib/net462/System.Composition.Runtime.xml", + "lib/net8.0/System.Composition.Runtime.dll", + "lib/net8.0/System.Composition.Runtime.xml", + "lib/net9.0/System.Composition.Runtime.dll", + "lib/net9.0/System.Composition.Runtime.xml", + "lib/netstandard2.0/System.Composition.Runtime.dll", + "lib/netstandard2.0/System.Composition.Runtime.xml", + "system.composition.runtime.9.0.0.nupkg.sha512", + "system.composition.runtime.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Composition.TypedParts/9.0.0": { + "sha512": "aRZlojCCGEHDKqh43jaDgaVpYETsgd7Nx4g1zwLKMtv4iTo0627715ajEFNpEEBTgLmvZuv8K0EVxc3sM4NWJA==", + "type": "package", + "path": "system.composition.typedparts/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Composition.TypedParts.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Composition.TypedParts.targets", + "lib/net462/System.Composition.TypedParts.dll", + "lib/net462/System.Composition.TypedParts.xml", + "lib/net8.0/System.Composition.TypedParts.dll", + "lib/net8.0/System.Composition.TypedParts.xml", + "lib/net9.0/System.Composition.TypedParts.dll", + "lib/net9.0/System.Composition.TypedParts.xml", + "lib/netstandard2.0/System.Composition.TypedParts.dll", + "lib/netstandard2.0/System.Composition.TypedParts.xml", + "system.composition.typedparts.9.0.0.nupkg.sha512", + "system.composition.typedparts.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Configuration.ConfigurationManager/9.0.0": { + "sha512": "PdkuMrwDhXoKFo/JxISIi9E8L+QGn9Iquj2OKDWHB6Y/HnUOuBouF7uS3R4Hw3FoNmwwMo6hWgazQdyHIIs27A==", + "type": "package", + "path": "system.configuration.configurationmanager/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Configuration.ConfigurationManager.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Configuration.ConfigurationManager.targets", + "lib/net462/System.Configuration.ConfigurationManager.dll", + "lib/net462/System.Configuration.ConfigurationManager.xml", + "lib/net8.0/System.Configuration.ConfigurationManager.dll", + "lib/net8.0/System.Configuration.ConfigurationManager.xml", + "lib/net9.0/System.Configuration.ConfigurationManager.dll", + "lib/net9.0/System.Configuration.ConfigurationManager.xml", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.dll", + "lib/netstandard2.0/System.Configuration.ConfigurationManager.xml", + "system.configuration.configurationmanager.9.0.0.nupkg.sha512", + "system.configuration.configurationmanager.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Diagnostics.EventLog/9.0.0": { + "sha512": "qd01+AqPhbAG14KtdtIqFk+cxHQFZ/oqRSCoxU1F+Q6Kv0cl726sl7RzU9yLFGd4BUOKdN4XojXF0pQf/R6YeA==", + "type": "package", + "path": "system.diagnostics.eventlog/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Diagnostics.EventLog.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Diagnostics.EventLog.targets", + "lib/net462/System.Diagnostics.EventLog.dll", + "lib/net462/System.Diagnostics.EventLog.xml", + "lib/net8.0/System.Diagnostics.EventLog.dll", + "lib/net8.0/System.Diagnostics.EventLog.xml", + "lib/net9.0/System.Diagnostics.EventLog.dll", + "lib/net9.0/System.Diagnostics.EventLog.xml", + "lib/netstandard2.0/System.Diagnostics.EventLog.dll", + "lib/netstandard2.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net8.0/System.Diagnostics.EventLog.xml", + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.Messages.dll", + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.dll", + "runtimes/win/lib/net9.0/System.Diagnostics.EventLog.xml", + "system.diagnostics.eventlog.9.0.0.nupkg.sha512", + "system.diagnostics.eventlog.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Formats.Nrbf/9.0.0": { + "sha512": "F/6tNE+ckmdFeSQAyQo26bQOqfPFKEfZcuqnp4kBE6/7jP26diP+QTHCJJ6vpEfaY6bLy+hBLiIQUSxSmNwLkA==", + "type": "package", + "path": "system.formats.nrbf/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Formats.Nrbf.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Formats.Nrbf.targets", + "lib/net462/System.Formats.Nrbf.dll", + "lib/net462/System.Formats.Nrbf.xml", + "lib/net8.0/System.Formats.Nrbf.dll", + "lib/net8.0/System.Formats.Nrbf.xml", + "lib/net9.0/System.Formats.Nrbf.dll", + "lib/net9.0/System.Formats.Nrbf.xml", + "lib/netstandard2.0/System.Formats.Nrbf.dll", + "lib/netstandard2.0/System.Formats.Nrbf.xml", + "system.formats.nrbf.9.0.0.nupkg.sha512", + "system.formats.nrbf.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.Resources.Extensions/9.0.0": { + "sha512": "tvhuT1D2OwPROdL1kRWtaTJliQo0WdyhvwDpd8RM997G7m3Hya5nhbYhNTS75x6Vu+ypSOgL5qxDCn8IROtCxw==", + "type": "package", + "path": "system.resources.extensions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Resources.Extensions.targets", + "buildTransitive/net462/System.Resources.Extensions.targets", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Resources.Extensions.targets", + "lib/net462/System.Resources.Extensions.dll", + "lib/net462/System.Resources.Extensions.xml", + "lib/net8.0/System.Resources.Extensions.dll", + "lib/net8.0/System.Resources.Extensions.xml", + "lib/net9.0/System.Resources.Extensions.dll", + "lib/net9.0/System.Resources.Extensions.xml", + "lib/netstandard2.0/System.Resources.Extensions.dll", + "lib/netstandard2.0/System.Resources.Extensions.xml", + "system.resources.extensions.9.0.0.nupkg.sha512", + "system.resources.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Pkcs/9.0.0": { + "sha512": "8tluJF8w9si+2yoHeL8rgVJS6lKvWomTDC8px65Z8MCzzdME5eaPtEQf4OfVGrAxB5fW93ncucy1+221O9EQaw==", + "type": "package", + "path": "system.security.cryptography.pkcs/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.Pkcs.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Pkcs.targets", + "lib/net462/System.Security.Cryptography.Pkcs.dll", + "lib/net462/System.Security.Cryptography.Pkcs.xml", + "lib/net8.0/System.Security.Cryptography.Pkcs.dll", + "lib/net8.0/System.Security.Cryptography.Pkcs.xml", + "lib/net9.0/System.Security.Cryptography.Pkcs.dll", + "lib/net9.0/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/net8.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net8.0/System.Security.Cryptography.Pkcs.xml", + "runtimes/win/lib/net9.0/System.Security.Cryptography.Pkcs.dll", + "runtimes/win/lib/net9.0/System.Security.Cryptography.Pkcs.xml", + "system.security.cryptography.pkcs.9.0.0.nupkg.sha512", + "system.security.cryptography.pkcs.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.ProtectedData/9.0.0": { + "sha512": "CJW+x/F6fmRQ7N6K8paasTw9PDZp4t7G76UjGNlSDgoHPF0h08vTzLYbLZpOLEJSg35d5wy2jCXGo84EN05DpQ==", + "type": "package", + "path": "system.security.cryptography.protecteddata/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.ProtectedData.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.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/net8.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net8.0/System.Security.Cryptography.ProtectedData.xml", + "lib/net9.0/System.Security.Cryptography.ProtectedData.dll", + "lib/net9.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/_._", + "system.security.cryptography.protecteddata.9.0.0.nupkg.sha512", + "system.security.cryptography.protecteddata.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Cryptography.Xml/9.0.0": { + "sha512": "GQZn5wFd+pyOfwWaCbqxG7trQ5ox01oR8kYgWflgtux4HiUNihGEgG2TktRWyH+9bw7NoEju1D41H/upwQeFQw==", + "type": "package", + "path": "system.security.cryptography.xml/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Cryptography.Xml.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Cryptography.Xml.targets", + "lib/net462/System.Security.Cryptography.Xml.dll", + "lib/net462/System.Security.Cryptography.Xml.xml", + "lib/net8.0/System.Security.Cryptography.Xml.dll", + "lib/net8.0/System.Security.Cryptography.Xml.xml", + "lib/net9.0/System.Security.Cryptography.Xml.dll", + "lib/net9.0/System.Security.Cryptography.Xml.xml", + "lib/netstandard2.0/System.Security.Cryptography.Xml.dll", + "lib/netstandard2.0/System.Security.Cryptography.Xml.xml", + "system.security.cryptography.xml.9.0.0.nupkg.sha512", + "system.security.cryptography.xml.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Security.Permissions/9.0.0": { + "sha512": "H2VFD4SFVxieywNxn9/epb63/IOcPPfA0WOtfkljzNfu7GCcHIBQNuwP6zGCEIi7Ci/oj8aLPUNK9sYImMFf4Q==", + "type": "package", + "path": "system.security.permissions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Security.Permissions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net8.0/_._", + "buildTransitive/netcoreapp2.0/System.Security.Permissions.targets", + "lib/net462/System.Security.Permissions.dll", + "lib/net462/System.Security.Permissions.xml", + "lib/net8.0/System.Security.Permissions.dll", + "lib/net8.0/System.Security.Permissions.xml", + "lib/net9.0/System.Security.Permissions.dll", + "lib/net9.0/System.Security.Permissions.xml", + "lib/netstandard2.0/System.Security.Permissions.dll", + "lib/netstandard2.0/System.Security.Permissions.xml", + "system.security.permissions.9.0.0.nupkg.sha512", + "system.security.permissions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Windows.Extensions/9.0.0": { + "sha512": "U9msthvnH2Fsw7xwAvIhNHOdnIjOQTwOc8Vd0oGOsiRcGMGoBFlUD6qtYawRUoQdKH9ysxesZ9juFElt1Jw/7A==", + "type": "package", + "path": "system.windows.extensions/9.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "PACKAGE.md", + "THIRD-PARTY-NOTICES.TXT", + "lib/net8.0/System.Windows.Extensions.dll", + "lib/net8.0/System.Windows.Extensions.xml", + "lib/net9.0/System.Windows.Extensions.dll", + "lib/net9.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net8.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net8.0/System.Windows.Extensions.xml", + "runtimes/win/lib/net9.0/System.Windows.Extensions.dll", + "runtimes/win/lib/net9.0/System.Windows.Extensions.xml", + "system.windows.extensions.9.0.0.nupkg.sha512", + "system.windows.extensions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Auth.Contracts/1.0.0": { + "type": "project", + "path": "../Auth.Contracts/Auth.Contracts.csproj", + "msbuildProject": "../Auth.Contracts/Auth.Contracts.csproj" + } + }, + "projectFileDependencyGroups": { + "net10.0": [ + "Auth.Contracts >= 1.0.0", + "Bogus >= 35.6.3", + "Microsoft.AspNetCore.Identity.EntityFrameworkCore >= 10.0.0", + "Microsoft.EntityFrameworkCore.Design >= 10.0.0", + "Microsoft.EntityFrameworkCore.Tools >= 10.0.0", + "Npgsql.EntityFrameworkCore.PostgreSQL >= 10.0.0" + ] + }, + "packageFolders": { + "/home/yla/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj", + "projectName": "Auth.Domain", + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net10.0" + ], + "sources": { + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "projectReferences": { + "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj": { + "projectPath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Contracts/Auth.Contracts.csproj" + } + } + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "all" + }, + "SdkAnalysisLevel": "10.0.100" + }, + "frameworks": { + "net10.0": { + "targetAlias": "net10.0", + "dependencies": { + "Bogus": { + "target": "Package", + "version": "[35.6.3, )" + }, + "Microsoft.AspNetCore.Identity.EntityFrameworkCore": { + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Design": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[10.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[10.0.0, )" + }, + "Npgsql.EntityFrameworkCore.PostgreSQL": { + "target": "Package", + "version": "[10.0.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/10.0.102/PortableRuntimeIdentifierGraph.json", + "packagesToPrune": { + "Microsoft.CSharp": "(,4.7.32767]", + "Microsoft.VisualBasic": "(,10.4.32767]", + "Microsoft.Win32.Primitives": "(,4.3.32767]", + "Microsoft.Win32.Registry": "(,5.0.32767]", + "runtime.any.System.Collections": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.any.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.any.System.Globalization": "(,4.3.32767]", + "runtime.any.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.any.System.IO": "(,4.3.32767]", + "runtime.any.System.Reflection": "(,4.3.32767]", + "runtime.any.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.any.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.any.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.any.System.Runtime": "(,4.3.32767]", + "runtime.any.System.Runtime.Handles": "(,4.3.32767]", + "runtime.any.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.any.System.Text.Encoding": "(,4.3.32767]", + "runtime.any.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.any.System.Threading.Tasks": "(,4.3.32767]", + "runtime.any.System.Threading.Timer": "(,4.3.32767]", + "runtime.aot.System.Collections": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tools": "(,4.3.32767]", + "runtime.aot.System.Diagnostics.Tracing": "(,4.3.32767]", + "runtime.aot.System.Globalization": "(,4.3.32767]", + "runtime.aot.System.Globalization.Calendars": "(,4.3.32767]", + "runtime.aot.System.IO": "(,4.3.32767]", + "runtime.aot.System.Reflection": "(,4.3.32767]", + "runtime.aot.System.Reflection.Extensions": "(,4.3.32767]", + "runtime.aot.System.Reflection.Primitives": "(,4.3.32767]", + "runtime.aot.System.Resources.ResourceManager": "(,4.3.32767]", + "runtime.aot.System.Runtime": "(,4.3.32767]", + "runtime.aot.System.Runtime.Handles": "(,4.3.32767]", + "runtime.aot.System.Runtime.InteropServices": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding": "(,4.3.32767]", + "runtime.aot.System.Text.Encoding.Extensions": "(,4.3.32767]", + "runtime.aot.System.Threading.Tasks": "(,4.3.32767]", + "runtime.aot.System.Threading.Timer": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.debian.9-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.27-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.fedora.28-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.opensuse.42.3-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple": "(,4.3.32767]", + "runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography": "(,4.3.32767]", + "runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Http": "(,4.3.32767]", + "runtime.ubuntu.18.04-x64.runtime.native.System.Net.Security": "(,4.3.32767]", + "runtime.unix.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.unix.System.Console": "(,4.3.32767]", + "runtime.unix.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.unix.System.IO.FileSystem": "(,4.3.32767]", + "runtime.unix.System.Net.Primitives": "(,4.3.32767]", + "runtime.unix.System.Net.Sockets": "(,4.3.32767]", + "runtime.unix.System.Private.Uri": "(,4.3.32767]", + "runtime.unix.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win.Microsoft.Win32.Primitives": "(,4.3.32767]", + "runtime.win.System.Console": "(,4.3.32767]", + "runtime.win.System.Diagnostics.Debug": "(,4.3.32767]", + "runtime.win.System.IO.FileSystem": "(,4.3.32767]", + "runtime.win.System.Net.Primitives": "(,4.3.32767]", + "runtime.win.System.Net.Sockets": "(,4.3.32767]", + "runtime.win.System.Runtime.Extensions": "(,4.3.32767]", + "runtime.win10-arm-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-arm64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win10-x64-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win10-x86-aot.runtime.native.System.IO.Compression": "(,4.0.32767]", + "runtime.win7-x64.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7-x86.runtime.native.System.IO.Compression": "(,4.3.32767]", + "runtime.win7.System.Private.Uri": "(,4.3.32767]", + "runtime.win8-arm.runtime.native.System.IO.Compression": "(,4.3.32767]", + "System.AppContext": "(,4.3.32767]", + "System.Buffers": "(,5.0.32767]", + "System.Collections": "(,4.3.32767]", + "System.Collections.Concurrent": "(,4.3.32767]", + "System.Collections.Immutable": "(,10.0.32767]", + "System.Collections.NonGeneric": "(,4.3.32767]", + "System.Collections.Specialized": "(,4.3.32767]", + "System.ComponentModel": "(,4.3.32767]", + "System.ComponentModel.Annotations": "(,4.3.32767]", + "System.ComponentModel.EventBasedAsync": "(,4.3.32767]", + "System.ComponentModel.Primitives": "(,4.3.32767]", + "System.ComponentModel.TypeConverter": "(,4.3.32767]", + "System.Console": "(,4.3.32767]", + "System.Data.Common": "(,4.3.32767]", + "System.Data.DataSetExtensions": "(,4.4.32767]", + "System.Diagnostics.Contracts": "(,4.3.32767]", + "System.Diagnostics.Debug": "(,4.3.32767]", + "System.Diagnostics.DiagnosticSource": "(,10.0.32767]", + "System.Diagnostics.FileVersionInfo": "(,4.3.32767]", + "System.Diagnostics.Process": "(,4.3.32767]", + "System.Diagnostics.StackTrace": "(,4.3.32767]", + "System.Diagnostics.TextWriterTraceListener": "(,4.3.32767]", + "System.Diagnostics.Tools": "(,4.3.32767]", + "System.Diagnostics.TraceSource": "(,4.3.32767]", + "System.Diagnostics.Tracing": "(,4.3.32767]", + "System.Drawing.Primitives": "(,4.3.32767]", + "System.Dynamic.Runtime": "(,4.3.32767]", + "System.Formats.Asn1": "(,10.0.32767]", + "System.Formats.Tar": "(,10.0.32767]", + "System.Globalization": "(,4.3.32767]", + "System.Globalization.Calendars": "(,4.3.32767]", + "System.Globalization.Extensions": "(,4.3.32767]", + "System.IO": "(,4.3.32767]", + "System.IO.Compression": "(,4.3.32767]", + "System.IO.Compression.ZipFile": "(,4.3.32767]", + "System.IO.FileSystem": "(,4.3.32767]", + "System.IO.FileSystem.AccessControl": "(,4.4.32767]", + "System.IO.FileSystem.DriveInfo": "(,4.3.32767]", + "System.IO.FileSystem.Primitives": "(,4.3.32767]", + "System.IO.FileSystem.Watcher": "(,4.3.32767]", + "System.IO.IsolatedStorage": "(,4.3.32767]", + "System.IO.MemoryMappedFiles": "(,4.3.32767]", + "System.IO.Pipelines": "(,10.0.32767]", + "System.IO.Pipes": "(,4.3.32767]", + "System.IO.Pipes.AccessControl": "(,5.0.32767]", + "System.IO.UnmanagedMemoryStream": "(,4.3.32767]", + "System.Linq": "(,4.3.32767]", + "System.Linq.AsyncEnumerable": "(,10.0.32767]", + "System.Linq.Expressions": "(,4.3.32767]", + "System.Linq.Parallel": "(,4.3.32767]", + "System.Linq.Queryable": "(,4.3.32767]", + "System.Memory": "(,5.0.32767]", + "System.Net.Http": "(,4.3.32767]", + "System.Net.Http.Json": "(,10.0.32767]", + "System.Net.NameResolution": "(,4.3.32767]", + "System.Net.NetworkInformation": "(,4.3.32767]", + "System.Net.Ping": "(,4.3.32767]", + "System.Net.Primitives": "(,4.3.32767]", + "System.Net.Requests": "(,4.3.32767]", + "System.Net.Security": "(,4.3.32767]", + "System.Net.ServerSentEvents": "(,10.0.32767]", + "System.Net.Sockets": "(,4.3.32767]", + "System.Net.WebHeaderCollection": "(,4.3.32767]", + "System.Net.WebSockets": "(,4.3.32767]", + "System.Net.WebSockets.Client": "(,4.3.32767]", + "System.Numerics.Vectors": "(,5.0.32767]", + "System.ObjectModel": "(,4.3.32767]", + "System.Private.DataContractSerialization": "(,4.3.32767]", + "System.Private.Uri": "(,4.3.32767]", + "System.Reflection": "(,4.3.32767]", + "System.Reflection.DispatchProxy": "(,6.0.32767]", + "System.Reflection.Emit": "(,4.7.32767]", + "System.Reflection.Emit.ILGeneration": "(,4.7.32767]", + "System.Reflection.Emit.Lightweight": "(,4.7.32767]", + "System.Reflection.Extensions": "(,4.3.32767]", + "System.Reflection.Metadata": "(,10.0.32767]", + "System.Reflection.Primitives": "(,4.3.32767]", + "System.Reflection.TypeExtensions": "(,4.3.32767]", + "System.Resources.Reader": "(,4.3.32767]", + "System.Resources.ResourceManager": "(,4.3.32767]", + "System.Resources.Writer": "(,4.3.32767]", + "System.Runtime": "(,4.3.32767]", + "System.Runtime.CompilerServices.Unsafe": "(,7.0.32767]", + "System.Runtime.CompilerServices.VisualC": "(,4.3.32767]", + "System.Runtime.Extensions": "(,4.3.32767]", + "System.Runtime.Handles": "(,4.3.32767]", + "System.Runtime.InteropServices": "(,4.3.32767]", + "System.Runtime.InteropServices.RuntimeInformation": "(,4.3.32767]", + "System.Runtime.Loader": "(,4.3.32767]", + "System.Runtime.Numerics": "(,4.3.32767]", + "System.Runtime.Serialization.Formatters": "(,4.3.32767]", + "System.Runtime.Serialization.Json": "(,4.3.32767]", + "System.Runtime.Serialization.Primitives": "(,4.3.32767]", + "System.Runtime.Serialization.Xml": "(,4.3.32767]", + "System.Security.AccessControl": "(,6.0.32767]", + "System.Security.Claims": "(,4.3.32767]", + "System.Security.Cryptography.Algorithms": "(,4.3.32767]", + "System.Security.Cryptography.Cng": "(,5.0.32767]", + "System.Security.Cryptography.Csp": "(,4.3.32767]", + "System.Security.Cryptography.Encoding": "(,4.3.32767]", + "System.Security.Cryptography.OpenSsl": "(,5.0.32767]", + "System.Security.Cryptography.Primitives": "(,4.3.32767]", + "System.Security.Cryptography.X509Certificates": "(,4.3.32767]", + "System.Security.Principal": "(,4.3.32767]", + "System.Security.Principal.Windows": "(,5.0.32767]", + "System.Security.SecureString": "(,4.3.32767]", + "System.Text.Encoding": "(,4.3.32767]", + "System.Text.Encoding.CodePages": "(,10.0.32767]", + "System.Text.Encoding.Extensions": "(,4.3.32767]", + "System.Text.Encodings.Web": "(,10.0.32767]", + "System.Text.Json": "(,10.0.32767]", + "System.Text.RegularExpressions": "(,4.3.32767]", + "System.Threading": "(,4.3.32767]", + "System.Threading.AccessControl": "(,10.0.32767]", + "System.Threading.Channels": "(,10.0.32767]", + "System.Threading.Overlapped": "(,4.3.32767]", + "System.Threading.Tasks": "(,4.3.32767]", + "System.Threading.Tasks.Dataflow": "(,10.0.32767]", + "System.Threading.Tasks.Extensions": "(,5.0.32767]", + "System.Threading.Tasks.Parallel": "(,4.3.32767]", + "System.Threading.Thread": "(,4.3.32767]", + "System.Threading.ThreadPool": "(,4.3.32767]", + "System.Threading.Timer": "(,4.3.32767]", + "System.ValueTuple": "(,4.5.32767]", + "System.Xml.ReaderWriter": "(,4.3.32767]", + "System.Xml.XDocument": "(,4.3.32767]", + "System.Xml.XmlDocument": "(,4.3.32767]", + "System.Xml.XmlSerializer": "(,4.3.32767]", + "System.Xml.XPath": "(,4.3.32767]", + "System.Xml.XPath.XDocument": "(,5.0.32767]" + } + } + } + } +} \ No newline at end of file diff --git a/Auth.Domain/obj/project.nuget.cache b/Auth.Domain/obj/project.nuget.cache new file mode 100644 index 0000000..c5f2232 --- /dev/null +++ b/Auth.Domain/obj/project.nuget.cache @@ -0,0 +1,64 @@ +{ + "version": 2, + "dgSpecHash": "kDqQReYbKCY=", + "success": true, + "projectFilePath": "/mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Domain/Auth.Domain.csproj", + "expectedPackageFiles": [ + "/home/yla/.nuget/packages/bogus/35.6.3/bogus.35.6.3.nupkg.sha512", + "/home/yla/.nuget/packages/humanizer.core/2.14.1/humanizer.core.2.14.1.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.cryptography.internal/10.0.0/microsoft.aspnetcore.cryptography.internal.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.cryptography.keyderivation/10.0.0/microsoft.aspnetcore.cryptography.keyderivation.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.aspnetcore.identity.entityframeworkcore/10.0.0/microsoft.aspnetcore.identity.entityframeworkcore.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.build/17.7.2/microsoft.build.17.7.2.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.build.framework/17.14.28/microsoft.build.framework.17.14.28.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.build.tasks.core/17.14.28/microsoft.build.tasks.core.17.14.28.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.build.utilities.core/17.14.28/microsoft.build.utilities.core.17.14.28.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.codeanalysis.analyzers/3.11.0/microsoft.codeanalysis.analyzers.3.11.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.codeanalysis.common/4.14.0/microsoft.codeanalysis.common.4.14.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.codeanalysis.csharp/4.14.0/microsoft.codeanalysis.csharp.4.14.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.codeanalysis.csharp.workspaces/4.14.0/microsoft.codeanalysis.csharp.workspaces.4.14.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.codeanalysis.workspaces.common/4.14.0/microsoft.codeanalysis.workspaces.common.4.14.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.codeanalysis.workspaces.msbuild/4.14.0/microsoft.codeanalysis.workspaces.msbuild.4.14.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.entityframeworkcore/10.0.0/microsoft.entityframeworkcore.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.entityframeworkcore.abstractions/10.0.0/microsoft.entityframeworkcore.abstractions.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.entityframeworkcore.analyzers/10.0.0/microsoft.entityframeworkcore.analyzers.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.entityframeworkcore.design/10.0.0/microsoft.entityframeworkcore.design.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.entityframeworkcore.relational/10.0.0/microsoft.entityframeworkcore.relational.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.entityframeworkcore.tools/10.0.0/microsoft.entityframeworkcore.tools.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.caching.abstractions/10.0.0/microsoft.extensions.caching.abstractions.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.caching.memory/10.0.0/microsoft.extensions.caching.memory.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.configuration.abstractions/10.0.0/microsoft.extensions.configuration.abstractions.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.dependencyinjection/10.0.0/microsoft.extensions.dependencyinjection.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.dependencyinjection.abstractions/10.0.0/microsoft.extensions.dependencyinjection.abstractions.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.dependencymodel/10.0.0/microsoft.extensions.dependencymodel.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.identity.core/10.0.0/microsoft.extensions.identity.core.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.identity.stores/10.0.0/microsoft.extensions.identity.stores.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.logging/10.0.0/microsoft.extensions.logging.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.logging.abstractions/10.0.0/microsoft.extensions.logging.abstractions.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.options/10.0.0/microsoft.extensions.options.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.extensions.primitives/10.0.0/microsoft.extensions.primitives.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.net.stringtools/17.14.28/microsoft.net.stringtools.17.14.28.nupkg.sha512", + "/home/yla/.nuget/packages/mono.texttemplating/3.0.0/mono.texttemplating.3.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/newtonsoft.json/13.0.3/newtonsoft.json.13.0.3.nupkg.sha512", + "/home/yla/.nuget/packages/npgsql/10.0.0/npgsql.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/npgsql.entityframeworkcore.postgresql/10.0.0/npgsql.entityframeworkcore.postgresql.10.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.codedom/9.0.0/system.codedom.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.composition/9.0.0/system.composition.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.composition.attributedmodel/9.0.0/system.composition.attributedmodel.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.composition.convention/9.0.0/system.composition.convention.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.composition.hosting/9.0.0/system.composition.hosting.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.composition.runtime/9.0.0/system.composition.runtime.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.composition.typedparts/9.0.0/system.composition.typedparts.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.configuration.configurationmanager/9.0.0/system.configuration.configurationmanager.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.diagnostics.eventlog/9.0.0/system.diagnostics.eventlog.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.formats.nrbf/9.0.0/system.formats.nrbf.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.reflection.metadataloadcontext/7.0.0/system.reflection.metadataloadcontext.7.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.resources.extensions/9.0.0/system.resources.extensions.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.security.cryptography.pkcs/9.0.0/system.security.cryptography.pkcs.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.security.cryptography.protecteddata/9.0.0/system.security.cryptography.protecteddata.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.security.cryptography.xml/9.0.0/system.security.cryptography.xml.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.security.permissions/9.0.0/system.security.permissions.9.0.0.nupkg.sha512", + "/home/yla/.nuget/packages/system.windows.extensions/9.0.0/system.windows.extensions.9.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Auth.Test/Auth.Test.csproj b/Auth.Test/Auth.Test.csproj new file mode 100644 index 0000000..42871e5 --- /dev/null +++ b/Auth.Test/Auth.Test.csproj @@ -0,0 +1,26 @@ + + + + net9.0 + enable + enable + false + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Auth.Test/UnitTest1.cs b/Auth.Test/UnitTest1.cs new file mode 100644 index 0000000..c74e7ac --- /dev/null +++ b/Auth.Test/UnitTest1.cs @@ -0,0 +1,10 @@ +namespace Auth.Test; + +public class UnitTest1 +{ + [Fact] + public void Test1() + { + + } +} diff --git a/Auth.Test/bin/Debug/net10.0/.msCoverageSourceRootsMapping_Auth.Test b/Auth.Test/bin/Debug/net10.0/.msCoverageSourceRootsMapping_Auth.Test new file mode 100644 index 0000000..a2bf60e Binary files /dev/null and b/Auth.Test/bin/Debug/net10.0/.msCoverageSourceRootsMapping_Auth.Test differ diff --git a/Auth.Test/bin/Debug/net10.0/CoverletSourceRootsMapping_Auth.Test b/Auth.Test/bin/Debug/net10.0/CoverletSourceRootsMapping_Auth.Test new file mode 100644 index 0000000..a2bf60e Binary files /dev/null and b/Auth.Test/bin/Debug/net10.0/CoverletSourceRootsMapping_Auth.Test differ diff --git a/Auth.Test/bin/Debug/net9.0/.msCoverageSourceRootsMapping_Auth.Test b/Auth.Test/bin/Debug/net9.0/.msCoverageSourceRootsMapping_Auth.Test new file mode 100644 index 0000000..acd1974 Binary files /dev/null and b/Auth.Test/bin/Debug/net9.0/.msCoverageSourceRootsMapping_Auth.Test differ diff --git a/Auth.Test/bin/Debug/net9.0/CoverletSourceRootsMapping_Auth.Test b/Auth.Test/bin/Debug/net9.0/CoverletSourceRootsMapping_Auth.Test new file mode 100644 index 0000000..acd1974 Binary files /dev/null and b/Auth.Test/bin/Debug/net9.0/CoverletSourceRootsMapping_Auth.Test differ diff --git a/Auth.Test/obj/Auth.Test.csproj.nuget.dgspec.json b/Auth.Test/obj/Auth.Test.csproj.nuget.dgspec.json new file mode 100644 index 0000000..874177e --- /dev/null +++ b/Auth.Test/obj/Auth.Test.csproj.nuget.dgspec.json @@ -0,0 +1,86 @@ +{ + "format": 1, + "restore": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Test/Auth.Test.csproj": {} + }, + "projects": { + "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Test/Auth.Test.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Test/Auth.Test.csproj", + "projectName": "Auth.Test", + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Test/Auth.Test.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Test/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[17.12.0, )" + }, + "coverlet.collector": { + "target": "Package", + "version": "[6.0.2, )" + }, + "xunit": { + "target": "Package", + "version": "[2.9.2, )" + }, + "xunit.runner.visualstudio": { + "target": "Package", + "version": "[2.8.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/Auth.Test/obj/Auth.Test.csproj.nuget.g.props b/Auth.Test/obj/Auth.Test.csproj.nuget.g.props new file mode 100644 index 0000000..bd80f77 --- /dev/null +++ b/Auth.Test/obj/Auth.Test.csproj.nuget.g.props @@ -0,0 +1,25 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + /home/yla/.nuget/packages/ + /home/yla/.nuget/packages/ + PackageReference + 6.14.0 + + + + + + + + + + + + + /home/yla/.nuget/packages/xunit.analyzers/1.16.0 + + \ No newline at end of file diff --git a/Auth.Test/obj/Auth.Test.csproj.nuget.g.targets b/Auth.Test/obj/Auth.Test.csproj.nuget.g.targets new file mode 100644 index 0000000..3f7a360 --- /dev/null +++ b/Auth.Test/obj/Auth.Test.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/Auth.Test/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs b/Auth.Test/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs new file mode 100644 index 0000000..925b135 --- /dev/null +++ b/Auth.Test/obj/Debug/net10.0/.NETCoreApp,Version=v10.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v10.0", FrameworkDisplayName = ".NET 10.0")] diff --git a/Auth.Test/obj/Debug/net10.0/Auth.Test.AssemblyInfo.cs b/Auth.Test/obj/Debug/net10.0/Auth.Test.AssemblyInfo.cs new file mode 100644 index 0000000..8e2a3e1 --- /dev/null +++ b/Auth.Test/obj/Debug/net10.0/Auth.Test.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Auth.Test")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Auth.Test")] +[assembly: System.Reflection.AssemblyTitleAttribute("Auth.Test")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.Test/obj/Debug/net10.0/Auth.Test.AssemblyInfoInputs.cache b/Auth.Test/obj/Debug/net10.0/Auth.Test.AssemblyInfoInputs.cache new file mode 100644 index 0000000..79b8c90 --- /dev/null +++ b/Auth.Test/obj/Debug/net10.0/Auth.Test.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +a871f0fe9d629b931b049eeafa777419be8b19950955f9e98c8350b096fd0ae9 diff --git a/Auth.Test/obj/Debug/net10.0/Auth.Test.GeneratedMSBuildEditorConfig.editorconfig b/Auth.Test/obj/Debug/net10.0/Auth.Test.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..25023ec --- /dev/null +++ b/Auth.Test/obj/Debug/net10.0/Auth.Test.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net10.0 +build_property.TargetFrameworkIdentifier = .NETCoreApp +build_property.TargetFrameworkVersion = v10.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Auth.Test +build_property.ProjectDir = /mnt/data/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Test/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 10.0 +build_property.EnableCodeStyleSeverity = diff --git a/Auth.Test/obj/Debug/net10.0/Auth.Test.GlobalUsings.g.cs b/Auth.Test/obj/Debug/net10.0/Auth.Test.GlobalUsings.g.cs new file mode 100644 index 0000000..fe43752 --- /dev/null +++ b/Auth.Test/obj/Debug/net10.0/Auth.Test.GlobalUsings.g.cs @@ -0,0 +1,9 @@ +// +global using System; +global using System.Collections.Generic; +global using System.IO; +global using System.Linq; +global using System.Net.Http; +global using System.Threading; +global using System.Threading.Tasks; +global using Xunit; diff --git a/Auth.Test/obj/Debug/net10.0/Auth.Test.csproj.AssemblyReference.cache b/Auth.Test/obj/Debug/net10.0/Auth.Test.csproj.AssemblyReference.cache new file mode 100644 index 0000000..c8ca840 Binary files /dev/null and b/Auth.Test/obj/Debug/net10.0/Auth.Test.csproj.AssemblyReference.cache differ diff --git a/Auth.Test/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs b/Auth.Test/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs new file mode 100644 index 0000000..9e76325 --- /dev/null +++ b/Auth.Test/obj/Debug/net9.0/.NETCoreApp,Version=v9.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v9.0", FrameworkDisplayName = ".NET 9.0")] diff --git a/Auth.Test/obj/Debug/net9.0/Auth.Test.AssemblyInfo.cs b/Auth.Test/obj/Debug/net9.0/Auth.Test.AssemblyInfo.cs new file mode 100644 index 0000000..8e2a3e1 --- /dev/null +++ b/Auth.Test/obj/Debug/net9.0/Auth.Test.AssemblyInfo.cs @@ -0,0 +1,22 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: System.Reflection.AssemblyCompanyAttribute("Auth.Test")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("Auth.Test")] +[assembly: System.Reflection.AssemblyTitleAttribute("Auth.Test")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// Generated by the MSBuild WriteCodeFragment class. + diff --git a/Auth.Test/obj/Debug/net9.0/Auth.Test.AssemblyInfoInputs.cache b/Auth.Test/obj/Debug/net9.0/Auth.Test.AssemblyInfoInputs.cache new file mode 100644 index 0000000..79b8c90 --- /dev/null +++ b/Auth.Test/obj/Debug/net9.0/Auth.Test.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +a871f0fe9d629b931b049eeafa777419be8b19950955f9e98c8350b096fd0ae9 diff --git a/Auth.Test/obj/Debug/net9.0/Auth.Test.GeneratedMSBuildEditorConfig.editorconfig b/Auth.Test/obj/Debug/net9.0/Auth.Test.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..2878cd3 --- /dev/null +++ b/Auth.Test/obj/Debug/net9.0/Auth.Test.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,15 @@ +is_global = true +build_property.TargetFramework = net9.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = Auth.Test +build_property.ProjectDir = /mnt/Dataa/Work/Programming/MainProgram/Backend/APIs/Auth/Auth.Test/ +build_property.EnableComHosting = +build_property.EnableGeneratedComInterfaceComImportInterop = +build_property.EffectiveAnalysisLevelStyle = 9.0 +build_property.EnableCodeStyleSeverity = diff --git a/Auth.Test/obj/Debug/net9.0/Auth.Test.GlobalUsings.g.cs b/Auth.Test/obj/Debug/net9.0/Auth.Test.GlobalUsings.g.cs new file mode 100644 index 0000000..2cd3d38 --- /dev/null +++ b/Auth.Test/obj/Debug/net9.0/Auth.Test.GlobalUsings.g.cs @@ -0,0 +1,9 @@ +// +global using global::System; +global using global::System.Collections.Generic; +global using global::System.IO; +global using global::System.Linq; +global using global::System.Net.Http; +global using global::System.Threading; +global using global::System.Threading.Tasks; +global using global::Xunit; diff --git a/Auth.Test/obj/Debug/net9.0/Auth.Test.assets.cache b/Auth.Test/obj/Debug/net9.0/Auth.Test.assets.cache new file mode 100644 index 0000000..66dd3ed Binary files /dev/null and b/Auth.Test/obj/Debug/net9.0/Auth.Test.assets.cache differ diff --git a/Auth.Test/obj/Debug/net9.0/Auth.Test.csproj.AssemblyReference.cache b/Auth.Test/obj/Debug/net9.0/Auth.Test.csproj.AssemblyReference.cache new file mode 100644 index 0000000..16c3a69 Binary files /dev/null and b/Auth.Test/obj/Debug/net9.0/Auth.Test.csproj.AssemblyReference.cache differ diff --git a/Auth.Test/obj/project.assets.json b/Auth.Test/obj/project.assets.json new file mode 100644 index 0000000..9f34cab --- /dev/null +++ b/Auth.Test/obj/project.assets.json @@ -0,0 +1,1026 @@ +{ + "version": 3, + "targets": { + "net9.0": { + "coverlet.collector/6.0.2": { + "type": "package", + "build": { + "build/netstandard2.0/coverlet.collector.targets": {} + } + }, + "Microsoft.CodeCoverage/17.12.0": { + "type": "package", + "compile": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll": {} + }, + "build": { + "build/netstandard2.0/Microsoft.CodeCoverage.props": {}, + "build/netstandard2.0/Microsoft.CodeCoverage.targets": {} + } + }, + "Microsoft.NET.Test.Sdk/17.12.0": { + "type": "package", + "dependencies": { + "Microsoft.CodeCoverage": "17.12.0", + "Microsoft.TestPlatform.TestHost": "17.12.0" + }, + "compile": { + "lib/netcoreapp3.1/_._": {} + }, + "runtime": { + "lib/netcoreapp3.1/_._": {} + }, + "build": { + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props": {}, + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props": {} + } + }, + "Microsoft.TestPlatform.ObjectModel/17.12.0": { + "type": "package", + "dependencies": { + "System.Reflection.Metadata": "1.6.0" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {} + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll": { + "locale": "zh-Hant" + } + } + }, + "Microsoft.TestPlatform.TestHost/17.12.0": { + "type": "package", + "dependencies": { + "Microsoft.TestPlatform.ObjectModel": "17.12.0", + "Newtonsoft.Json": "13.0.1" + }, + "compile": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp3.1/testhost.dll": { + "related": ".deps.json" + } + }, + "runtime": { + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll": {}, + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll": {}, + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll": {}, + "lib/netcoreapp3.1/testhost.dll": { + "related": ".deps.json" + } + }, + "resource": { + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "cs" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "de" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "es" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "fr" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "it" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ja" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ko" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pl" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "pt-BR" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "ru" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "tr" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hans" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll": { + "locale": "zh-Hant" + }, + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll": { + "locale": "zh-Hant" + } + }, + "build": { + "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props": {} + } + }, + "Newtonsoft.Json/13.0.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Newtonsoft.Json.dll": { + "related": ".xml" + } + } + }, + "System.Reflection.Metadata/1.6.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.Reflection.Metadata.dll": { + "related": ".xml" + } + } + }, + "xunit/2.9.2": { + "type": "package", + "dependencies": { + "xunit.analyzers": "1.16.0", + "xunit.assert": "2.9.2", + "xunit.core": "[2.9.2]" + } + }, + "xunit.abstractions/2.0.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/xunit.abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/xunit.abstractions.dll": { + "related": ".xml" + } + } + }, + "xunit.analyzers/1.16.0": { + "type": "package" + }, + "xunit.assert/2.9.2": { + "type": "package", + "compile": { + "lib/net6.0/xunit.assert.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/xunit.assert.dll": { + "related": ".xml" + } + } + }, + "xunit.core/2.9.2": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.9.2]", + "xunit.extensibility.execution": "[2.9.2]" + }, + "build": { + "build/xunit.core.props": {}, + "build/xunit.core.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/xunit.core.props": {}, + "buildMultiTargeting/xunit.core.targets": {} + } + }, + "xunit.extensibility.core/2.9.2": { + "type": "package", + "dependencies": { + "xunit.abstractions": "2.0.3" + }, + "compile": { + "lib/netstandard1.1/xunit.core.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.1/xunit.core.dll": { + "related": ".xml" + } + } + }, + "xunit.extensibility.execution/2.9.2": { + "type": "package", + "dependencies": { + "xunit.extensibility.core": "[2.9.2]" + }, + "compile": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard1.1/xunit.execution.dotnet.dll": { + "related": ".xml" + } + } + }, + "xunit.runner.visualstudio/2.8.2": { + "type": "package", + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + }, + "build": { + "build/net6.0/xunit.runner.visualstudio.props": {} + } + } + } + }, + "libraries": { + "coverlet.collector/6.0.2": { + "sha512": "bJShQ6uWRTQ100ZeyiMqcFlhP7WJ+bCuabUs885dJiBEzMsJMSFr7BOyeCw4rgvQokteGi5rKQTlkhfQPUXg2A==", + "type": "package", + "path": "coverlet.collector/6.0.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "VSTestIntegration.md", + "build/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.dll", + "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "build/netstandard2.0/Microsoft.Extensions.DependencyInjection.dll", + "build/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "build/netstandard2.0/Microsoft.Extensions.FileSystemGlobbing.dll", + "build/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", + "build/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "build/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "build/netstandard2.0/Mono.Cecil.Mdb.dll", + "build/netstandard2.0/Mono.Cecil.Pdb.dll", + "build/netstandard2.0/Mono.Cecil.Rocks.dll", + "build/netstandard2.0/Mono.Cecil.dll", + "build/netstandard2.0/Newtonsoft.Json.dll", + "build/netstandard2.0/NuGet.Frameworks.dll", + "build/netstandard2.0/NuGet.Versioning.dll", + "build/netstandard2.0/System.Buffers.dll", + "build/netstandard2.0/System.Collections.Immutable.dll", + "build/netstandard2.0/System.Memory.dll", + "build/netstandard2.0/System.Numerics.Vectors.dll", + "build/netstandard2.0/System.Reflection.Metadata.dll", + "build/netstandard2.0/System.Runtime.CompilerServices.Unsafe.dll", + "build/netstandard2.0/System.Text.Encodings.Web.dll", + "build/netstandard2.0/System.Text.Json.dll", + "build/netstandard2.0/System.Threading.Tasks.Extensions.dll", + "build/netstandard2.0/coverlet.collector.deps.json", + "build/netstandard2.0/coverlet.collector.dll", + "build/netstandard2.0/coverlet.collector.pdb", + "build/netstandard2.0/coverlet.collector.targets", + "build/netstandard2.0/coverlet.core.dll", + "build/netstandard2.0/coverlet.core.pdb", + "build/netstandard2.0/coverlet.core.xml", + "build/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "coverlet-icon.png", + "coverlet.collector.6.0.2.nupkg.sha512", + "coverlet.collector.nuspec" + ] + }, + "Microsoft.CodeCoverage/17.12.0": { + "sha512": "4svMznBd5JM21JIG2xZKGNanAHNXplxf/kQDFfLHXQ3OnpJkayRK/TjacFjA+EYmoyuNXHo/sOETEfcYtAzIrA==", + "type": "package", + "path": "microsoft.codecoverage/17.12.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.txt", + "build/netstandard2.0/CodeCoverage/CodeCoverage.config", + "build/netstandard2.0/CodeCoverage/CodeCoverage.exe", + "build/netstandard2.0/CodeCoverage/Cov_x86.config", + "build/netstandard2.0/CodeCoverage/amd64/CodeCoverage.exe", + "build/netstandard2.0/CodeCoverage/amd64/Cov_x64.config", + "build/netstandard2.0/CodeCoverage/amd64/covrun64.dll", + "build/netstandard2.0/CodeCoverage/amd64/msdia140.dll", + "build/netstandard2.0/CodeCoverage/arm64/Cov_arm64.config", + "build/netstandard2.0/CodeCoverage/arm64/covrunarm64.dll", + "build/netstandard2.0/CodeCoverage/arm64/msdia140.dll", + "build/netstandard2.0/CodeCoverage/codecoveragemessages.dll", + "build/netstandard2.0/CodeCoverage/coreclr/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "build/netstandard2.0/CodeCoverage/covrun32.dll", + "build/netstandard2.0/CodeCoverage/msdia140.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Core.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.Core.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Instrumentation.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.Interprocess.dll", + "build/netstandard2.0/Microsoft.CodeCoverage.props", + "build/netstandard2.0/Microsoft.CodeCoverage.targets", + "build/netstandard2.0/Microsoft.DiaSymReader.dll", + "build/netstandard2.0/Microsoft.VisualStudio.TraceDataCollector.dll", + "build/netstandard2.0/Mono.Cecil.Pdb.dll", + "build/netstandard2.0/Mono.Cecil.Rocks.dll", + "build/netstandard2.0/Mono.Cecil.dll", + "build/netstandard2.0/ThirdPartyNotices.txt", + "build/netstandard2.0/alpine/x64/Cov_x64.config", + "build/netstandard2.0/alpine/x64/libCoverageInstrumentationMethod.so", + "build/netstandard2.0/alpine/x64/libInstrumentationEngine.so", + "build/netstandard2.0/arm64/MicrosoftInstrumentationEngine_arm64.dll", + "build/netstandard2.0/cs/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/de/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/es/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/fr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/it/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ja/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ko/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/macos/x64/Cov_x64.config", + "build/netstandard2.0/macos/x64/libCoverageInstrumentationMethod.dylib", + "build/netstandard2.0/macos/x64/libInstrumentationEngine.dylib", + "build/netstandard2.0/pl/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/pt-BR/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ru/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/tr/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/ubuntu/x64/Cov_x64.config", + "build/netstandard2.0/ubuntu/x64/libCoverageInstrumentationMethod.so", + "build/netstandard2.0/ubuntu/x64/libInstrumentationEngine.so", + "build/netstandard2.0/x64/MicrosoftInstrumentationEngine_x64.dll", + "build/netstandard2.0/x86/MicrosoftInstrumentationEngine_x86.dll", + "build/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "build/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TraceDataCollector.resources.dll", + "lib/net462/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.CodeCoverage.Shim.dll", + "microsoft.codecoverage.17.12.0.nupkg.sha512", + "microsoft.codecoverage.nuspec" + ] + }, + "Microsoft.NET.Test.Sdk/17.12.0": { + "sha512": "kt/PKBZ91rFCWxVIJZSgVLk+YR+4KxTuHf799ho8WNiK5ZQpJNAEZCAWX86vcKrs+DiYjiibpYKdGZP6+/N17w==", + "type": "package", + "path": "microsoft.net.test.sdk/17.12.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/net462/Microsoft.NET.Test.Sdk.props", + "build/net462/Microsoft.NET.Test.Sdk.targets", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.cs", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.fs", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.Program.vb", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.props", + "build/netcoreapp3.1/Microsoft.NET.Test.Sdk.targets", + "buildMultiTargeting/Microsoft.NET.Test.Sdk.props", + "lib/net462/_._", + "lib/netcoreapp3.1/_._", + "microsoft.net.test.sdk.17.12.0.nupkg.sha512", + "microsoft.net.test.sdk.nuspec" + ] + }, + "Microsoft.TestPlatform.ObjectModel/17.12.0": { + "sha512": "TDqkTKLfQuAaPcEb3pDDWnh7b3SyZF+/W9OZvWFp6eJCIiiYFdSB6taE2I6tWrFw5ywhzOb6sreoGJTI6m3rSQ==", + "type": "package", + "path": "microsoft.testplatform.objectmodel/17.12.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net462/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/net462/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/net462/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/net462/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/net462/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/net462/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netstandard2.0/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netstandard2.0/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netstandard2.0/cs/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/cs/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/de/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/de/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/es/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/es/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/fr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/fr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/it/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/it/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ja/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ja/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ko/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ko/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pl/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pl/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/pt-BR/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/ru/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/ru/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/tr/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/tr/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hans/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.TestPlatform.CoreUtilities.resources.dll", + "lib/netstandard2.0/zh-Hant/Microsoft.VisualStudio.TestPlatform.ObjectModel.resources.dll", + "microsoft.testplatform.objectmodel.17.12.0.nupkg.sha512", + "microsoft.testplatform.objectmodel.nuspec" + ] + }, + "Microsoft.TestPlatform.TestHost/17.12.0": { + "sha512": "MiPEJQNyADfwZ4pJNpQex+t9/jOClBGMiCiVVFuELCMSX2nmNfvUor3uFVxNNCg30uxDP8JDYfPnMXQzsfzYyg==", + "type": "package", + "path": "microsoft.testplatform.testhost/17.12.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "ThirdPartyNotices.txt", + "build/netcoreapp3.1/Microsoft.TestPlatform.TestHost.props", + "build/netcoreapp3.1/x64/testhost.dll", + "build/netcoreapp3.1/x64/testhost.exe", + "build/netcoreapp3.1/x86/testhost.x86.dll", + "build/netcoreapp3.1/x86/testhost.x86.exe", + "lib/net462/_._", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CommunicationUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CoreUtilities.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.CrossPlatEngine.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.PlatformAbstractions.dll", + "lib/netcoreapp3.1/Microsoft.TestPlatform.Utilities.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.Common.dll", + "lib/netcoreapp3.1/Microsoft.VisualStudio.TestPlatform.ObjectModel.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/cs/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/de/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/es/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/fr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/it/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ja/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ko/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/pl/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/pt-BR/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/ru/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/testhost.deps.json", + "lib/netcoreapp3.1/testhost.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/tr/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/x64/msdia140.dll", + "lib/netcoreapp3.1/x86/msdia140.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/zh-Hans/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CommunicationUtilities.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.TestPlatform.CrossPlatEngine.resources.dll", + "lib/netcoreapp3.1/zh-Hant/Microsoft.VisualStudio.TestPlatform.Common.resources.dll", + "microsoft.testplatform.testhost.17.12.0.nupkg.sha512", + "microsoft.testplatform.testhost.nuspec" + ] + }, + "Newtonsoft.Json/13.0.1": { + "sha512": "ppPFpBcvxdsfUonNcvITKqLl3bqxWbDCZIzDWHzjpdAHRFfZe0Dw9HmA0+za13IdyrgJwpkDTDA9fHaxOrt20A==", + "type": "package", + "path": "newtonsoft.json/13.0.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.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/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.1.nupkg.sha512", + "newtonsoft.json.nuspec", + "packageIcon.png" + ] + }, + "System.Reflection.Metadata/1.6.0": { + "sha512": "COC1aiAJjCoA5GBF+QKL2uLqEBew4JsCkQmoHKbN3TlOZKa2fKLz5CpiRQKDz0RsAOEGsVKqOD5bomsXq/4STQ==", + "type": "package", + "path": "system.reflection.metadata/1.6.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netstandard1.1/System.Reflection.Metadata.dll", + "lib/netstandard1.1/System.Reflection.Metadata.xml", + "lib/netstandard2.0/System.Reflection.Metadata.dll", + "lib/netstandard2.0/System.Reflection.Metadata.xml", + "lib/portable-net45+win8/System.Reflection.Metadata.dll", + "lib/portable-net45+win8/System.Reflection.Metadata.xml", + "system.reflection.metadata.1.6.0.nupkg.sha512", + "system.reflection.metadata.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "xunit/2.9.2": { + "sha512": "7LhFS2N9Z6Xgg8aE5lY95cneYivRMfRI8v+4PATa4S64D5Z/Plkg0qa8dTRHSiGRgVZ/CL2gEfJDE5AUhOX+2Q==", + "type": "package", + "path": "xunit/2.9.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "xunit.2.9.2.nupkg.sha512", + "xunit.nuspec" + ] + }, + "xunit.abstractions/2.0.3": { + "sha512": "pot1I4YOxlWjIb5jmwvvQNbTrZ3lJQ+jUGkGjWE3hEFM0l5gOnBWS+H3qsex68s5cO52g+44vpGzhAt+42vwKg==", + "type": "package", + "path": "xunit.abstractions/2.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net35/xunit.abstractions.dll", + "lib/net35/xunit.abstractions.xml", + "lib/netstandard1.0/xunit.abstractions.dll", + "lib/netstandard1.0/xunit.abstractions.xml", + "lib/netstandard2.0/xunit.abstractions.dll", + "lib/netstandard2.0/xunit.abstractions.xml", + "xunit.abstractions.2.0.3.nupkg.sha512", + "xunit.abstractions.nuspec" + ] + }, + "xunit.analyzers/1.16.0": { + "sha512": "hptYM7vGr46GUIgZt21YHO4rfuBAQS2eINbFo16CV/Dqq+24Tp+P5gDCACu1AbFfW4Sp/WRfDPSK8fmUUb8s0Q==", + "type": "package", + "path": "xunit.analyzers/1.16.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "analyzers/dotnet/cs/xunit.analyzers.dll", + "analyzers/dotnet/cs/xunit.analyzers.fixes.dll", + "tools/install.ps1", + "tools/uninstall.ps1", + "xunit.analyzers.1.16.0.nupkg.sha512", + "xunit.analyzers.nuspec" + ] + }, + "xunit.assert/2.9.2": { + "sha512": "QkNBAQG4pa66cholm28AxijBjrmki98/vsEh4Sx5iplzotvPgpiotcxqJQMRC8d7RV7nIT8ozh97957hDnZwsQ==", + "type": "package", + "path": "xunit.assert/2.9.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "lib/net6.0/xunit.assert.dll", + "lib/net6.0/xunit.assert.xml", + "lib/netstandard1.1/xunit.assert.dll", + "lib/netstandard1.1/xunit.assert.xml", + "xunit.assert.2.9.2.nupkg.sha512", + "xunit.assert.nuspec" + ] + }, + "xunit.core/2.9.2": { + "sha512": "O6RrNSdmZ0xgEn5kT927PNwog5vxTtKrWMihhhrT0Sg9jQ7iBDciYOwzBgP2krBEk5/GBXI18R1lKvmnxGcb4w==", + "type": "package", + "path": "xunit.core/2.9.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "build/xunit.core.props", + "build/xunit.core.targets", + "buildMultiTargeting/xunit.core.props", + "buildMultiTargeting/xunit.core.targets", + "xunit.core.2.9.2.nupkg.sha512", + "xunit.core.nuspec" + ] + }, + "xunit.extensibility.core/2.9.2": { + "sha512": "Ol+KlBJz1x8BrdnhN2DeOuLrr1I/cTwtHCggL9BvYqFuVd/TUSzxNT5O0NxCIXth30bsKxgMfdqLTcORtM52yQ==", + "type": "package", + "path": "xunit.extensibility.core/2.9.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "lib/net452/xunit.core.dll", + "lib/net452/xunit.core.dll.tdnet", + "lib/net452/xunit.core.xml", + "lib/net452/xunit.runner.tdnet.dll", + "lib/net452/xunit.runner.utility.net452.dll", + "lib/netstandard1.1/xunit.core.dll", + "lib/netstandard1.1/xunit.core.xml", + "xunit.extensibility.core.2.9.2.nupkg.sha512", + "xunit.extensibility.core.nuspec" + ] + }, + "xunit.extensibility.execution/2.9.2": { + "sha512": "rKMpq4GsIUIJibXuZoZ8lYp5EpROlnYaRpwu9Zr0sRZXE7JqJfEEbCsUriZqB+ByXCLFBJyjkTRULMdC+U566g==", + "type": "package", + "path": "xunit.extensibility.execution/2.9.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "lib/net452/xunit.execution.desktop.dll", + "lib/net452/xunit.execution.desktop.xml", + "lib/netstandard1.1/xunit.execution.dotnet.dll", + "lib/netstandard1.1/xunit.execution.dotnet.xml", + "xunit.extensibility.execution.2.9.2.nupkg.sha512", + "xunit.extensibility.execution.nuspec" + ] + }, + "xunit.runner.visualstudio/2.8.2": { + "sha512": "vm1tbfXhFmjFMUmS4M0J0ASXz3/U5XvXBa6DOQUL3fEz4Vt6YPhv+ESCarx6M6D+9kJkJYZKCNvJMas1+nVfmQ==", + "type": "package", + "path": "xunit.runner.visualstudio/2.8.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "_content/README.md", + "_content/logo-128-transparent.png", + "build/net462/xunit.abstractions.dll", + "build/net462/xunit.runner.reporters.net452.dll", + "build/net462/xunit.runner.utility.net452.dll", + "build/net462/xunit.runner.visualstudio.props", + "build/net462/xunit.runner.visualstudio.testadapter.dll", + "build/net6.0/xunit.abstractions.dll", + "build/net6.0/xunit.runner.reporters.netcoreapp10.dll", + "build/net6.0/xunit.runner.utility.netcoreapp10.dll", + "build/net6.0/xunit.runner.visualstudio.props", + "build/net6.0/xunit.runner.visualstudio.testadapter.dll", + "lib/net462/_._", + "lib/net6.0/_._", + "xunit.runner.visualstudio.2.8.2.nupkg.sha512", + "xunit.runner.visualstudio.nuspec" + ] + } + }, + "projectFileDependencyGroups": { + "net9.0": [ + "Microsoft.NET.Test.Sdk >= 17.12.0", + "coverlet.collector >= 6.0.2", + "xunit >= 2.9.2", + "xunit.runner.visualstudio >= 2.8.2" + ] + }, + "packageFolders": { + "/home/yla/.nuget/packages/": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Test/Auth.Test.csproj", + "projectName": "Auth.Test", + "projectPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Test/Auth.Test.csproj", + "packagesPath": "/home/yla/.nuget/packages/", + "outputPath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Test/obj/", + "projectStyle": "PackageReference", + "configFilePaths": [ + "/home/yla/.nuget/NuGet/NuGet.Config" + ], + "originalTargetFrameworks": [ + "net9.0" + ], + "sources": { + "/usr/share/dotnet/library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + }, + "restoreAuditProperties": { + "enableAudit": "true", + "auditLevel": "low", + "auditMode": "direct" + }, + "SdkAnalysisLevel": "9.0.300" + }, + "frameworks": { + "net9.0": { + "targetAlias": "net9.0", + "dependencies": { + "Microsoft.NET.Test.Sdk": { + "target": "Package", + "version": "[17.12.0, )" + }, + "coverlet.collector": { + "target": "Package", + "version": "[6.0.2, )" + }, + "xunit": { + "target": "Package", + "version": "[2.9.2, )" + }, + "xunit.runner.visualstudio": { + "target": "Package", + "version": "[2.8.2, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "/usr/share/dotnet/sdk/9.0.306/PortableRuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/Auth.Test/obj/project.nuget.cache b/Auth.Test/obj/project.nuget.cache new file mode 100644 index 0000000..90a66b8 --- /dev/null +++ b/Auth.Test/obj/project.nuget.cache @@ -0,0 +1,24 @@ +{ + "version": 2, + "dgSpecHash": "iXXgUa3Hmk0=", + "success": true, + "projectFilePath": "/mnt/Dataa/Work/Programming/AllProjects/MainProgram/Backend/APIs/Auth/Auth.Test/Auth.Test.csproj", + "expectedPackageFiles": [ + "/home/yla/.nuget/packages/coverlet.collector/6.0.2/coverlet.collector.6.0.2.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.codecoverage/17.12.0/microsoft.codecoverage.17.12.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.net.test.sdk/17.12.0/microsoft.net.test.sdk.17.12.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.testplatform.objectmodel/17.12.0/microsoft.testplatform.objectmodel.17.12.0.nupkg.sha512", + "/home/yla/.nuget/packages/microsoft.testplatform.testhost/17.12.0/microsoft.testplatform.testhost.17.12.0.nupkg.sha512", + "/home/yla/.nuget/packages/newtonsoft.json/13.0.1/newtonsoft.json.13.0.1.nupkg.sha512", + "/home/yla/.nuget/packages/system.reflection.metadata/1.6.0/system.reflection.metadata.1.6.0.nupkg.sha512", + "/home/yla/.nuget/packages/xunit/2.9.2/xunit.2.9.2.nupkg.sha512", + "/home/yla/.nuget/packages/xunit.abstractions/2.0.3/xunit.abstractions.2.0.3.nupkg.sha512", + "/home/yla/.nuget/packages/xunit.analyzers/1.16.0/xunit.analyzers.1.16.0.nupkg.sha512", + "/home/yla/.nuget/packages/xunit.assert/2.9.2/xunit.assert.2.9.2.nupkg.sha512", + "/home/yla/.nuget/packages/xunit.core/2.9.2/xunit.core.2.9.2.nupkg.sha512", + "/home/yla/.nuget/packages/xunit.extensibility.core/2.9.2/xunit.extensibility.core.2.9.2.nupkg.sha512", + "/home/yla/.nuget/packages/xunit.extensibility.execution/2.9.2/xunit.extensibility.execution.2.9.2.nupkg.sha512", + "/home/yla/.nuget/packages/xunit.runner.visualstudio/2.8.2/xunit.runner.visualstudio.2.8.2.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/Auth.Test/test_auth.py b/Auth.Test/test_auth.py new file mode 100644 index 0000000..70e1293 --- /dev/null +++ b/Auth.Test/test_auth.py @@ -0,0 +1,245 @@ +import requests +import json +import uuid + +BASE_URL = "http://localhost:5031/api/v1/auth" + +def test_auth(): + # Random user to avoid conflicts + unique_id = str(uuid.uuid4())[:8] + email = f"testuser_{unique_id}@example.com" + password = "Test@123Password" + name = f"Test User {unique_id}" + + print(f"Testing with Email: {email}") + + # 1. Register + register_payload = { + "fullName": name, + "email": email, + "password": password, + "confirmPassword": password + } + + print("\n[POST] /register") + try: + reg_response = requests.post(f"{BASE_URL}/register", json=register_payload, verify=False) + print(f"Status Code: {reg_response.status_code}") + if reg_response.status_code == 200: + print("SUCCESS: Registered") + else: + print(f"FAILED: {reg_response.text}") + return + except Exception as e: + print(f"EXCEPTION: {e}") + return + + # 2. Login + login_payload = { + "email": email, + "password": password + } + + print("\n[POST] /login") + try: + login_response = requests.post(f"{BASE_URL}/login", json=login_payload, verify=False) + print(f"Status Code: {login_response.status_code}") + if login_response.status_code == 200: + print("SUCCESS: Logged in") + token_data = login_response.json() + print(f"Token received (length: {len(token_data.get('token', ''))})") + else: + print(f"FAILED: {login_response.text}") + except Exception as e: + print(f"EXCEPTION: {e}") + + # Extract token for subsequent requests + token = "" + if login_response.status_code == 200: + token = login_response.json().get("accessToken") + + headers = {"Authorization": f"Bearer {token}"} + API_ROOT = "http://localhost:5031/api/v1" + + # 3. Test Logout + print("\n[POST] /auth/logout") + try: + logout_response = requests.post(f"{BASE_URL}/logout", headers=headers, verify=False) + print(f"Status Code: {logout_response.status_code}") + if logout_response.status_code == 200: + print("SUCCESS: Logged out") + else: + print(f"FAILED: {logout_response.text}") + except Exception as e: + print(f"EXCEPTION: {e}") + + # Re-login for Role Tests + print("\n[POST] /login (Re-login for Role Tests)") + login_response = requests.post(f"{BASE_URL}/login", json=login_payload, verify=False) + if login_response.status_code == 200: + token = login_response.json().get("accessToken") + headers = {"Authorization": f"Bearer {token}"} + print("SUCCESS: Re-logged in") + + # 4. Test Role Management + role_name = "TestRole1" + + # Create Role + print(f"\n[POST] /role-management/roles (Create {role_name})") + role_payload = {"name": role_name} + try: + create_role_response = requests.post(f"{API_ROOT}/role-management/roles", json=role_payload, headers=headers, verify=False) + print(f"Status Code: {create_role_response.status_code}") + if create_role_response.status_code == 200: + print("SUCCESS: Role Created") + else: + print(f"FAILED: {create_role_response.text}") + except Exception as e: + print(f"EXCEPTION: {e}") + + # List Roles + print("\n[GET] /role-management/roles") + roles = [] + try: + list_roles_response = requests.get(f"{API_ROOT}/role-management/roles", headers=headers, verify=False) + print(f"Status Code: {list_roles_response.status_code}") + if list_roles_response.status_code == 200: + roles = list_roles_response.json() + print(f"SUCCESS: Retrieved {len(roles)} roles") + print(roles) + else: + print(f"FAILED: {list_roles_response.text}") + except Exception as e: + print(f"EXCEPTION: {e}") + + # 5. Test Permission Management + role_id = next((r["id"] for r in roles if r["name"] == role_name), None) + if role_id: + permission = "Permissions.Users.View" + print(f"\n[POST] /role-management/roles/{role_id}/permissions (Add {permission})") + + # Add Permission + try: + add_perm_response = requests.post(f"{API_ROOT}/role-management/roles/{role_id}/permissions", json=permission, headers=headers, verify=False) + print(f"Status Code: {add_perm_response.status_code}") + if add_perm_response.status_code == 200: + print("SUCCESS: Permission Added") + else: + print(f"FAILED: {add_perm_response.text}") + except Exception as e: + print(f"EXCEPTION: {e}") + + # Get Permissions + print(f"\n[GET] /role-management/roles/{role_id}/permissions") + try: + get_perm_response = requests.get(f"{API_ROOT}/role-management/roles/{role_id}/permissions", headers=headers, verify=False) + print(f"Status Code: {get_perm_response.status_code}") + if get_perm_response.status_code == 200: + print(f"SUCCESS: Permissions: {get_perm_response.json()}") + else: + print(f"FAILED: {get_perm_response.text}") + except Exception as e: + print(f"EXCEPTION: {e}") + + # 6. Test Role Assignment to User + # Need userId. Using unique_id to find the user from list or just use login response if it had ID (it didn't). + # But Register didn't return ID. + # However, we can use the "sub" claim if we decode the token, but we don't have a decoder here easily. + # Alternatively, we can assume the user created is the one we want to assign to. + # But wait, we don't have the User ID. + # Let's inspect the Login response. + # login_response.json() usually returns { "accessToken": "...", "refreshToken": "..." } + # Maybe we can fetch the user profile? There is no /me endpoint in AuthMap. + # Hmmm. + # We can use the RoleMap endpoint "role-management/{role}/user/{userId}" only if we have userId. + # We can't test this easily without User ID. + # Let's Skip Role Assignment unless we can parse JWT. + + # 7. Test Refresh Token + print("\n[POST] /auth/refresh") + refresh_token = "" + if login_response.status_code == 200: + refresh_token = login_response.json().get("refreshToken") + + if refresh_token and token: + refresh_payload = { + "accessToken": token, + "refreshToken": refresh_token + } + try: + refresh_response = requests.post(f"{BASE_URL}/refresh", json=refresh_payload, verify=False) + print(f"Status Code: {refresh_response.status_code}") + if refresh_response.status_code == 200: + print("SUCCESS: Token Refreshed") + new_token = refresh_response.json().get("accessToken") + # Update headers with new token + headers = {"Authorization": f"Bearer {new_token}"} + else: + print(f"FAILED: {refresh_response.text}") + except Exception as e: + print(f"EXCEPTION: {e}") + else: + print("SKIPPING: No refresh token available") + + # 8. Password Reset (Sanity Check) + print(f"\n[GET] /auth/password-reset-token/{email}") + try: + reset_response = requests.get(f"{BASE_URL}/password-reset-token/{email}", verify=False) + print(f"Status Code: {reset_response.status_code}") + if reset_response.status_code == 200: + print("SUCCESS: Reset Token Request Sent (Check Logs/Email)") + else: + print(f"FAILED: {reset_response.text}") + except Exception as e: + print(f"EXCEPTION: {e}") + + # 9. Test Permission Deletion + if role_id: + permission = "Permissions.Users.View" + print(f"\n[DELETE] /role-management/roles/{role_id}/permissions (Remove {permission})") + try: + # Note: DELETE with body is unusual but some APIs support it. The RoleMap uses [FromBody]. + # requests.delete(url, json=data) supports this. + del_perm_response = requests.delete( + f"{API_ROOT}/role-management/roles/{role_id}/permissions", + json=permission, + headers=headers, + verify=False + ) + print(f"Status Code: {del_perm_response.status_code}") + if del_perm_response.status_code == 200: + print("SUCCESS: Permission Deleted") + else: + print(f"FAILED: {del_perm_response.text}") + except Exception as e: + print(f"EXCEPTION: {e}") + + # Delete Role + if role_id: + print(f"\n[DELETE] /role-management/roles/{role_id}") + try: + delete_role_response = requests.delete(f"{API_ROOT}/role-management/roles/{role_id}", headers=headers, verify=False) + print(f"Status Code: {delete_role_response.status_code}") + if delete_role_response.status_code == 200: + print("SUCCESS: Role Deleted") + else: + print(f"FAILED: {delete_role_response.text}") + except Exception as e: + print(f"EXCEPTION: {e}") + else: + print("SKIPPING DELETE: Role ID not found") + + # 10. Logout (Clean up) + print("\n[POST] /auth/logout") + try: + logout_response = requests.post(f"{BASE_URL}/logout", headers=headers, verify=False) + print(f"Status Code: {logout_response.status_code}") + if logout_response.status_code == 200: + print("SUCCESS: Logged out") + else: + print(f"FAILED: {logout_response.text}") + except Exception as e: + print(f"EXCEPTION: {e}") + +if __name__ == "__main__": + test_auth()