commit 040030949a643e01759bbb694bf792173cfff660 Author: shizhongzhen Date: Mon Dec 12 11:35:47 2022 +0800 init diff --git a/BuaaLocationServer.csproj b/BuaaLocationServer.csproj new file mode 100644 index 0000000..5ca95cc --- /dev/null +++ b/BuaaLocationServer.csproj @@ -0,0 +1,23 @@ + + + + net7.0 + enable + enable + a4f66842-b6bb-4ab5-a81c-4d66a817cfb4 + + + + + + + + + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + + + + + diff --git a/BuaaLocationServer.csproj.user b/BuaaLocationServer.csproj.user new file mode 100644 index 0000000..d5c206f --- /dev/null +++ b/BuaaLocationServer.csproj.user @@ -0,0 +1,10 @@ + + + + http + C:\Users\shizh\Projects\BuaaLocationServer\Properties\PublishProfiles\Linux_release.pubxml + + + ProjectDebugger + + \ No newline at end of file diff --git a/BuaaLocationServer.db b/BuaaLocationServer.db new file mode 100644 index 0000000..06364bf Binary files /dev/null and b/BuaaLocationServer.db differ diff --git a/BuaaLocationServer.sln b/BuaaLocationServer.sln new file mode 100644 index 0000000..09788d4 --- /dev/null +++ b/BuaaLocationServer.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.4.33110.190 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BuaaLocationServer", "BuaaLocationServer.csproj", "{CD0530FD-AC21-4F4D-84FD-26463F26DCF0}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {CD0530FD-AC21-4F4D-84FD-26463F26DCF0}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {CD0530FD-AC21-4F4D-84FD-26463F26DCF0}.Debug|Any CPU.Build.0 = Debug|Any CPU + {CD0530FD-AC21-4F4D-84FD-26463F26DCF0}.Release|Any CPU.ActiveCfg = Release|Any CPU + {CD0530FD-AC21-4F4D-84FD-26463F26DCF0}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {025019AE-3A9A-47ED-83CC-3710AD20D6C1} + EndGlobalSection +EndGlobal diff --git a/Controllers/AuthenticationController.cs b/Controllers/AuthenticationController.cs new file mode 100644 index 0000000..cab6375 --- /dev/null +++ b/Controllers/AuthenticationController.cs @@ -0,0 +1,83 @@ +using BuaaLocationServer.Dto; +using BuaaLocationServer.Middlewares.Db; +using BuaaLocationServer.Middlewares.Jwts; +using BuaaLocationServer.Models; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Connections; +using Microsoft.AspNetCore.Identity; +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.Caching.Memory; +using Microsoft.Extensions.Options; +using Microsoft.IdentityModel.JsonWebTokens; +using System.Security.Claims; + +namespace BuaaLocationServer.Controllers +{ + /// + /// Ȩ + /// + [ApiController] + [Authorize] + [Route("api/[controller]")] + public class AuthenticationController : BaseController + { + private readonly BuaaDbContext _context; + private readonly ILogger _logger; + private readonly IMemoryCache _memoryCache; + private readonly IJwtService _jwtService; + + public AuthenticationController( + ILogger logger, + BuaaDbContext context, + IMemoryCache memoryCache, + IJwtService jwtService) + { + _logger = logger; + _context = context; + _memoryCache = memoryCache; + _jwtService = jwtService; + } + + /// + /// ¼ + /// + /// + /// + [HttpPost("[action]")] + [AllowAnonymous] + public async Task> SignIn([FromBody] UserDto dto) + { + var user = await _context.Users.FirstOrDefaultAsync(e => e.UserName == dto.UserName); + + if (user == null || !BCrypt.Net.BCrypt.Verify(dto.Password, user.Password)) + return Problem("û"); + + + var claims = new List + { + new Claim(JwtClaimTypes.Subject, user.UserName), + new Claim(JwtClaimTypes.Role, user.RoleType.ToString()) + }; + var identity = new ClaimsIdentity(claims); + var token = _jwtService.Create(identity); + var refreshToken = Guid.NewGuid().ToString("N"); + var expireTime = DateTimeOffset.Now.AddDays(1); + _memoryCache.Set(refreshToken, dto.UserName, expireTime); + return Ok(new { token, expireTime, dto.UserName }); + } + + /// + /// ȡǰ¼û + /// + /// + [HttpGet("[action]")] + public async Task> Profile() + { + var userName = this.GetCurrentUserName(); + var user = await _context.Users.FirstOrDefaultAsync(e=>e.UserName == userName); + return Ok(user); + } + + } +} \ No newline at end of file diff --git a/Controllers/BaseController.cs b/Controllers/BaseController.cs new file mode 100644 index 0000000..64ca9f8 --- /dev/null +++ b/Controllers/BaseController.cs @@ -0,0 +1,14 @@ +using BuaaLocationServer.Middlewares.Jwts; +using Microsoft.AspNetCore.Mvc; + +namespace BuaaLocationServer.Controllers +{ + public class BaseController:ControllerBase + { + protected string GetCurrentUserName() + { + var sub = this.HttpContext.User.Claims.First(e => e.Properties.Any(x => x.Value == JwtClaimTypes.Subject)); + return sub.Value; + } + } +} diff --git a/Controllers/CompaniesController.cs b/Controllers/CompaniesController.cs new file mode 100644 index 0000000..33ddd3a --- /dev/null +++ b/Controllers/CompaniesController.cs @@ -0,0 +1,84 @@ +using BuaaLocationServer.Dto; +using BuaaLocationServer.Middlewares.Db; +using BuaaLocationServer.Middlewares.Jwts; +using BuaaLocationServer.Models; +using Microsoft.AspNetCore.Authorization; +using Microsoft.AspNetCore.Mvc; +using Microsoft.EntityFrameworkCore; +using Microsoft.Extensions.Caching.Memory; +using System.ComponentModel.DataAnnotations; + +namespace BuaaLocationServer.Controllers +{ + + /// + /// 公司信息 + /// + [ApiController] + [Authorize] + [Route("api/[controller]")] + public class CompaniesController:BaseController + { + private readonly BuaaDbContext _context; + private readonly ILogger _logger; + private readonly IMemoryCache _memoryCache; + private readonly IJwtService _jwtService; + + public CompaniesController( + ILogger logger, + BuaaDbContext context, + IMemoryCache memoryCache, + IJwtService jwtService) + { + _logger = logger; + _context = context; + _memoryCache = memoryCache; + _jwtService = jwtService; + } + + /// + /// 获取公司信息 + /// + /// 公司名称 + /// + [HttpGet] + public async Task> Get([FromQuery,Required]string name) + { + var company = await _context.Companies.FirstOrDefaultAsync(e => e.Name == name); + if (company == null) + { + return NotFound(); + } + var dto = new CompanyDto() + { + Name = company.Name, + Content = company.Content + }; + return Ok(dto); + } + + /// + /// 创建或者更新 + /// + /// + /// + [HttpPost] + public async Task> Create([FromBody,Required]CompanyDto dto) + { + if (string.IsNullOrEmpty(dto.Name)) + { + return BadRequest($"{nameof(dto.Name)} 不能为空。"); + } + var company = await _context.Companies.FirstOrDefaultAsync(e => e.Name == dto.Name); + if (company == null) + { + company = new Company(); + company.Name = dto.Name; + await _context.Companies.AddAsync(company); + } + company.Content = dto.Content; + await _context.SaveChangesAsync(); + return Ok(dto); + } + } +} diff --git a/Dto/CompanyDto.cs b/Dto/CompanyDto.cs new file mode 100644 index 0000000..3bfc886 --- /dev/null +++ b/Dto/CompanyDto.cs @@ -0,0 +1,8 @@ +namespace BuaaLocationServer.Dto +{ + public class CompanyDto + { + public string Name { get; set; } = null!; + public string? Content { get; set; } + } +} diff --git a/Dto/UserDto.cs b/Dto/UserDto.cs new file mode 100644 index 0000000..558696f --- /dev/null +++ b/Dto/UserDto.cs @@ -0,0 +1,15 @@ +using BuaaLocationServer.Models; +using System.ComponentModel.DataAnnotations; + +namespace BuaaLocationServer.Dto +{ + public class UserDto + { + + public string UserName { get; set; } = null!; + + public string Password { get; set; } = null!; + + public RoleType RoleType { get; set; } + } +} diff --git a/Middlewares/Db/BuaaDbContext.cs b/Middlewares/Db/BuaaDbContext.cs new file mode 100644 index 0000000..1fa6d98 --- /dev/null +++ b/Middlewares/Db/BuaaDbContext.cs @@ -0,0 +1,33 @@ +using BuaaLocationServer.Models; +using Microsoft.EntityFrameworkCore; + +namespace BuaaLocationServer.Middlewares.Db +{ + public class BuaaDbContext : DbContext + { + public DbSet Users { set; get; } + public DbSet Companies { get; set; } + public BuaaDbContext(DbContextOptions options) : base(options) + { + + } + + internal async void SeedDefaultData() + { + if (!this.Users.Any()) + { + var newUsers = new List + { + new User + { + UserName = "admin", + Password = BCrypt.Net.BCrypt.HashPassword("admin"), + } + }; + this.Users.AddRange(newUsers); + } + + await this.SaveChangesAsync(); + } + } +} diff --git a/Middlewares/Db/BuaaDbContextExtensions.cs b/Middlewares/Db/BuaaDbContextExtensions.cs new file mode 100644 index 0000000..ed79eab --- /dev/null +++ b/Middlewares/Db/BuaaDbContextExtensions.cs @@ -0,0 +1,31 @@ +using Microsoft.EntityFrameworkCore; + +namespace BuaaLocationServer.Middlewares.Db +{ + public static class BuaaDbContextExtensions + { + /// + /// 运行迁移 + /// + /// + /// + public static IApplicationBuilder SetupDatabase(this WebApplication app) + { + using var scope = app.Services.CreateScope(); + var serviceProvidoer = scope.ServiceProvider; + try + { + var context = serviceProvidoer.GetRequiredService(); + context.Database.Migrate(); + context.SeedDefaultData(); + } + catch (Exception e) + { + var logger = serviceProvidoer.GetRequiredService>(); + logger.LogError(e, "在设置数据库过程中发生了错误!"); + } + + return app; + } + } +} diff --git a/Middlewares/Jwts/IJwtService.cs b/Middlewares/Jwts/IJwtService.cs new file mode 100644 index 0000000..8432b98 --- /dev/null +++ b/Middlewares/Jwts/IJwtService.cs @@ -0,0 +1,25 @@ +using System.Security.Claims; + +namespace BuaaLocationServer.Middlewares.Jwts +{ + /// + /// JWT 服务器接口。 + /// + public interface IJwtService + { + /// + /// 创建一个 JWT。 + /// + /// + /// + string Create(ClaimsIdentity identity); + + /// + /// 验证 JWT 是否有效。 + /// + /// + /// + /// + bool Validate(string token, out ClaimsPrincipal principal); + } +} \ No newline at end of file diff --git a/Middlewares/Jwts/JwtClaimTypes.cs b/Middlewares/Jwts/JwtClaimTypes.cs new file mode 100644 index 0000000..6471390 --- /dev/null +++ b/Middlewares/Jwts/JwtClaimTypes.cs @@ -0,0 +1,173 @@ +namespace BuaaLocationServer.Middlewares.Jwts +{ + /// + /// 用于 JWT 的声明类型。 + /// + public static class JwtClaimTypes + { + /// Unique Identifier for the End-User at the Issuer. + public const string Subject = "sub"; + + /// End-User's full name in displayable form including all name parts, possibly including titles and suffixes, ordered according to the End-User's locale and preferences. + public const string Name = "name"; + + /// Given name(s) or first name(s) of the End-User. Note that in some cultures, people can have multiple given names; all can be present, with the names being separated by space characters. + public const string GivenName = "given_name"; + + /// Surname(s) or last name(s) of the End-User. Note that in some cultures, people can have multiple family names or no family name; all can be present, with the names being separated by space characters. + public const string FamilyName = "family_name"; + + /// Middle name(s) of the End-User. Note that in some cultures, people can have multiple middle names; all can be present, with the names being separated by space characters. Also note that in some cultures, middle names are not used. + public const string MiddleName = "middle_name"; + + /// Casual name of the End-User that may or may not be the same as the given_name. For instance, a nickname value of Mike might be returned alongside a given_name value of Michael. + public const string NickName = "nickname"; + + /// Shorthand name by which the End-User wishes to be referred to at the RP, such as janedoe or j.doe. This value MAY be any valid JSON string including special characters such as @, /, or whitespace. The relying party MUST NOT rely upon this value being unique + /// The RP MUST NOT rely upon this value being unique, as discussed in http://openid.net/specs/openid-connect-basic-1_0-32.html#ClaimStability + public const string PreferredUserName = "preferred_username"; + + /// URL of the End-User's profile page. The contents of this Web page SHOULD be about the End-User. + public const string Profile = "profile"; + + /// URL of the End-User's profile picture. This URL MUST refer to an image file (for example, a PNG, JPEG, or GIF image file), rather than to a Web page containing an image. + /// Note that this URL SHOULD specifically reference a profile photo of the End-User suitable for displaying when describing the End-User, rather than an arbitrary photo taken by the End-User. + public const string Picture = "picture"; + + /// URL of the End-User's Web page or blog. This Web page SHOULD contain information published by the End-User or an organization that the End-User is affiliated with. + public const string WebSite = "website"; + + /// End-User's preferred e-mail address. Its value MUST conform to the RFC 5322 [RFC5322] addr-spec syntax. The relying party MUST NOT rely upon this value being unique + public const string Email = "email"; + + /// "true" if the End-User's e-mail address has been verified; otherwise "false". + /// When this Claim Value is "true", this means that the OP took affirmative steps to ensure that this e-mail address was controlled by the End-User at the time the verification was performed. The means by which an e-mail address is verified is context-specific, and dependent upon the trust framework or contractual agreements within which the parties are operating. + public const string EmailVerified = "email_verified"; + + /// End-User's gender. Values defined by this specification are "female" and "male". Other values MAY be used when neither of the defined values are applicable. + public const string Gender = "gender"; + + /// End-User's birthday, represented as an ISO 8601:2004 [ISO8601‑2004] YYYY-MM-DD format. The year MAY be 0000, indicating that it is omitted. To represent only the year, YYYY format is allowed. Note that depending on the underlying platform's date related function, providing just year can result in varying month and day, so the implementers need to take this factor into account to correctly process the dates. + public const string BirthDate = "birthdate"; + + /// String from the time zone database (http://www.twinsun.com/tz/tz-link.htm) representing the End-User's time zone. For example, Europe/Paris or America/Los_Angeles. + public const string ZoneInfo = "zoneinfo"; + + /// End-User's locale, represented as a BCP47 [RFC5646] language tag. This is typically an ISO 639-1 Alpha-2 [ISO639‑1] language code in lowercase and an ISO 3166-1 Alpha-2 [ISO3166‑1] country code in uppercase, separated by a dash. For example, en-US or fr-CA. As a compatibility note, some implementations have used an underscore as the separator rather than a dash, for example, en_US; Relying Parties MAY choose to accept this locale syntax as well. + public const string Locale = "locale"; + + /// End-User's preferred telephone number. E.164 (https://www.itu.int/rec/T-REC-E.164/e) is RECOMMENDED as the format of this Claim, for example, +1 (425) 555-1212 or +56 (2) 687 2400. If the phone number contains an extension, it is RECOMMENDED that the extension be represented using the RFC 3966 [RFC3966] extension syntax, for example, +1 (604) 555-1234;ext=5678. + public const string PhoneNumber = "phone_number"; + + /// True if the End-User's phone number has been verified; otherwise false. When this Claim Value is true, this means that the OP took affirmative steps to ensure that this phone number was controlled by the End-User at the time the verification was performed. + /// The means by which a phone number is verified is context-specific, and dependent upon the trust framework or contractual agreements within which the parties are operating. When true, the phone_number Claim MUST be in E.164 format and any extensions MUST be represented in RFC 3966 format. + public const string PhoneNumberVerified = "phone_number_verified"; + + /// End-User's preferred postal address. The value of the address member is a JSON structure containing some or all of the members defined in http://openid.net/specs/openid-connect-basic-1_0-32.html#AddressClaim + public const string Address = "address"; + + /// Audience(s) that this ID Token is intended for. It MUST contain the OAuth 2.0 client_id of the Relying Party as an audience value. It MAY also contain identifiers for other audiences. In the general case, the aud value is an array of case sensitive strings. In the common special case when there is one audience, the aud value MAY be a single case sensitive string. + public const string Audience = "aud"; + + /// Issuer Identifier for the Issuer of the response. The iss value is a case sensitive URL using the https scheme that contains scheme, host, and optionally, port number and path components and no query or fragment components. + public const string Issuer = "iss"; + + /// The time before which the JWT MUST NOT be accepted for processing, specified as the number of seconds from 1970-01-01T0:0:0Z + public const string NotBefore = "nbf"; + + /// The exp (expiration time) claim identifies the expiration time on or after which the token MUST NOT be accepted for processing, specified as the number of seconds from 1970-01-01T0:0:0Z + public const string Expiration = "exp"; + + /// Time the End-User's information was last updated. Its value is a JSON number representing the number of seconds from 1970-01-01T0:0:0Z as measured in UTC until the date/time. + public const string UpdatedAt = "updated_at"; + + /// The iat (issued at) claim identifies the time at which the JWT was issued, , specified as the number of seconds from 1970-01-01T0:0:0Z + public const string IssuedAt = "iat"; + + /// Authentication Methods References. JSON array of strings that are identifiers for authentication methods used in the authentication. + public const string AuthenticationMethod = "amr"; + + /// Session identifier. This represents a Session of an OP at an RP to a User Agent or device for a logged-in End-User. Its contents are unique to the OP and opaque to the RP. + public const string SessionId = "sid"; + + /// + /// Authentication Context Class Reference. String specifying an Authentication Context Class Reference value that identifies the Authentication Context Class that the authentication performed satisfied. + /// The value "0" indicates the End-User authentication did not meet the requirements of ISO/IEC 29115 level 1. + /// Authentication using a long-lived browser cookie, for instance, is one example where the use of "level 0" is appropriate. + /// Authentications with level 0 SHOULD NOT be used to authorize access to any resource of any monetary value. + /// (This corresponds to the OpenID 2.0 PAPE nist_auth_level 0.) + /// An absolute URI or an RFC 6711 registered name SHOULD be used as the acr value; registered names MUST NOT be used with a different meaning than that which is registered. + /// Parties using this claim will need to agree upon the meanings of the values used, which may be context-specific. + /// The acr value is a case sensitive string. + /// + public const string AuthenticationContextClassReference = "acr"; + + /// Time when the End-User authentication occurred. Its value is a JSON number representing the number of seconds from 1970-01-01T0:0:0Z as measured in UTC until the date/time. When a max_age request is made or when auth_time is requested as an Essential Claim, then this Claim is REQUIRED; otherwise, its inclusion is OPTIONAL. + public const string AuthenticationTime = "auth_time"; + + /// The party to which the ID Token was issued. If present, it MUST contain the OAuth 2.0 Client ID of this party. This Claim is only needed when the ID Token has a single audience value and that audience is different than the authorized party. It MAY be included even when the authorized party is the same as the sole audience. The azp value is a case sensitive string containing a StringOrURI value. + public const string AuthorizedParty = "azp"; + + /// Access Token hash value. Its value is the base64url encoding of the left-most half of the hash of the octets of the ASCII representation of the access_token value, where the hash algorithm used is the hash algorithm used in the alg Header Parameter of the ID Token's JOSE Header. For instance, if the alg is RS256, hash the access_token value with SHA-256, then take the left-most 128 bits and base64url encode them. The at_hash value is a case sensitive string. + public const string AccessTokenHash = "at_hash"; + + /// Code hash value. Its value is the base64url encoding of the left-most half of the hash of the octets of the ASCII representation of the code value, where the hash algorithm used is the hash algorithm used in the alg Header Parameter of the ID Token's JOSE Header. For instance, if the alg is HS512, hash the code value with SHA-512, then take the left-most 256 bits and base64url encode them. The c_hash value is a case sensitive string. + public const string AuthorizationCodeHash = "c_hash"; + + /// String value used to associate a Client session with an ID Token, and to mitigate replay attacks. The value is passed through unmodified from the Authentication Request to the ID Token. If present in the ID Token, Clients MUST verify that the nonce Claim Value is equal to the value of the nonce parameter sent in the Authentication Request. If present in the Authentication Request, Authorization Servers MUST include a nonce Claim in the ID Token with the Claim Value being the nonce value sent in the Authentication Request. Authorization Servers SHOULD perform no other processing on nonce values used. The nonce value is a case sensitive string. + public const string Nonce = "nonce"; + + /// JWT ID. A unique identifier for the token, which can be used to prevent reuse of the token. These tokens MUST only be used once, unless conditions for reuse were negotiated between the parties; any such negotiation is beyond the scope of this specification. + public const string JwtId = "jti"; + + /// Defines a set of event statements that each may add additional claims to fully describe a single logical event that has occurred. + public const string Events = "events"; + + /// OAuth 2.0 Client Identifier valid at the Authorization Server. + public const string ClientId = "client_id"; + + /// OpenID Connect requests MUST contain the "openid" scope value. If the openid scope value is not present, the behavior is entirely unspecified. Other scope values MAY be present. Scope values used that are not understood by an implementation SHOULD be ignored. + public const string Scope = "scope"; + + /// The "act" (actor) claim provides a means within a JWT to express that delegation has occurred and identify the acting party to whom authority has been delegated.The "act" claim value is a JSON object and members in the JSON object are claims that identify the actor. The claims that make up the "act" claim identify and possibly provide additional information about the actor. + public const string Actor = "act"; + + /// The "may_act" claim makes a statement that one party is authorized to become the actor and act on behalf of another party. The claim value is a JSON object and members in the JSON object are claims that identify the party that is asserted as being eligible to act for the party identified by the JWT containing the claim. + public const string MayAct = "may_act"; + + /// + /// an identifier + /// + public const string Id = "id"; + + /// + /// The identity provider + /// + public const string IdentityProvider = "idp"; + + /// + /// The role + /// + public const string Role = "role"; + + /// + /// The reference token identifier + /// + public const string ReferenceTokenId = "reference_token_id"; + + /// + /// The confirmation + /// + public const string Confirmation = "cnf"; + + /// + /// 组织机构编号。 + /// + public const string OrganizationId = "oid"; + + /// + /// 组织机构代码。 + /// + public const string OrganizationCode = "ocode"; + } +} \ No newline at end of file diff --git a/Middlewares/Jwts/JwtOptions.cs b/Middlewares/Jwts/JwtOptions.cs new file mode 100644 index 0000000..ebae8cc --- /dev/null +++ b/Middlewares/Jwts/JwtOptions.cs @@ -0,0 +1,33 @@ +namespace BuaaLocationServer.Middlewares.Jwts +{ + /// + /// JWT 配置项。 + /// + public class JwtOptions + { + /// + /// Secret。 + /// + public string Secret { get; set; } = null!; + + /// + /// Issuer。 + /// + public string Issuer { get; set; } = null!; + + /// + /// Audience。 + /// + public string Audience { get; set; } = null!; + + /// + /// Expires。 + /// + public double Expires { get; set; } + + /// + /// Refresh Expires。 + /// + public double RefreshExpires { get; set; } + } +} \ No newline at end of file diff --git a/Middlewares/Jwts/JwtService.cs b/Middlewares/Jwts/JwtService.cs new file mode 100644 index 0000000..71facae --- /dev/null +++ b/Middlewares/Jwts/JwtService.cs @@ -0,0 +1,85 @@ +using Microsoft.Extensions.Options; +using Microsoft.IdentityModel.Tokens; +using System.IdentityModel.Tokens.Jwt; +using System.Security.Claims; +using System.Text; + +namespace BuaaLocationServer.Middlewares.Jwts +{ + /// + /// JWT 服务。 + /// + public class JwtService : IJwtService + { + private readonly IOptionsMonitor options; + + public JwtService(IOptionsMonitor options) + { + this.options = options; + //var jwtOptions = options.CurrentValue; + } + + /// + /// 创建一个 JWT。 + /// + /// + /// + public string Create(ClaimsIdentity identity) + { + var jwtOptions = options.CurrentValue; + var now = DateTimeOffset.Now; + var expires = now.AddMinutes(jwtOptions.Expires); + var secret = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(jwtOptions.Secret)); + var creds = new SigningCredentials(secret, SecurityAlgorithms.HmacSha256); + var token = new JwtSecurityToken( + issuer: jwtOptions.Issuer, + audience: jwtOptions.Audience, + claims: identity.Claims, + notBefore: now.DateTime, + expires: expires.DateTime, + signingCredentials: creds); + + var handler = new JwtSecurityTokenHandler(); + var jwt = handler.WriteToken(token); + + return jwt; + } + + /// + /// 验证 JWT 是否有效。 + /// + /// + /// + /// + public bool Validate(string token, out ClaimsPrincipal principal) + { + var jwtOptions = options.CurrentValue; + var secret = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(jwtOptions.Secret)); + var validationParameters = new TokenValidationParameters + { + NameClaimType = JwtClaimTypes.Name, + RoleClaimType = JwtClaimTypes.Role, + + ValidateIssuer = true, + ValidIssuer = jwtOptions.Issuer, + ValidateAudience = true, + ValidAudience = jwtOptions.Audience, + ValidateIssuerSigningKey = true, + IssuerSigningKey = secret, + RequireExpirationTime = true, + ValidateLifetime = false + }; + var handler = new JwtSecurityTokenHandler(); + try + { + principal = handler.ValidateToken(token, validationParameters, out var jwt); + return true; + } + catch + { + principal = new ClaimsPrincipal(); + return false; + } + } + } +} \ No newline at end of file diff --git a/Migrations/20221209072737_Init.Designer.cs b/Migrations/20221209072737_Init.Designer.cs new file mode 100644 index 0000000..cb6c700 --- /dev/null +++ b/Migrations/20221209072737_Init.Designer.cs @@ -0,0 +1,54 @@ +// +using BuaaLocationServer.Middlewares.Db; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Migrations; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace BuaaLocationServer.Migrations +{ + [DbContext(typeof(BuaaDbContext))] + [Migration("20221209072737_Init")] + partial class Init + { + /// + protected override void BuildTargetModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); + + modelBuilder.Entity("BuaaLocationServer.Models.Company", b => + { + b.Property("Name") + .HasColumnType("TEXT"); + + b.Property("Content") + .HasColumnType("TEXT"); + + b.HasKey("Name"); + + b.ToTable("Companies"); + }); + + modelBuilder.Entity("BuaaLocationServer.Models.User", b => + { + b.Property("UserName") + .HasColumnType("TEXT"); + + b.Property("Password") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("RoleType") + .HasColumnType("INTEGER"); + + b.HasKey("UserName"); + + b.ToTable("Users"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Migrations/20221209072737_Init.cs b/Migrations/20221209072737_Init.cs new file mode 100644 index 0000000..041b872 --- /dev/null +++ b/Migrations/20221209072737_Init.cs @@ -0,0 +1,49 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace BuaaLocationServer.Migrations +{ + /// + public partial class Init : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateTable( + name: "Companies", + columns: table => new + { + Name = table.Column(type: "TEXT", nullable: false), + Content = table.Column(type: "TEXT", nullable: true) + }, + constraints: table => + { + table.PrimaryKey("PK_Companies", x => x.Name); + }); + + migrationBuilder.CreateTable( + name: "Users", + columns: table => new + { + UserName = table.Column(type: "TEXT", nullable: false), + Password = table.Column(type: "TEXT", nullable: false), + RoleType = table.Column(type: "INTEGER", nullable: false) + }, + constraints: table => + { + table.PrimaryKey("PK_Users", x => x.UserName); + }); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropTable( + name: "Companies"); + + migrationBuilder.DropTable( + name: "Users"); + } + } +} diff --git a/Migrations/BuaaDbContextModelSnapshot.cs b/Migrations/BuaaDbContextModelSnapshot.cs new file mode 100644 index 0000000..b8bfc54 --- /dev/null +++ b/Migrations/BuaaDbContextModelSnapshot.cs @@ -0,0 +1,51 @@ +// +using BuaaLocationServer.Middlewares.Db; +using Microsoft.EntityFrameworkCore; +using Microsoft.EntityFrameworkCore.Infrastructure; +using Microsoft.EntityFrameworkCore.Storage.ValueConversion; + +#nullable disable + +namespace BuaaLocationServer.Migrations +{ + [DbContext(typeof(BuaaDbContext))] + partial class BuaaDbContextModelSnapshot : ModelSnapshot + { + protected override void BuildModel(ModelBuilder modelBuilder) + { +#pragma warning disable 612, 618 + modelBuilder.HasAnnotation("ProductVersion", "7.0.0"); + + modelBuilder.Entity("BuaaLocationServer.Models.Company", b => + { + b.Property("Name") + .HasColumnType("TEXT"); + + b.Property("Content") + .HasColumnType("TEXT"); + + b.HasKey("Name"); + + b.ToTable("Companies"); + }); + + modelBuilder.Entity("BuaaLocationServer.Models.User", b => + { + b.Property("UserName") + .HasColumnType("TEXT"); + + b.Property("Password") + .IsRequired() + .HasColumnType("TEXT"); + + b.Property("RoleType") + .HasColumnType("INTEGER"); + + b.HasKey("UserName"); + + b.ToTable("Users"); + }); +#pragma warning restore 612, 618 + } + } +} diff --git a/Models/Company.cs b/Models/Company.cs new file mode 100644 index 0000000..ec53a55 --- /dev/null +++ b/Models/Company.cs @@ -0,0 +1,12 @@ +using System.ComponentModel.DataAnnotations; + +namespace BuaaLocationServer.Models +{ + public class Company + { + [Key] + public string Name { get; set; } = null!; + public string? Content { get; set; } + + } +} diff --git a/Models/User.cs b/Models/User.cs new file mode 100644 index 0000000..9f0d58b --- /dev/null +++ b/Models/User.cs @@ -0,0 +1,20 @@ +using System.ComponentModel.DataAnnotations; + +namespace BuaaLocationServer.Models +{ + public class User + { + [Key] + public string UserName { get; set; } = null!; + + public string Password { get; set; } = null!; + + public RoleType RoleType { get; set; } + } + + public enum RoleType + { + 管理员, + 普通用户 + } +} diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..fc13a64 --- /dev/null +++ b/Program.cs @@ -0,0 +1,92 @@ +using BuaaLocationServer.Middlewares.Db; +using BuaaLocationServer.Middlewares.Jwts; +using Microsoft.AspNetCore.DataProtection; +using Microsoft.AspNetCore.SignalR; +using Microsoft.EntityFrameworkCore; +using Microsoft.IdentityModel.Tokens; +using Microsoft.OpenApi.Models; +using System.Reflection; +using System.Text; + +var builder = WebApplication.CreateBuilder(args); + +// Add services to the container. +builder.Services.AddDbContext((provider, options) => +{ + if (!builder.Environment.IsProduction()) options.EnableSensitiveDataLogging(); + options.UseSqlite(builder.Configuration.GetConnectionString("SQLite"), + opts => opts.UseQuerySplittingBehavior(QuerySplittingBehavior.SplitQuery)); +}); +builder.Services.Configure(builder.Configuration.GetSection("JwtSettings")); +builder.Services.AddAuthorization(); +builder.Services.AddAuthentication("Bearer").AddJwtBearer(o => { + o.RequireHttpsMetadata = false; + var secret = new SymmetricSecurityKey(Encoding.UTF8.GetBytes(builder.Configuration["JwtSettings:Secret"] ?? string.Empty)); + o.TokenValidationParameters = new Microsoft.IdentityModel.Tokens.TokenValidationParameters + { + NameClaimType = JwtClaimTypes.Name, + RoleClaimType = JwtClaimTypes.Role, + + ValidateIssuer = true, + ValidIssuer = builder.Configuration["JwtSettings:Issuer"], + ValidateIssuerSigningKey = true, + IssuerSigningKey = secret, + ValidateAudience = true, + ValidAudience = builder.Configuration["JwtSettings:Audience"], + RequireExpirationTime = true, + ValidateLifetime = true, + ClockSkew = TimeSpan.FromSeconds(30) + }; +}); + +builder.Services.AddSingleton(); + +builder.Services.AddControllers(); +// Learn more about configuring Swagger/OpenAPI at https://aka.ms/aspnetcore/swashbuckle +builder.Services.AddEndpointsApiExplorer(); +builder.Services.AddSwaggerGen(options => +{ + + + options.AddSecurityDefinition("Bearer", new OpenApiSecurityScheme + { + Description = "ʹ JWT Bearer ģʽȨʾ: \"Bearer {token}\"", + Name = "Authorization", //Jwt default param name + In = ParameterLocation.Header, //Jwt store address + Type = SecuritySchemeType.ApiKey, //Security scheme type + Scheme = "Bearer", + BearerFormat = "JWT" + }); + options.AddSecurityRequirement(new OpenApiSecurityRequirement + { + { + new OpenApiSecurityScheme + { + Reference = new OpenApiReference + { + Type = ReferenceType.SecurityScheme, + Id = "Bearer" + }, + }, + Array.Empty() + } + }); +}); +builder.Services.AddMemoryCache(); +var app = builder.Build(); + +// Configure the HTTP request pipeline. +if (app.Environment.IsDevelopment()) +{ + app.UseSwagger(); + app.UseSwaggerUI(o => o.EnablePersistAuthorization()); +} + +//app.UseHttpsRedirection(); +app.SetupDatabase(); + +app.UseAuthorization(); + +app.MapControllers(); + +app.Run(); diff --git a/Properties/PublishProfiles/Linux_release.pubxml b/Properties/PublishProfiles/Linux_release.pubxml new file mode 100644 index 0000000..9036e7f --- /dev/null +++ b/Properties/PublishProfiles/Linux_release.pubxml @@ -0,0 +1,24 @@ + + + + + true + false + true + Release + Any CPU + FileSystem + bin\Release\net7.0\publish\BuaaLocationServer + FileSystem + <_TargetId>Folder + + net7.0 + linux-x64 + true + true + cd0530fd-ac21-4f4d-84fd-26463f26dcf0 + true + + \ No newline at end of file diff --git a/Properties/PublishProfiles/Linux_release.pubxml.user b/Properties/PublishProfiles/Linux_release.pubxml.user new file mode 100644 index 0000000..0bf4f5e --- /dev/null +++ b/Properties/PublishProfiles/Linux_release.pubxml.user @@ -0,0 +1,11 @@ + + + + + <_PublishTargetUrl>C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\publish\BuaaLocationServer + True|2022-12-12T03:18:13.3558939Z; + + + \ No newline at end of file diff --git a/Properties/launchSettings.json b/Properties/launchSettings.json new file mode 100644 index 0000000..bf547bc --- /dev/null +++ b/Properties/launchSettings.json @@ -0,0 +1,41 @@ +{ + "$schema": "https://json.schemastore.org/launchsettings.json", + "iisSettings": { + "windowsAuthentication": false, + "anonymousAuthentication": true, + "iisExpress": { + "applicationUrl": "http://localhost:61993", + "sslPort": 44359 + } + }, + "profiles": { + "http": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "http://localhost:5136", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "https": { + "commandName": "Project", + "dotnetRunMessages": true, + "launchBrowser": true, + "launchUrl": "swagger", + "applicationUrl": "https://localhost:7026;http://localhost:5136", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + }, + "IIS Express": { + "commandName": "IISExpress", + "launchBrowser": true, + "launchUrl": "swagger", + "environmentVariables": { + "ASPNETCORE_ENVIRONMENT": "Development" + } + } + } +} diff --git a/WeatherForecast.cs b/WeatherForecast.cs new file mode 100644 index 0000000..89aa37c --- /dev/null +++ b/WeatherForecast.cs @@ -0,0 +1,13 @@ +namespace BuaaLocationServer +{ + public class WeatherForecast + { + public DateOnly Date { get; set; } + + public int TemperatureC { get; set; } + + public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); + + public string? Summary { get; set; } + } +} \ No newline at end of file diff --git a/appsettings.Development.json b/appsettings.Development.json new file mode 100644 index 0000000..4d8f46c --- /dev/null +++ b/appsettings.Development.json @@ -0,0 +1,21 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "Authentication": { + "Schemes": { + "Bearer": { + "ValidAudiences": [ + "http://localhost:61993", + "https://localhost:44359", + "http://localhost:5136", + "https://localhost:7026" + ], + "ValidIssuer": "dotnet-user-jwts" + } + } + } +} \ No newline at end of file diff --git a/appsettings.json b/appsettings.json new file mode 100644 index 0000000..34f5391 --- /dev/null +++ b/appsettings.json @@ -0,0 +1,26 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "Authentication": { + "Schemes": { + "Bearer": { + "ValidIssuer": "anxin99.com" + } + } + }, + "ConnectionStrings": { + "SQLite": "Filename=BuaaLocationServer.db" + }, + "JwtSettings": { + "Secret": "sj2fojl#;aldjf;la0808l@mvfljsdfy", + "Issuer": "anxin99.com", + "Audience": "BUAALOCATION", + "Expires": 1200, + "RefreshExpires": 60 + } +} diff --git a/obj/BuaaLocationServer.csproj.EntityFrameworkCore.targets b/obj/BuaaLocationServer.csproj.EntityFrameworkCore.targets new file mode 100644 index 0000000..7d6485d --- /dev/null +++ b/obj/BuaaLocationServer.csproj.EntityFrameworkCore.targets @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/obj/BuaaLocationServer.csproj.nuget.dgspec.json b/obj/BuaaLocationServer.csproj.nuget.dgspec.json new file mode 100644 index 0000000..674fe3e --- /dev/null +++ b/obj/BuaaLocationServer.csproj.nuget.dgspec.json @@ -0,0 +1,103 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\BuaaLocationServer.csproj": {} + }, + "projects": { + "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\BuaaLocationServer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\BuaaLocationServer.csproj", + "projectName": "BuaaLocationServer", + "projectPath": "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\BuaaLocationServer.csproj", + "packagesPath": "C:\\Users\\shizh\\.nuget\\packages\\", + "outputPath": "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\shizh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "BCrypt.Net-Next": { + "target": "Package", + "version": "[4.0.3, )" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Sqlite": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[7.0.0, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json" + } + } + } + } +} \ No newline at end of file diff --git a/obj/BuaaLocationServer.csproj.nuget.g.props b/obj/BuaaLocationServer.csproj.nuget.g.props new file mode 100644 index 0000000..a7038c1 --- /dev/null +++ b/obj/BuaaLocationServer.csproj.nuget.g.props @@ -0,0 +1,26 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\shizh\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.4.0 + + + + + + + + + + + + + C:\Users\shizh\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5 + C:\Users\shizh\.nuget\packages\microsoft.entityframeworkcore.tools\7.0.0 + + \ No newline at end of file diff --git a/obj/BuaaLocationServer.csproj.nuget.g.targets b/obj/BuaaLocationServer.csproj.nuget.g.targets new file mode 100644 index 0000000..74f7410 --- /dev/null +++ b/obj/BuaaLocationServer.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..4257f4b --- /dev/null +++ b/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/obj/Debug/net7.0/BuaaLocationServer.AssemblyInfo.cs b/obj/Debug/net7.0/BuaaLocationServer.AssemblyInfo.cs new file mode 100644 index 0000000..4fe0da7 --- /dev/null +++ b/obj/Debug/net7.0/BuaaLocationServer.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("a4f66842-b6bb-4ab5-a81c-4d66a817cfb4")] +[assembly: System.Reflection.AssemblyCompanyAttribute("BuaaLocationServer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Debug")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("BuaaLocationServer")] +[assembly: System.Reflection.AssemblyTitleAttribute("BuaaLocationServer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net7.0/BuaaLocationServer.AssemblyInfoInputs.cache b/obj/Debug/net7.0/BuaaLocationServer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..ca14c66 --- /dev/null +++ b/obj/Debug/net7.0/BuaaLocationServer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +d4debd6036db4d53075f04049eb798cb0ee8f4ae diff --git a/obj/Debug/net7.0/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net7.0/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..bd15e8c --- /dev/null +++ b/obj/Debug/net7.0/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = BuaaLocationServer +build_property.RootNamespace = BuaaLocationServer +build_property.ProjectDir = C:\Users\shizh\Projects\BuaaLocationServer\ +build_property.RazorLangVersion = 7.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\shizh\Projects\BuaaLocationServer +build_property._RazorSourceGeneratorDebug = diff --git a/obj/Debug/net7.0/BuaaLocationServer.GlobalUsings.g.cs b/obj/Debug/net7.0/BuaaLocationServer.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/obj/Debug/net7.0/BuaaLocationServer.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/obj/Debug/net7.0/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cache b/obj/Debug/net7.0/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net7.0/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs b/obj/Debug/net7.0/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..f0cf1ff --- /dev/null +++ b/obj/Debug/net7.0/BuaaLocationServer.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")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Debug/net7.0/BuaaLocationServer.assets.cache b/obj/Debug/net7.0/BuaaLocationServer.assets.cache new file mode 100644 index 0000000..767ebd9 Binary files /dev/null and b/obj/Debug/net7.0/BuaaLocationServer.assets.cache differ diff --git a/obj/Debug/net7.0/BuaaLocationServer.csproj.AssemblyReference.cache b/obj/Debug/net7.0/BuaaLocationServer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..1ad0c26 Binary files /dev/null and b/obj/Debug/net7.0/BuaaLocationServer.csproj.AssemblyReference.cache differ diff --git a/obj/Debug/net7.0/BuaaLocationServer.csproj.BuildWithSkipAnalyzers b/obj/Debug/net7.0/BuaaLocationServer.csproj.BuildWithSkipAnalyzers new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net7.0/BuaaLocationServer.csproj.CopyComplete b/obj/Debug/net7.0/BuaaLocationServer.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Debug/net7.0/BuaaLocationServer.csproj.CoreCompileInputs.cache b/obj/Debug/net7.0/BuaaLocationServer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..04e862d --- /dev/null +++ b/obj/Debug/net7.0/BuaaLocationServer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +f5764fe67c7b811a33bb62a8d8c44d99663445bd diff --git a/obj/Debug/net7.0/BuaaLocationServer.csproj.FileListAbsolute.txt b/obj/Debug/net7.0/BuaaLocationServer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..295f447 --- /dev/null +++ b/obj/Debug/net7.0/BuaaLocationServer.csproj.FileListAbsolute.txt @@ -0,0 +1,76 @@ +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\appsettings.Development.json +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\appsettings.json +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\BuaaLocationServer.exe +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\BuaaLocationServer.deps.json +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\BuaaLocationServer.runtimeconfig.json +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\BuaaLocationServer.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\BuaaLocationServer.pdb +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\BCrypt.Net-Next.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Humanizer.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Microsoft.AspNetCore.OpenApi.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Microsoft.Data.Sqlite.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Design.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Microsoft.EntityFrameworkCore.Sqlite.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Microsoft.Extensions.DependencyModel.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Microsoft.IdentityModel.Logging.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Microsoft.IdentityModel.Tokens.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Microsoft.OpenApi.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Mono.TextTemplating.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\SQLitePCLRaw.batteries_v2.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\SQLitePCLRaw.core.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\SQLitePCLRaw.provider.e_sqlite3.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Swashbuckle.AspNetCore.Swagger.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\System.CodeDom.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\System.IdentityModel.Tokens.Jwt.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\alpine-arm\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\alpine-arm64\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\alpine-x64\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\browser-wasm\nativeassets\net7.0\e_sqlite3.a +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\linux-arm\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\linux-arm64\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\linux-armel\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\linux-mips64\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\linux-musl-arm\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\linux-s390x\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\linux-x64\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\linux-x86\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\osx-arm64\native\libe_sqlite3.dylib +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\osx-x64\native\libe_sqlite3.dylib +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\win-arm\native\e_sqlite3.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\win-arm64\native\e_sqlite3.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\win-x64\native\e_sqlite3.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Debug\net7.0\runtimes\win-x86\native\e_sqlite3.dll +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\BuaaLocationServer.csproj.AssemblyReference.cache +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\BuaaLocationServer.AssemblyInfoInputs.cache +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\BuaaLocationServer.AssemblyInfo.cs +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\BuaaLocationServer.csproj.CoreCompileInputs.cache +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cache +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\staticwebassets\msbuild.BuaaLocationServer.Microsoft.AspNetCore.StaticWebAssets.props +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\staticwebassets\msbuild.build.BuaaLocationServer.props +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\staticwebassets\msbuild.buildMultiTargeting.BuaaLocationServer.props +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\staticwebassets\msbuild.buildTransitive.BuaaLocationServer.props +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\staticwebassets.pack.json +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\staticwebassets.build.json +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\staticwebassets.development.json +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\scopedcss\bundle\BuaaLocationServer.styles.css +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\BuaaLocationServer.csproj.CopyComplete +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\BuaaLocationServer.dll +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\refint\BuaaLocationServer.dll +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\BuaaLocationServer.pdb +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\BuaaLocationServer.genruntimeconfig.cache +C:\Users\shizh\Projects\BuaaLocationServer\obj\Debug\net7.0\ref\BuaaLocationServer.dll diff --git a/obj/Debug/net7.0/BuaaLocationServer.dll b/obj/Debug/net7.0/BuaaLocationServer.dll new file mode 100644 index 0000000..a7dd934 Binary files /dev/null and b/obj/Debug/net7.0/BuaaLocationServer.dll differ diff --git a/obj/Debug/net7.0/BuaaLocationServer.genruntimeconfig.cache b/obj/Debug/net7.0/BuaaLocationServer.genruntimeconfig.cache new file mode 100644 index 0000000..6d78f17 --- /dev/null +++ b/obj/Debug/net7.0/BuaaLocationServer.genruntimeconfig.cache @@ -0,0 +1 @@ +737901e60639c9ebf1c7fa0ca3ec5acb843e1801 diff --git a/obj/Debug/net7.0/BuaaLocationServer.pdb b/obj/Debug/net7.0/BuaaLocationServer.pdb new file mode 100644 index 0000000..db28c85 Binary files /dev/null and b/obj/Debug/net7.0/BuaaLocationServer.pdb differ diff --git a/obj/Debug/net7.0/_IsIncrementalBuild b/obj/Debug/net7.0/_IsIncrementalBuild new file mode 100644 index 0000000..f630ee5 --- /dev/null +++ b/obj/Debug/net7.0/_IsIncrementalBuild @@ -0,0 +1 @@ +obj\Debug\net7.0\\_IsIncrementalBuild diff --git a/obj/Debug/net7.0/apphost.exe b/obj/Debug/net7.0/apphost.exe new file mode 100644 index 0000000..98048cc Binary files /dev/null and b/obj/Debug/net7.0/apphost.exe differ diff --git a/obj/Debug/net7.0/ref/BuaaLocationServer.dll b/obj/Debug/net7.0/ref/BuaaLocationServer.dll new file mode 100644 index 0000000..f078cf2 Binary files /dev/null and b/obj/Debug/net7.0/ref/BuaaLocationServer.dll differ diff --git a/obj/Debug/net7.0/refint/BuaaLocationServer.dll b/obj/Debug/net7.0/refint/BuaaLocationServer.dll new file mode 100644 index 0000000..f078cf2 Binary files /dev/null and b/obj/Debug/net7.0/refint/BuaaLocationServer.dll differ diff --git a/obj/Debug/net7.0/staticwebassets.build.json b/obj/Debug/net7.0/staticwebassets.build.json new file mode 100644 index 0000000..54a7c21 --- /dev/null +++ b/obj/Debug/net7.0/staticwebassets.build.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "kv/c8041lyW8jRPKfXej94TcneHKe8HQeDefYjIkMGI=", + "Source": "BuaaLocationServer", + "BasePath": "_content/BuaaLocationServer", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/obj/Debug/net7.0/staticwebassets/msbuild.build.BuaaLocationServer.props b/obj/Debug/net7.0/staticwebassets/msbuild.build.BuaaLocationServer.props new file mode 100644 index 0000000..5a6032a --- /dev/null +++ b/obj/Debug/net7.0/staticwebassets/msbuild.build.BuaaLocationServer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BuaaLocationServer.props b/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BuaaLocationServer.props new file mode 100644 index 0000000..1aae6b4 --- /dev/null +++ b/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BuaaLocationServer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BuaaLocationServer.props b/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BuaaLocationServer.props new file mode 100644 index 0000000..380e21b --- /dev/null +++ b/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BuaaLocationServer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..4257f4b --- /dev/null +++ b/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/obj/Release/net7.0/BuaaLocationServer.AssemblyInfo.cs b/obj/Release/net7.0/BuaaLocationServer.AssemblyInfo.cs new file mode 100644 index 0000000..0a1aedf --- /dev/null +++ b/obj/Release/net7.0/BuaaLocationServer.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("a4f66842-b6bb-4ab5-a81c-4d66a817cfb4")] +[assembly: System.Reflection.AssemblyCompanyAttribute("BuaaLocationServer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("BuaaLocationServer")] +[assembly: System.Reflection.AssemblyTitleAttribute("BuaaLocationServer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Release/net7.0/BuaaLocationServer.AssemblyInfoInputs.cache b/obj/Release/net7.0/BuaaLocationServer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c63849b --- /dev/null +++ b/obj/Release/net7.0/BuaaLocationServer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +c82c0adb31ef600335a48a865ada64ef451f92e0 diff --git a/obj/Release/net7.0/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net7.0/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..bd15e8c --- /dev/null +++ b/obj/Release/net7.0/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,17 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.RootNamespace = BuaaLocationServer +build_property.RootNamespace = BuaaLocationServer +build_property.ProjectDir = C:\Users\shizh\Projects\BuaaLocationServer\ +build_property.RazorLangVersion = 7.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\shizh\Projects\BuaaLocationServer +build_property._RazorSourceGeneratorDebug = diff --git a/obj/Release/net7.0/BuaaLocationServer.GlobalUsings.g.cs b/obj/Release/net7.0/BuaaLocationServer.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/obj/Release/net7.0/BuaaLocationServer.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/obj/Release/net7.0/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cache b/obj/Release/net7.0/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net7.0/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs b/obj/Release/net7.0/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..e75f8e1 --- /dev/null +++ b/obj/Release/net7.0/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,18 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Release/net7.0/BuaaLocationServer.assets.cache b/obj/Release/net7.0/BuaaLocationServer.assets.cache new file mode 100644 index 0000000..e93b5f1 Binary files /dev/null and b/obj/Release/net7.0/BuaaLocationServer.assets.cache differ diff --git a/obj/Release/net7.0/BuaaLocationServer.csproj.AssemblyReference.cache b/obj/Release/net7.0/BuaaLocationServer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..1ad0c26 Binary files /dev/null and b/obj/Release/net7.0/BuaaLocationServer.csproj.AssemblyReference.cache differ diff --git a/obj/Release/net7.0/BuaaLocationServer.csproj.CopyComplete b/obj/Release/net7.0/BuaaLocationServer.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net7.0/BuaaLocationServer.csproj.CoreCompileInputs.cache b/obj/Release/net7.0/BuaaLocationServer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..cc8572b --- /dev/null +++ b/obj/Release/net7.0/BuaaLocationServer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +f36b632b4dfff7d9606c7d8f2a0978b9f5ab1234 diff --git a/obj/Release/net7.0/BuaaLocationServer.csproj.FileListAbsolute.txt b/obj/Release/net7.0/BuaaLocationServer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..e02c1f6 --- /dev/null +++ b/obj/Release/net7.0/BuaaLocationServer.csproj.FileListAbsolute.txt @@ -0,0 +1,76 @@ +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\appsettings.Development.json +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\appsettings.json +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\BuaaLocationServer.exe +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\BuaaLocationServer.deps.json +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\BuaaLocationServer.runtimeconfig.json +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\BuaaLocationServer.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\BuaaLocationServer.pdb +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\BCrypt.Net-Next.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Humanizer.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Microsoft.AspNetCore.Authentication.JwtBearer.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Microsoft.AspNetCore.OpenApi.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Microsoft.Data.Sqlite.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Microsoft.EntityFrameworkCore.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Microsoft.EntityFrameworkCore.Design.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Microsoft.EntityFrameworkCore.Sqlite.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Microsoft.Extensions.DependencyModel.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Microsoft.IdentityModel.JsonWebTokens.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Microsoft.IdentityModel.Logging.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Microsoft.IdentityModel.Protocols.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Microsoft.IdentityModel.Tokens.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Microsoft.OpenApi.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Mono.TextTemplating.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\SQLitePCLRaw.batteries_v2.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\SQLitePCLRaw.core.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\SQLitePCLRaw.provider.e_sqlite3.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Swashbuckle.AspNetCore.Swagger.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Swashbuckle.AspNetCore.SwaggerGen.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\Swashbuckle.AspNetCore.SwaggerUI.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\System.CodeDom.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\System.IdentityModel.Tokens.Jwt.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\alpine-arm\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\alpine-arm64\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\alpine-x64\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\browser-wasm\nativeassets\net7.0\e_sqlite3.a +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\linux-arm\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\linux-arm64\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\linux-armel\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\linux-mips64\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\linux-musl-arm\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\linux-musl-arm64\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\linux-musl-x64\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\linux-s390x\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\linux-x64\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\linux-x86\native\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\maccatalyst-arm64\native\libe_sqlite3.dylib +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\maccatalyst-x64\native\libe_sqlite3.dylib +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\osx-arm64\native\libe_sqlite3.dylib +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\osx-x64\native\libe_sqlite3.dylib +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\win-arm\native\e_sqlite3.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\win-arm64\native\e_sqlite3.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\win-x64\native\e_sqlite3.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\runtimes\win-x86\native\e_sqlite3.dll +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\BuaaLocationServer.csproj.AssemblyReference.cache +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\BuaaLocationServer.AssemblyInfoInputs.cache +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\BuaaLocationServer.AssemblyInfo.cs +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\BuaaLocationServer.csproj.CoreCompileInputs.cache +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cache +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\staticwebassets\msbuild.BuaaLocationServer.Microsoft.AspNetCore.StaticWebAssets.props +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\staticwebassets\msbuild.build.BuaaLocationServer.props +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\staticwebassets\msbuild.buildMultiTargeting.BuaaLocationServer.props +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\staticwebassets\msbuild.buildTransitive.BuaaLocationServer.props +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\staticwebassets.pack.json +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\staticwebassets.build.json +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\staticwebassets.development.json +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\scopedcss\bundle\BuaaLocationServer.styles.css +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\BuaaLocationServer.csproj.CopyComplete +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\BuaaLocationServer.dll +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\refint\BuaaLocationServer.dll +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\BuaaLocationServer.pdb +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\BuaaLocationServer.genruntimeconfig.cache +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\ref\BuaaLocationServer.dll diff --git a/obj/Release/net7.0/BuaaLocationServer.dll b/obj/Release/net7.0/BuaaLocationServer.dll new file mode 100644 index 0000000..4e04ea1 Binary files /dev/null and b/obj/Release/net7.0/BuaaLocationServer.dll differ diff --git a/obj/Release/net7.0/BuaaLocationServer.genruntimeconfig.cache b/obj/Release/net7.0/BuaaLocationServer.genruntimeconfig.cache new file mode 100644 index 0000000..387d2a0 --- /dev/null +++ b/obj/Release/net7.0/BuaaLocationServer.genruntimeconfig.cache @@ -0,0 +1 @@ +50a995ce1142b23c7276cab60f73ac4dfc45a42e diff --git a/obj/Release/net7.0/BuaaLocationServer.pdb b/obj/Release/net7.0/BuaaLocationServer.pdb new file mode 100644 index 0000000..2ee96fc Binary files /dev/null and b/obj/Release/net7.0/BuaaLocationServer.pdb differ diff --git a/obj/Release/net7.0/_IsIncrementalBuild b/obj/Release/net7.0/_IsIncrementalBuild new file mode 100644 index 0000000..1184106 --- /dev/null +++ b/obj/Release/net7.0/_IsIncrementalBuild @@ -0,0 +1 @@ +obj\Release\net7.0\\_IsIncrementalBuild diff --git a/obj/Release/net7.0/apphost.exe b/obj/Release/net7.0/apphost.exe new file mode 100644 index 0000000..98048cc Binary files /dev/null and b/obj/Release/net7.0/apphost.exe differ diff --git a/obj/Release/net7.0/linux-x64/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs b/obj/Release/net7.0/linux-x64/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs new file mode 100644 index 0000000..4257f4b --- /dev/null +++ b/obj/Release/net7.0/linux-x64/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETCoreApp,Version=v7.0", FrameworkDisplayName = ".NET 7.0")] diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.AssemblyInfo.cs b/obj/Release/net7.0/linux-x64/BuaaLocationServer.AssemblyInfo.cs new file mode 100644 index 0000000..0a1aedf --- /dev/null +++ b/obj/Release/net7.0/linux-x64/BuaaLocationServer.AssemblyInfo.cs @@ -0,0 +1,24 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.Extensions.Configuration.UserSecrets.UserSecretsIdAttribute("a4f66842-b6bb-4ab5-a81c-4d66a817cfb4")] +[assembly: System.Reflection.AssemblyCompanyAttribute("BuaaLocationServer")] +[assembly: System.Reflection.AssemblyConfigurationAttribute("Release")] +[assembly: System.Reflection.AssemblyFileVersionAttribute("1.0.0.0")] +[assembly: System.Reflection.AssemblyInformationalVersionAttribute("1.0.0")] +[assembly: System.Reflection.AssemblyProductAttribute("BuaaLocationServer")] +[assembly: System.Reflection.AssemblyTitleAttribute("BuaaLocationServer")] +[assembly: System.Reflection.AssemblyVersionAttribute("1.0.0.0")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.AssemblyInfoInputs.cache b/obj/Release/net7.0/linux-x64/BuaaLocationServer.AssemblyInfoInputs.cache new file mode 100644 index 0000000..c63849b --- /dev/null +++ b/obj/Release/net7.0/linux-x64/BuaaLocationServer.AssemblyInfoInputs.cache @@ -0,0 +1 @@ +c82c0adb31ef600335a48a865ada64ef451f92e0 diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net7.0/linux-x64/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig new file mode 100644 index 0000000..172b36b --- /dev/null +++ b/obj/Release/net7.0/linux-x64/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig @@ -0,0 +1,21 @@ +is_global = true +build_property.TargetFramework = net7.0 +build_property.TargetPlatformMinVersion = +build_property.UsingMicrosoftNETSdkWeb = true +build_property.ProjectTypeGuids = +build_property.InvariantGlobalization = +build_property.PlatformNeutralAssembly = +build_property.EnforceExtendedAnalyzerRules = +build_property._SupportedPlatformList = Linux,macOS,Windows +build_property.EnableAotAnalyzer = +build_property.EnableSingleFileAnalyzer = true +build_property.EnableTrimAnalyzer = true +build_property.IncludeAllContentForSelfExtract = +build_property.RootNamespace = BuaaLocationServer +build_property.RootNamespace = BuaaLocationServer +build_property.ProjectDir = C:\Users\shizh\Projects\BuaaLocationServer\ +build_property.RazorLangVersion = 7.0 +build_property.SupportLocalizedComponentNames = +build_property.GenerateRazorMetadataSourceChecksumAttributes = +build_property.MSBuildProjectDirectory = C:\Users\shizh\Projects\BuaaLocationServer +build_property._RazorSourceGeneratorDebug = diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.GlobalUsings.g.cs b/obj/Release/net7.0/linux-x64/BuaaLocationServer.GlobalUsings.g.cs new file mode 100644 index 0000000..025530a --- /dev/null +++ b/obj/Release/net7.0/linux-x64/BuaaLocationServer.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/obj/Release/net7.0/linux-x64/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cache b/obj/Release/net7.0/linux-x64/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cache new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs b/obj/Release/net7.0/linux-x64/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs new file mode 100644 index 0000000..e75f8e1 --- /dev/null +++ b/obj/Release/net7.0/linux-x64/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs @@ -0,0 +1,18 @@ +//------------------------------------------------------------------------------ +// +// 此代码由工具生成。 +// 运行时版本:4.0.30319.42000 +// +// 对此文件的更改可能会导致不正确的行为,并且如果 +// 重新生成代码,这些更改将会丢失。 +// +//------------------------------------------------------------------------------ + +using System; +using System.Reflection; + +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Microsoft.AspNetCore.OpenApi")] +[assembly: Microsoft.AspNetCore.Mvc.ApplicationParts.ApplicationPartAttribute("Swashbuckle.AspNetCore.SwaggerGen")] + +// 由 MSBuild WriteCodeFragment 类生成。 + diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.assets.cache b/obj/Release/net7.0/linux-x64/BuaaLocationServer.assets.cache new file mode 100644 index 0000000..3311908 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/BuaaLocationServer.assets.cache differ diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.AssemblyReference.cache b/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.AssemblyReference.cache new file mode 100644 index 0000000..1ad0c26 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.AssemblyReference.cache differ diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.CopyComplete b/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.CopyComplete new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.CoreCompileInputs.cache b/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..818a66c --- /dev/null +++ b/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +4570bc01d3de0953300b79406832b2d2d13d8375 diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.FileListAbsolute.txt b/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..fcd1cb7 --- /dev/null +++ b/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.FileListAbsolute.txt @@ -0,0 +1,371 @@ +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\appsettings.Development.json +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\appsettings.json +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\BuaaLocationServer +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\BuaaLocationServer.deps.json +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\BuaaLocationServer.runtimeconfig.json +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\BuaaLocationServer.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\BuaaLocationServer.pdb +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\BCrypt.Net-Next.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Humanizer.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Authentication.JwtBearer.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.OpenApi.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Data.Sqlite.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.EntityFrameworkCore.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.EntityFrameworkCore.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.EntityFrameworkCore.Design.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.EntityFrameworkCore.Relational.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.EntityFrameworkCore.Sqlite.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.DependencyModel.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.IdentityModel.JsonWebTokens.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.IdentityModel.Logging.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.IdentityModel.Protocols.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.IdentityModel.Protocols.OpenIdConnect.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.IdentityModel.Tokens.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.OpenApi.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Mono.TextTemplating.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\SQLitePCLRaw.batteries_v2.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\SQLitePCLRaw.core.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\SQLitePCLRaw.provider.e_sqlite3.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Swashbuckle.AspNetCore.Swagger.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Swashbuckle.AspNetCore.SwaggerGen.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Swashbuckle.AspNetCore.SwaggerUI.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.CodeDom.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.IdentityModel.Tokens.Jwt.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.CSharp.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.VisualBasic.Core.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.VisualBasic.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Win32.Primitives.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Win32.Registry.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.AppContext.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Buffers.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Collections.Concurrent.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Collections.Immutable.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Collections.NonGeneric.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Collections.Specialized.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Collections.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.ComponentModel.Annotations.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.ComponentModel.DataAnnotations.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.ComponentModel.EventBasedAsync.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.ComponentModel.Primitives.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.ComponentModel.TypeConverter.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.ComponentModel.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Configuration.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Console.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Core.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Data.Common.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Data.DataSetExtensions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Data.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Diagnostics.Contracts.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Diagnostics.Debug.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Diagnostics.DiagnosticSource.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Diagnostics.FileVersionInfo.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Diagnostics.Process.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Diagnostics.StackTrace.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Diagnostics.TextWriterTraceListener.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Diagnostics.Tools.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Diagnostics.TraceSource.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Diagnostics.Tracing.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Drawing.Primitives.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Drawing.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Dynamic.Runtime.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Formats.Asn1.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Formats.Tar.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Globalization.Calendars.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Globalization.Extensions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Globalization.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.IO.Compression.Brotli.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.IO.Compression.FileSystem.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.IO.Compression.ZipFile.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.IO.Compression.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.IO.FileSystem.AccessControl.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.IO.FileSystem.DriveInfo.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.IO.FileSystem.Primitives.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.IO.FileSystem.Watcher.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.IO.FileSystem.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.IO.IsolatedStorage.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.IO.MemoryMappedFiles.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.IO.Pipes.AccessControl.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.IO.Pipes.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.IO.UnmanagedMemoryStream.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.IO.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Linq.Expressions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Linq.Parallel.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Linq.Queryable.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Linq.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Memory.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.Http.Json.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.Http.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.HttpListener.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.Mail.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.NameResolution.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.NetworkInformation.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.Ping.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.Primitives.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.Quic.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.Requests.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.Security.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.ServicePoint.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.Sockets.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.WebClient.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.WebHeaderCollection.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.WebProxy.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.WebSockets.Client.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.WebSockets.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Net.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Numerics.Vectors.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Numerics.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.ObjectModel.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Private.CoreLib.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Private.DataContractSerialization.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Private.Uri.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Private.Xml.Linq.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Private.Xml.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Reflection.DispatchProxy.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Reflection.Emit.ILGeneration.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Reflection.Emit.Lightweight.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Reflection.Emit.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Reflection.Extensions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Reflection.Metadata.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Reflection.Primitives.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Reflection.TypeExtensions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Reflection.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Resources.Reader.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Resources.ResourceManager.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Resources.Writer.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Runtime.CompilerServices.Unsafe.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Runtime.CompilerServices.VisualC.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Runtime.Extensions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Runtime.Handles.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Runtime.InteropServices.JavaScript.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Runtime.InteropServices.RuntimeInformation.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Runtime.InteropServices.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Runtime.Intrinsics.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Runtime.Loader.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Runtime.Numerics.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Runtime.Serialization.Formatters.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Runtime.Serialization.Json.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Runtime.Serialization.Primitives.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Runtime.Serialization.Xml.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Runtime.Serialization.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Runtime.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Security.AccessControl.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Security.Claims.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Security.Cryptography.Algorithms.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Security.Cryptography.Cng.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Security.Cryptography.Csp.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Security.Cryptography.Encoding.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Security.Cryptography.OpenSsl.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Security.Cryptography.Primitives.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Security.Cryptography.X509Certificates.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Security.Cryptography.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Security.Principal.Windows.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Security.Principal.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Security.SecureString.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Security.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.ServiceModel.Web.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.ServiceProcess.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Text.Encoding.CodePages.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Text.Encoding.Extensions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Text.Encoding.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Text.Encodings.Web.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Text.Json.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Text.RegularExpressions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Threading.Channels.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Threading.Overlapped.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Threading.Tasks.Dataflow.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Threading.Tasks.Extensions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Threading.Tasks.Parallel.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Threading.Tasks.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Threading.Thread.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Threading.ThreadPool.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Threading.Timer.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Threading.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Transactions.Local.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Transactions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.ValueTuple.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Web.HttpUtility.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Web.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Windows.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Xml.Linq.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Xml.ReaderWriter.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Xml.Serialization.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Xml.XDocument.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Xml.XPath.XDocument.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Xml.XPath.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Xml.XmlDocument.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Xml.XmlSerializer.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Xml.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\WindowsBase.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\mscorlib.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\netstandard.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Antiforgery.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Authentication.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Authentication.Cookies.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Authentication.Core.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Authentication.OAuth.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Authentication.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Authorization.Policy.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Authorization.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Components.Authorization.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Components.Forms.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Components.Server.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Components.Web.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Components.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Connections.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.CookiePolicy.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Cors.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Cryptography.Internal.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Cryptography.KeyDerivation.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.DataProtection.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.DataProtection.Extensions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.DataProtection.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Diagnostics.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Diagnostics.HealthChecks.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Diagnostics.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.HostFiltering.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Hosting.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Hosting.Server.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Hosting.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Html.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Http.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Http.Connections.Common.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Http.Connections.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Http.Extensions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Http.Features.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Http.Results.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Http.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.HttpLogging.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.HttpOverrides.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.HttpsPolicy.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Identity.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Localization.Routing.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Localization.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Metadata.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Mvc.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Mvc.ApiExplorer.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Mvc.Core.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Mvc.Cors.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Mvc.DataAnnotations.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Mvc.Formatters.Json.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Mvc.Formatters.Xml.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Mvc.Localization.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Mvc.Razor.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Mvc.RazorPages.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Mvc.TagHelpers.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Mvc.ViewFeatures.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Mvc.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.OutputCaching.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.RateLimiting.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Razor.Runtime.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Razor.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.RequestDecompression.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.ResponseCaching.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.ResponseCaching.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.ResponseCompression.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Rewrite.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Routing.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Routing.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Server.HttpSys.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Server.IIS.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Server.IISIntegration.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Server.Kestrel.Core.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Server.Kestrel.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.Session.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.SignalR.Common.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.SignalR.Core.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.SignalR.Protocols.Json.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.SignalR.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.StaticFiles.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.WebSockets.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.WebUtilities.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.AspNetCore.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Caching.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Caching.Memory.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Configuration.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Configuration.Binder.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Configuration.CommandLine.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Configuration.EnvironmentVariables.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Configuration.FileExtensions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Configuration.Ini.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Configuration.Json.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Configuration.KeyPerFile.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Configuration.UserSecrets.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Configuration.Xml.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Configuration.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.DependencyInjection.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.DependencyInjection.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Diagnostics.HealthChecks.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Diagnostics.HealthChecks.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Features.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.FileProviders.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.FileProviders.Composite.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.FileProviders.Embedded.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.FileProviders.Physical.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.FileSystemGlobbing.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Hosting.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Hosting.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Http.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Identity.Core.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Identity.Stores.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Localization.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Localization.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Logging.Abstractions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Logging.Configuration.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Logging.Console.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Logging.Debug.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Logging.EventLog.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Logging.EventSource.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Logging.TraceSource.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Logging.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.ObjectPool.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Options.ConfigurationExtensions.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Options.DataAnnotations.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Options.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.Primitives.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Extensions.WebEncoders.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.JSInterop.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\Microsoft.Net.Http.Headers.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Diagnostics.EventLog.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.IO.Pipelines.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Security.Cryptography.Pkcs.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Security.Cryptography.Xml.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\System.Threading.RateLimiting.dll +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\createdump +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\libSystem.Globalization.Native.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\libSystem.IO.Compression.Native.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\libSystem.Native.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\libSystem.Net.Security.Native.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\libSystem.Security.Cryptography.Native.OpenSsl.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\libclrgc.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\libclrjit.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\libcoreclr.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\libcoreclrtraceptprovider.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\libhostfxr.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\libhostpolicy.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\libmscordaccore.so +C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\linux-x64\libmscordbi.so +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\BuaaLocationServer.csproj.AssemblyReference.cache +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\BuaaLocationServer.AssemblyInfoInputs.cache +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\BuaaLocationServer.AssemblyInfo.cs +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\BuaaLocationServer.csproj.CoreCompileInputs.cache +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cache +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\staticwebassets\msbuild.BuaaLocationServer.Microsoft.AspNetCore.StaticWebAssets.props +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\staticwebassets\msbuild.build.BuaaLocationServer.props +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\staticwebassets\msbuild.buildMultiTargeting.BuaaLocationServer.props +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\staticwebassets\msbuild.buildTransitive.BuaaLocationServer.props +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\staticwebassets.pack.json +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\staticwebassets.build.json +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\staticwebassets.development.json +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\scopedcss\bundle\BuaaLocationServer.styles.css +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\BuaaLocationServer.csproj.CopyComplete +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\BuaaLocationServer.dll +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\refint\BuaaLocationServer.dll +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\BuaaLocationServer.pdb +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\BuaaLocationServer.genruntimeconfig.cache +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\ref\BuaaLocationServer.dll diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.deps.json b/obj/Release/net7.0/linux-x64/BuaaLocationServer.deps.json new file mode 100644 index 0000000..b818536 --- /dev/null +++ b/obj/Release/net7.0/linux-x64/BuaaLocationServer.deps.json @@ -0,0 +1,3601 @@ +{ + "runtimeTarget": { + "name": ".NETCoreApp,Version=v7.0/linux-x64", + "signature": "" + }, + "compilationOptions": {}, + "targets": { + ".NETCoreApp,Version=v7.0": {}, + ".NETCoreApp,Version=v7.0/linux-x64": { + "BuaaLocationServer/1.0.0": { + "dependencies": { + "BCrypt.Net-Next": "4.0.3", + "Microsoft.AspNetCore.Authentication.JwtBearer": "7.0.0", + "Microsoft.AspNetCore.OpenApi": "7.0.0", + "Microsoft.EntityFrameworkCore": "7.0.0", + "Microsoft.EntityFrameworkCore.Sqlite": "7.0.0", + "Microsoft.EntityFrameworkCore.Tools": "7.0.0", + "Swashbuckle.AspNetCore": "6.4.0", + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64": "7.0.0", + "runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64": "7.0.0" + }, + "runtime": { + "BuaaLocationServer.dll": {} + } + }, + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/7.0.0": { + "runtime": { + "Microsoft.CSharp.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Win32.Registry.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Collections.Concurrent.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Collections.Immutable.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Collections.NonGeneric.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Collections.Specialized.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Collections.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.ComponentModel.Annotations.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.ComponentModel.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.ComponentModel.TypeConverter.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.ComponentModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Console.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Data.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Diagnostics.DiagnosticSource.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Diagnostics.StackTrace.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Diagnostics.TraceSource.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Diagnostics.Tracing.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Drawing.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Drawing.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Formats.Asn1.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.IO.Compression.Brotli.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.IO.Compression.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.IO.FileSystem.Watcher.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.IO.MemoryMappedFiles.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Linq.Expressions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Linq.Queryable.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Linq.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Memory.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Net.Http.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Net.NameResolution.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Net.NetworkInformation.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Net.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Net.Quic.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Net.Security.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Net.Sockets.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Net.WebSockets.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.ObjectModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Private.CoreLib.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Private.DataContractSerialization.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Private.Uri.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Private.Xml.Linq.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Private.Xml.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Reflection.Emit.ILGeneration.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Reflection.Emit.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Reflection.Metadata.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Reflection.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Runtime.InteropServices.RuntimeInformation.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Runtime.InteropServices.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Runtime.Loader.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Runtime.Numerics.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Runtime.Serialization.Formatters.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Runtime.Serialization.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Runtime.Serialization.Xml.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Security.AccessControl.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Security.Claims.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Security.Cryptography.Algorithms.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Security.Cryptography.Cng.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Security.Cryptography.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Security.Cryptography.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Security.Principal.Windows.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Text.Encoding.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Text.Encodings.Web.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Text.Json.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Text.RegularExpressions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Threading.Channels.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Threading.Thread.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Threading.ThreadPool.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Threading.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Transactions.Local.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Xml.Linq.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Xml.ReaderWriter.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Xml.XDocument.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Xml.XPath.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Xml.XmlSerializer.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.dll": { + "assemblyVersion": "4.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "netstandard.dll": { + "assemblyVersion": "2.1.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64/7.0.0": { + "runtime": { + "Microsoft.AspNetCore.Antiforgery.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Authentication.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Authentication.Core.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Authentication.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Authorization.Policy.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Authorization.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Components.Authorization.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Components.Server.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Components.Web.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Components.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Connections.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Cors.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Cryptography.Internal.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.DataProtection.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.DataProtection.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.DataProtection.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Diagnostics.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Diagnostics.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.HostFiltering.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Hosting.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Hosting.Server.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Hosting.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Html.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Http.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Http.Connections.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Http.Connections.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Http.Extensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Http.Features.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Http.Results.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Http.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.HttpOverrides.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Metadata.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Mvc.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Mvc.ApiExplorer.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Mvc.Core.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Mvc.Cors.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Mvc.DataAnnotations.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Json.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Mvc.Formatters.Xml.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Mvc.Localization.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Mvc.Razor.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Mvc.RazorPages.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Mvc.TagHelpers.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Mvc.ViewFeatures.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Mvc.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.OutputCaching.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Razor.Runtime.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Razor.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.ResponseCaching.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Routing.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Routing.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Server.IIS.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Server.IISIntegration.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Server.Kestrel.Core.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.Server.Kestrel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.SignalR.Common.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.SignalR.Core.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.SignalR.Protocols.Json.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.SignalR.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.StaticFiles.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.WebSockets.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.WebUtilities.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.AspNetCore.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.Extensions.Caching.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Caching.Memory.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Configuration.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Configuration.Binder.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Configuration.CommandLine.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Configuration.EnvironmentVariables.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Configuration.FileExtensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Configuration.Json.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Configuration.KeyPerFile.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.Extensions.Configuration.UserSecrets.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Configuration.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.DependencyInjection.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Features.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.Extensions.FileProviders.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.FileProviders.Composite.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.FileProviders.Embedded.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.Extensions.FileProviders.Physical.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.FileSystemGlobbing.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Hosting.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Hosting.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Localization.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.Extensions.Localization.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.Extensions.Logging.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Logging.Configuration.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Logging.Console.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Logging.Debug.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Logging.EventLog.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Logging.EventSource.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Logging.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.ObjectPool.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.Extensions.Options.ConfigurationExtensions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Options.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.Primitives.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "Microsoft.Extensions.WebEncoders.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.JSInterop.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "Microsoft.Net.Http.Headers.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + }, + "System.Diagnostics.EventLog.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.IO.Pipelines.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Security.Cryptography.Pkcs.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + }, + "System.Security.Cryptography.Xml.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "BCrypt.Net-Next/4.0.3": { + "runtime": { + "lib/net6.0/BCrypt.Net-Next.dll": { + "assemblyVersion": "4.0.3.0", + "fileVersion": "4.0.3.0" + } + } + }, + "Humanizer.Core/2.14.1": {}, + "Microsoft.AspNetCore.Authentication.JwtBearer/7.0.0": { + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.15.1" + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + } + } + }, + "Microsoft.AspNetCore.OpenApi/7.0.0": { + "dependencies": { + "Microsoft.OpenApi": "1.4.3" + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51819" + } + } + }, + "Microsoft.CSharp/4.5.0": {}, + "Microsoft.Data.Sqlite.Core/7.0.0": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.2" + }, + "runtime": { + "lib/net6.0/Microsoft.Data.Sqlite.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51807" + } + } + }, + "Microsoft.EntityFrameworkCore/7.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "7.0.0", + "Microsoft.EntityFrameworkCore.Analyzers": "7.0.0", + "Microsoft.Extensions.Caching.Memory": "7.0.0", + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.Logging": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51807" + } + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/7.0.0": { + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51807" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/7.0.0": {}, + "Microsoft.EntityFrameworkCore.Design/7.0.0": { + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.EntityFrameworkCore.Relational": "7.0.0", + "Microsoft.Extensions.DependencyModel": "7.0.0", + "Mono.TextTemplating": "2.2.1" + } + }, + "Microsoft.EntityFrameworkCore.Relational/7.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore": "7.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51807" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/7.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "7.0.0", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.2" + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/7.0.0": { + "dependencies": { + "Microsoft.Data.Sqlite.Core": "7.0.0", + "Microsoft.EntityFrameworkCore.Relational": "7.0.0", + "Microsoft.Extensions.DependencyModel": "7.0.0" + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51807" + } + } + }, + "Microsoft.EntityFrameworkCore.Tools/7.0.0": { + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "7.0.0" + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": {}, + "Microsoft.Extensions.Caching.Abstractions/7.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + } + }, + "Microsoft.Extensions.Caching.Memory/7.0.0": { + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + } + }, + "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": {}, + "Microsoft.Extensions.DependencyModel/7.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "7.0.0", + "System.Text.Json": "7.0.0" + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": { + "assemblyVersion": "7.0.0.0", + "fileVersion": "7.0.22.51805" + } + } + }, + "Microsoft.Extensions.Logging/7.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": {}, + "Microsoft.Extensions.Options/7.0.0": { + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + } + }, + "Microsoft.Extensions.Primitives/7.0.0": {}, + "Microsoft.IdentityModel.JsonWebTokens/6.15.1": { + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.15.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "assemblyVersion": "6.15.1.0", + "fileVersion": "6.15.1.30119" + } + } + }, + "Microsoft.IdentityModel.Logging/6.15.1": { + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "assemblyVersion": "6.15.1.0", + "fileVersion": "6.15.1.30119" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.15.1": { + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.15.1", + "Microsoft.IdentityModel.Tokens": "6.15.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "assemblyVersion": "6.15.1.0", + "fileVersion": "6.15.1.30119" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.15.1": { + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.15.1", + "System.IdentityModel.Tokens.Jwt": "6.15.1" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "assemblyVersion": "6.15.1.0", + "fileVersion": "6.15.1.30119" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.15.1": { + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.15.1", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "assemblyVersion": "6.15.1.0", + "fileVersion": "6.15.1.30119" + } + } + }, + "Microsoft.OpenApi/1.4.3": { + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "assemblyVersion": "1.4.3.0", + "fileVersion": "1.4.3.0" + } + } + }, + "Mono.TextTemplating/2.2.1": { + "dependencies": { + "System.CodeDom": "4.4.0" + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.2": { + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.2", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.2" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": { + "assemblyVersion": "2.1.2.1721", + "fileVersion": "2.1.2.1721" + } + } + }, + "SQLitePCLRaw.core/2.1.2": { + "dependencies": { + "System.Memory": "4.5.3" + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": { + "assemblyVersion": "2.1.2.1721", + "fileVersion": "2.1.2.1721" + } + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.2": { + "native": { + "runtimes/linux-x64/native/libe_sqlite3.so": { + "fileVersion": "0.0.0.0" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.2": { + "dependencies": { + "SQLitePCLRaw.core": "2.1.2" + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": { + "assemblyVersion": "2.1.2.1721", + "fileVersion": "2.1.2.1721" + } + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "dependencies": { + "Microsoft.OpenApi": "1.4.3" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "assemblyVersion": "6.4.0.0", + "fileVersion": "6.4.0.0" + } + } + }, + "System.CodeDom/4.4.0": {}, + "System.IdentityModel.Tokens.Jwt/6.15.1": { + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.15.1", + "Microsoft.IdentityModel.Tokens": "6.15.1" + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "assemblyVersion": "6.15.1.0", + "fileVersion": "6.15.1.30119" + } + } + }, + "System.Memory/4.5.3": {}, + "System.Security.Cryptography.Cng/4.5.0": {}, + "System.Text.Encodings.Web/7.0.0": {}, + "System.Text.Json/7.0.0": { + "dependencies": { + "System.Text.Encodings.Web": "7.0.0" + } + } + } + }, + "libraries": { + "BuaaLocationServer/1.0.0": { + "type": "project", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.NETCore.App.Runtime.linux-x64/7.0.0": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "runtimepack.Microsoft.AspNetCore.App.Runtime.linux-x64/7.0.0": { + "type": "runtimepack", + "serviceable": false, + "sha512": "" + }, + "BCrypt.Net-Next/4.0.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-W+U9WvmZQgi5cX6FS5GDtDoPzUCV4LkBLkywq/kRZhuDwcbavOzcDAr3LXJFqHUi952Yj3LEYoWW0jbEUQChsA==", + "path": "bcrypt.net-next/4.0.3", + "hashPath": "bcrypt.net-next.4.0.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.Authentication.JwtBearer/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-q2suMVl1gO6rBJkV7rxm0F2sBufValm2RKxY3zoWN4y6cAufDJYmzpLWPKju3kKFJFKNgivWgoTw0dvf4W5QDQ==", + "path": "microsoft.aspnetcore.authentication.jwtbearer/7.0.0", + "hashPath": "microsoft.aspnetcore.authentication.jwtbearer.7.0.0.nupkg.sha512" + }, + "Microsoft.AspNetCore.OpenApi/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-P1mkNhZ3IwU3phNLIUkgqVXb1exnooTalIYwpSON3oKKkcRtACDgS4WpO+xnwFw4KzV0bmgkUqB3acXxIefvvg==", + "path": "microsoft.aspnetcore.openapi/7.0.0", + "hashPath": "microsoft.aspnetcore.openapi.7.0.0.nupkg.sha512" + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "path": "microsoft.csharp/4.5.0", + "hashPath": "microsoft.csharp.4.5.0.nupkg.sha512" + }, + "Microsoft.Data.Sqlite.Core/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WC7SANtaFTmQ/WPyhrE96h88MrH28C7kTBenDf5Eo+IR6CbWM0Uw2pR2++tyYr3qe/zSIsIYroEupB1mLg/adw==", + "path": "microsoft.data.sqlite.core/7.0.0", + "hashPath": "microsoft.data.sqlite.core.7.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-9W+IfmAzMrp2ZpKZLhgTlWljSBM9Erldis1us61DAGi+L7Q6vilTbe1G2zDxtYO8F2H0I0Qnupdx5Cp4s2xoZw==", + "path": "microsoft.entityframeworkcore/7.0.0", + "hashPath": "microsoft.entityframeworkcore.7.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Pfu3Zjj5+d2Gt27oE9dpGiF/VobBB+s5ogrfI9sBsXQE1SG49RqVz5+IyeNnzhyejFrPIQsPDRMchhcojy4Hbw==", + "path": "microsoft.entityframeworkcore.abstractions/7.0.0", + "hashPath": "microsoft.entityframeworkcore.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Analyzers/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Qkd2H+jLe37o5ku+LjT6qf7kAHY75Yfn2bBDQgqr13DTOLYpEy1Mt93KPFjaZvIu/srEcbfGGMRL7urKm5zN8Q==", + "path": "microsoft.entityframeworkcore.analyzers/7.0.0", + "hashPath": "microsoft.entityframeworkcore.analyzers.7.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Design/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-fEEU/zZ/VblZRQxHNZxgGKVtEtOGqEAmuHkACV1i0H031bM8PQKTS7PlKPVOgg0C1v+6yeHoIAGGgbAvG9f7kw==", + "path": "microsoft.entityframeworkcore.design/7.0.0", + "hashPath": "microsoft.entityframeworkcore.design.7.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Relational/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eQiYygtR2xZ0Uy7KtiFRHpoEx/U8xNwbNRgu1pEJgSxbJLtg6tDL1y2YcIbSuIRSNEljXIIHq/apEhGm1QL70g==", + "path": "microsoft.entityframeworkcore.relational/7.0.0", + "hashPath": "microsoft.entityframeworkcore.relational.7.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-tufYoEHetVeALPRqzCi4YukL+uoS0pBi/6m3uSCuM5NxO/tTbuizvvBRa3qJNYZOvF3K7m4lUmmcCymKr3JSSQ==", + "path": "microsoft.entityframeworkcore.sqlite/7.0.0", + "hashPath": "microsoft.entityframeworkcore.sqlite.7.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-aUClrz1PT06fPDY+9f2IeDhYXj3/oPxM0r3I6syiyP3Th59hObVI0QsRu5+y7FbJIkO3NgyAi+e2vzWGhmBVbQ==", + "path": "microsoft.entityframeworkcore.sqlite.core/7.0.0", + "hashPath": "microsoft.entityframeworkcore.sqlite.core.7.0.0.nupkg.sha512" + }, + "Microsoft.EntityFrameworkCore.Tools/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DtLJ0usm8NdPbRDxvNUBAYgnvqhodr/HPb461I+jrgHw5ZKF0vRTaokNth2Zy9xiw1ZTpT4c+S40f7AHWakODg==", + "path": "microsoft.entityframeworkcore.tools/7.0.0", + "hashPath": "microsoft.entityframeworkcore.tools.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hashPath": "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==", + "path": "microsoft.extensions.caching.abstractions/7.0.0", + "hashPath": "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Caching.Memory/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==", + "path": "microsoft.extensions.caching.memory/7.0.0", + "hashPath": "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==", + "path": "microsoft.extensions.configuration.abstractions/7.0.0", + "hashPath": "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==", + "path": "microsoft.extensions.dependencyinjection/7.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", + "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", + "hashPath": "microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.DependencyModel/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==", + "path": "microsoft.extensions.dependencymodel/7.0.0", + "hashPath": "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==", + "path": "microsoft.extensions.logging/7.0.0", + "hashPath": "microsoft.extensions.logging.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", + "path": "microsoft.extensions.logging.abstractions/7.0.0", + "hashPath": "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Options/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==", + "path": "microsoft.extensions.options/7.0.0", + "hashPath": "microsoft.extensions.options.7.0.0.nupkg.sha512" + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", + "path": "microsoft.extensions.primitives/7.0.0", + "hashPath": "microsoft.extensions.primitives.7.0.0.nupkg.sha512" + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-X5K/Pt02agb1V+khh5u7Q8hg02IVTshxV5owpR7UdQ9zfs0+A6qzca0F9jyv3o8SlOjEFHBabs+5cp7Noofzvg==", + "path": "microsoft.identitymodel.jsonwebtokens/6.15.1", + "hashPath": "microsoft.identitymodel.jsonwebtokens.6.15.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Logging/6.15.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-PpZHL/Bt/8vQ8g/6LxweuI1EusV0ogUBYnGM+bPeL/SG89gx2n05xKNE/U5JNEkLFLL+sk7O8T7c/PXhFtUtUg==", + "path": "microsoft.identitymodel.logging/6.15.1", + "hashPath": "microsoft.identitymodel.logging.6.15.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols/6.15.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-6nHr+4yE8vj620Vy4L0pl7kmkvWc06wBrJ+AOo/gjqzu/UD/MYgySUqRGlZYrvvNmKkUWMw4hdn78MPCb4bstA==", + "path": "microsoft.identitymodel.protocols/6.15.1", + "hashPath": "microsoft.identitymodel.protocols.6.15.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.15.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WwecgT/PNrytLNUWjkYtnnG2LXMAzkINSaZM+8dPPiEpOGz1bQDBWAenTSurYICxGoA1sOPriFXk+ocnQyprKw==", + "path": "microsoft.identitymodel.protocols.openidconnect/6.15.1", + "hashPath": "microsoft.identitymodel.protocols.openidconnect.6.15.1.nupkg.sha512" + }, + "Microsoft.IdentityModel.Tokens/6.15.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-0bd0ocKuNai0/GdhboIW37R6z8I0vFqlmiPeG055SJxPPJ7dfBo2tjJ3bPV9vjFCRDuusj24dldOsg4hWui6iw==", + "path": "microsoft.identitymodel.tokens/6.15.1", + "hashPath": "microsoft.identitymodel.tokens.6.15.1.nupkg.sha512" + }, + "Microsoft.OpenApi/1.4.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==", + "path": "microsoft.openapi/1.4.3", + "hashPath": "microsoft.openapi.1.4.3.nupkg.sha512" + }, + "Mono.TextTemplating/2.2.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", + "path": "mono.texttemplating/2.2.1", + "hashPath": "mono.texttemplating.2.2.1.nupkg.sha512" + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-ilkvNhrTersLmIVAcDwwPqfhUFCg19Z1GVMvCSi3xk6Akq94f4qadLORQCq/T8+9JgMiPs+F/NECw5uauviaNw==", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.2", + "hashPath": "sqlitepclraw.bundle_e_sqlite3.2.1.2.nupkg.sha512" + }, + "SQLitePCLRaw.core/2.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-A8EBepVqY2lnAp3a8jnhbgzF2tlj2S3HcJQGANTYg/TbYbKa8Z5cM1h74An/vy0svhfzT7tVY0sFmUglLgv+2g==", + "path": "sqlitepclraw.core/2.1.2", + "hashPath": "sqlitepclraw.core.2.1.2.nupkg.sha512" + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-zibGtku8M4Eea1R3ZCAxc86QbNvyEN17mAcQkvWKBuHvRpMiK2g5anG4R5Be7cWKSd1i6baYz8y4dMMAKcXKPg==", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.2", + "hashPath": "sqlitepclraw.lib.e_sqlite3.2.1.2.nupkg.sha512" + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.2": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lxCZarZdvAsMl2zw9bXHrXK6RxVhB4b23iTFhCOdHFhxfbsxLxWf+ocvswJwR/9Wh/E//ddMi+wJGqUKV7VwoA==", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.2", + "hashPath": "sqlitepclraw.provider.e_sqlite3.2.1.2.nupkg.sha512" + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "path": "swashbuckle.aspnetcore/6.4.0", + "hashPath": "swashbuckle.aspnetcore.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512" + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "hashPath": "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512" + }, + "System.CodeDom/4.4.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", + "path": "system.codedom/4.4.0", + "hashPath": "system.codedom.4.4.0.nupkg.sha512" + }, + "System.IdentityModel.Tokens.Jwt/6.15.1": { + "type": "package", + "serviceable": true, + "sha512": "sha512-q3ZLyWmpX4+jW4XITf7Axd+9sC6w2NrQaKcQQT9A8waoknHgaNwSeookpUmPMQDqS0afT9Lh0JYub196vzuzbA==", + "path": "system.identitymodel.tokens.jwt/6.15.1", + "hashPath": "system.identitymodel.tokens.jwt.6.15.1.nupkg.sha512" + }, + "System.Memory/4.5.3": { + "type": "package", + "serviceable": true, + "sha512": "sha512-3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "path": "system.memory/4.5.3", + "hashPath": "system.memory.4.5.3.nupkg.sha512" + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "path": "system.security.cryptography.cng/4.5.0", + "hashPath": "system.security.cryptography.cng.4.5.0.nupkg.sha512" + }, + "System.Text.Encodings.Web/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", + "path": "system.text.encodings.web/7.0.0", + "hashPath": "system.text.encodings.web.7.0.0.nupkg.sha512" + }, + "System.Text.Json/7.0.0": { + "type": "package", + "serviceable": true, + "sha512": "sha512-DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==", + "path": "system.text.json/7.0.0", + "hashPath": "system.text.json.7.0.0.nupkg.sha512" + } + }, + "runtimes": { + "alpine-x64": [ + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.10-x64": [ + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.11-x64": [ + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.12-x64": [ + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.13-x64": [ + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.14-x64": [ + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.15-x64": [ + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.16-x64": [ + "alpine.3.16", + "alpine.3.15-x64", + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.17-x64": [ + "alpine.3.17", + "alpine.3.16-x64", + "alpine.3.16", + "alpine.3.15-x64", + "alpine.3.15", + "alpine.3.14-x64", + "alpine.3.14", + "alpine.3.13-x64", + "alpine.3.13", + "alpine.3.12-x64", + "alpine.3.12", + "alpine.3.11-x64", + "alpine.3.11", + "alpine.3.10-x64", + "alpine.3.10", + "alpine.3.9-x64", + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.6-x64": [ + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.7-x64": [ + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.8-x64": [ + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "alpine.3.9-x64": [ + "alpine.3.9", + "alpine.3.8-x64", + "alpine.3.8", + "alpine.3.7-x64", + "alpine.3.7", + "alpine.3.6-x64", + "alpine.3.6", + "alpine-x64", + "alpine", + "linux-musl-x64", + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android-x64": [ + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.21-x64": [ + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.22-x64": [ + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.23-x64": [ + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.24-x64": [ + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.25-x64": [ + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.26-x64": [ + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.27-x64": [ + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.28-x64": [ + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.29-x64": [ + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.30-x64": [ + "android.30", + "android.29-x64", + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.31-x64": [ + "android.31", + "android.30-x64", + "android.30", + "android.29-x64", + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "android.32-x64": [ + "android.32", + "android.31-x64", + "android.31", + "android.30-x64", + "android.30", + "android.29-x64", + "android.29", + "android.28-x64", + "android.28", + "android.27-x64", + "android.27", + "android.26-x64", + "android.26", + "android.25-x64", + "android.25", + "android.24-x64", + "android.24", + "android.23-x64", + "android.23", + "android.22-x64", + "android.22", + "android.21-x64", + "android.21", + "android-x64", + "android", + "linux-bionic-x64", + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "arch-x64": [ + "arch", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos-x64": [ + "centos", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.7-x64": [ + "centos.7", + "centos-x64", + "rhel.7-x64", + "centos", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.8-x64": [ + "centos.8", + "centos-x64", + "rhel.8-x64", + "centos", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "centos.9-x64": [ + "centos.9", + "centos-x64", + "rhel.9-x64", + "centos", + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian-x64": [ + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.10-x64": [ + "debian.10", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.11-x64": [ + "debian.11", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.8-x64": [ + "debian.8", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "debian.9-x64": [ + "debian.9", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "exherbo-x64": [ + "exherbo", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora-x64": [ + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.23-x64": [ + "fedora.23", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.24-x64": [ + "fedora.24", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.25-x64": [ + "fedora.25", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.26-x64": [ + "fedora.26", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.27-x64": [ + "fedora.27", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.28-x64": [ + "fedora.28", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.29-x64": [ + "fedora.29", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.30-x64": [ + "fedora.30", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.31-x64": [ + "fedora.31", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.32-x64": [ + "fedora.32", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.33-x64": [ + "fedora.33", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.34-x64": [ + "fedora.34", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.35-x64": [ + "fedora.35", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.36-x64": [ + "fedora.36", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.37-x64": [ + "fedora.37", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "fedora.38-x64": [ + "fedora.38", + "fedora-x64", + "fedora", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "gentoo-x64": [ + "gentoo", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linux-bionic-x64": [ + "linux-bionic", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linux-musl-x64": [ + "linux-musl", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linux-x64": [ + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17-x64": [ + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.1-x64": [ + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.2-x64": [ + "linuxmint.17.2", + "linuxmint.17.1-x64", + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.17.3-x64": [ + "linuxmint.17.3", + "linuxmint.17.2-x64", + "linuxmint.17.2", + "linuxmint.17.1-x64", + "linuxmint.17.1", + "linuxmint.17-x64", + "linuxmint.17", + "ubuntu.14.04-x64", + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18-x64": [ + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.1-x64": [ + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.2-x64": [ + "linuxmint.18.2", + "linuxmint.18.1-x64", + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.18.3-x64": [ + "linuxmint.18.3", + "linuxmint.18.2-x64", + "linuxmint.18.2", + "linuxmint.18.1-x64", + "linuxmint.18.1", + "linuxmint.18-x64", + "linuxmint.18", + "ubuntu.16.04-x64", + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19-x64": [ + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19.1-x64": [ + "linuxmint.19.1", + "linuxmint.19-x64", + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "linuxmint.19.2-x64": [ + "linuxmint.19.2", + "linuxmint.19.1-x64", + "linuxmint.19.1", + "linuxmint.19-x64", + "linuxmint.19", + "ubuntu.18.04-x64", + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "manjaro-x64": [ + "manjaro", + "arch-x64", + "arch", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "miraclelinux-x64": [ + "miraclelinux", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "miraclelinux.8-x64": [ + "miraclelinux.8", + "miraclelinux-x64", + "rhel.8-x64", + "miraclelinux", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "miraclelinux.9-x64": [ + "miraclelinux.9", + "miraclelinux-x64", + "rhel.9-x64", + "miraclelinux", + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol-x64": [ + "ol", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7-x64": [ + "ol.7", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.0-x64": [ + "ol.7.0", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.1-x64": [ + "ol.7.1", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.2-x64": [ + "ol.7.2", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.3-x64": [ + "ol.7.3", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.4-x64": [ + "ol.7.4", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.5-x64": [ + "ol.7.5", + "ol.7.4-x64", + "rhel.7.5-x64", + "ol.7.4", + "rhel.7.5", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.7.6-x64": [ + "ol.7.6", + "ol.7.5-x64", + "rhel.7.6-x64", + "ol.7.5", + "rhel.7.6", + "ol.7.4-x64", + "rhel.7.5-x64", + "ol.7.4", + "rhel.7.5", + "ol.7.3-x64", + "rhel.7.4-x64", + "ol.7.3", + "rhel.7.4", + "ol.7.2-x64", + "rhel.7.3-x64", + "ol.7.2", + "rhel.7.3", + "ol.7.1-x64", + "rhel.7.2-x64", + "ol.7.1", + "rhel.7.2", + "ol.7.0-x64", + "rhel.7.1-x64", + "ol.7.0", + "rhel.7.1", + "ol.7-x64", + "rhel.7.0-x64", + "ol.7", + "rhel.7.0", + "ol-x64", + "rhel.7-x64", + "ol", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.8-x64": [ + "ol.8", + "ol-x64", + "rhel.8-x64", + "ol", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ol.8.0-x64": [ + "ol.8.0", + "ol.8-x64", + "rhel.8.0-x64", + "ol.8", + "rhel.8.0", + "ol-x64", + "rhel.8-x64", + "ol", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse-x64": [ + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.13.2-x64": [ + "opensuse.13.2", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.15.0-x64": [ + "opensuse.15.0", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.15.1-x64": [ + "opensuse.15.1", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.1-x64": [ + "opensuse.42.1", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.2-x64": [ + "opensuse.42.2", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "opensuse.42.3-x64": [ + "opensuse.42.3", + "opensuse-x64", + "opensuse", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel-x64": [ + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.6-x64": [ + "rhel.6", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7-x64": [ + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.0-x64": [ + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.1-x64": [ + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.2-x64": [ + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.3-x64": [ + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.4-x64": [ + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.5-x64": [ + "rhel.7.5", + "rhel.7.4-x64", + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.7.6-x64": [ + "rhel.7.6", + "rhel.7.5-x64", + "rhel.7.5", + "rhel.7.4-x64", + "rhel.7.4", + "rhel.7.3-x64", + "rhel.7.3", + "rhel.7.2-x64", + "rhel.7.2", + "rhel.7.1-x64", + "rhel.7.1", + "rhel.7.0-x64", + "rhel.7.0", + "rhel.7-x64", + "rhel.7", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8-x64": [ + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8.0-x64": [ + "rhel.8.0", + "rhel.8-x64", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.8.1-x64": [ + "rhel.8.1", + "rhel.8.0-x64", + "rhel.8.0", + "rhel.8-x64", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rhel.9-x64": [ + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rocky-x64": [ + "rocky", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rocky.8-x64": [ + "rocky.8", + "rocky-x64", + "rhel.8-x64", + "rocky", + "rhel.8", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "rocky.9-x64": [ + "rocky.9", + "rocky-x64", + "rhel.9-x64", + "rocky", + "rhel.9", + "rhel-x64", + "rhel", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles-x64": [ + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12-x64": [ + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.1-x64": [ + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.2-x64": [ + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.3-x64": [ + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.12.4-x64": [ + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.15-x64": [ + "sles.15", + "sles.12.4-x64", + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "sles.15.1-x64": [ + "sles.15.1", + "sles.15-x64", + "sles.15", + "sles.12.4-x64", + "sles.12.4", + "sles.12.3-x64", + "sles.12.3", + "sles.12.2-x64", + "sles.12.2", + "sles.12.1-x64", + "sles.12.1", + "sles.12-x64", + "sles.12", + "sles-x64", + "sles", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu-x64": [ + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.14.04-x64": [ + "ubuntu.14.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.14.10-x64": [ + "ubuntu.14.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.15.04-x64": [ + "ubuntu.15.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.15.10-x64": [ + "ubuntu.15.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.16.04-x64": [ + "ubuntu.16.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.16.10-x64": [ + "ubuntu.16.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.17.04-x64": [ + "ubuntu.17.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.17.10-x64": [ + "ubuntu.17.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.18.04-x64": [ + "ubuntu.18.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.18.10-x64": [ + "ubuntu.18.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.19.04-x64": [ + "ubuntu.19.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.19.10-x64": [ + "ubuntu.19.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.20.04-x64": [ + "ubuntu.20.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.20.10-x64": [ + "ubuntu.20.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.21.04-x64": [ + "ubuntu.21.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.21.10-x64": [ + "ubuntu.21.10", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ], + "ubuntu.22.04-x64": [ + "ubuntu.22.04", + "ubuntu-x64", + "ubuntu", + "debian-x64", + "debian", + "linux-x64", + "linux", + "unix-x64", + "unix", + "any", + "base" + ] + } +} \ No newline at end of file diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.dll b/obj/Release/net7.0/linux-x64/BuaaLocationServer.dll new file mode 100644 index 0000000..bcf0622 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/BuaaLocationServer.dll differ diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.genruntimeconfig.cache b/obj/Release/net7.0/linux-x64/BuaaLocationServer.genruntimeconfig.cache new file mode 100644 index 0000000..9f842f9 --- /dev/null +++ b/obj/Release/net7.0/linux-x64/BuaaLocationServer.genruntimeconfig.cache @@ -0,0 +1 @@ +1853045d4d715a0e569a466448710852618ecf35 diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.pdb b/obj/Release/net7.0/linux-x64/BuaaLocationServer.pdb new file mode 100644 index 0000000..1097472 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/BuaaLocationServer.pdb differ diff --git a/obj/Release/net7.0/linux-x64/PubTmp/Out/BuaaLocationServer b/obj/Release/net7.0/linux-x64/PubTmp/Out/BuaaLocationServer new file mode 100644 index 0000000..d7e7d8d Binary files /dev/null and b/obj/Release/net7.0/linux-x64/PubTmp/Out/BuaaLocationServer differ diff --git a/obj/Release/net7.0/linux-x64/PubTmp/Out/BuaaLocationServer.pdb b/obj/Release/net7.0/linux-x64/PubTmp/Out/BuaaLocationServer.pdb new file mode 100644 index 0000000..1097472 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/PubTmp/Out/BuaaLocationServer.pdb differ diff --git a/obj/Release/net7.0/linux-x64/PubTmp/Out/appsettings.Development.json b/obj/Release/net7.0/linux-x64/PubTmp/Out/appsettings.Development.json new file mode 100644 index 0000000..4d8f46c --- /dev/null +++ b/obj/Release/net7.0/linux-x64/PubTmp/Out/appsettings.Development.json @@ -0,0 +1,21 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "Authentication": { + "Schemes": { + "Bearer": { + "ValidAudiences": [ + "http://localhost:61993", + "https://localhost:44359", + "http://localhost:5136", + "https://localhost:7026" + ], + "ValidIssuer": "dotnet-user-jwts" + } + } + } +} \ No newline at end of file diff --git a/obj/Release/net7.0/linux-x64/PubTmp/Out/appsettings.json b/obj/Release/net7.0/linux-x64/PubTmp/Out/appsettings.json new file mode 100644 index 0000000..34f5391 --- /dev/null +++ b/obj/Release/net7.0/linux-x64/PubTmp/Out/appsettings.json @@ -0,0 +1,26 @@ +{ + "Logging": { + "LogLevel": { + "Default": "Information", + "Microsoft.AspNetCore": "Warning" + } + }, + "AllowedHosts": "*", + "Authentication": { + "Schemes": { + "Bearer": { + "ValidIssuer": "anxin99.com" + } + } + }, + "ConnectionStrings": { + "SQLite": "Filename=BuaaLocationServer.db" + }, + "JwtSettings": { + "Secret": "sj2fojl#;aldjf;la0808l@mvfljsdfy", + "Issuer": "anxin99.com", + "Audience": "BUAALOCATION", + "Expires": 1200, + "RefreshExpires": 60 + } +} diff --git a/obj/Release/net7.0/linux-x64/PubTmp/Out/libe_sqlite3.so b/obj/Release/net7.0/linux-x64/PubTmp/Out/libe_sqlite3.so new file mode 100644 index 0000000..1e61f6f Binary files /dev/null and b/obj/Release/net7.0/linux-x64/PubTmp/Out/libe_sqlite3.so differ diff --git a/obj/Release/net7.0/linux-x64/PublishOutputs.3996289f93.txt b/obj/Release/net7.0/linux-x64/PublishOutputs.3996289f93.txt new file mode 100644 index 0000000..2fb0a64 --- /dev/null +++ b/obj/Release/net7.0/linux-x64/PublishOutputs.3996289f93.txt @@ -0,0 +1,5 @@ +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\PubTmp\Out\appsettings.Development.json +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\PubTmp\Out\appsettings.json +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\PubTmp\Out\BuaaLocationServer.pdb +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\PubTmp\Out\libe_sqlite3.so +C:\Users\shizh\Projects\BuaaLocationServer\obj\Release\net7.0\linux-x64\PubTmp\Out\BuaaLocationServer diff --git a/obj/Release/net7.0/linux-x64/_IsIncrementalBuild b/obj/Release/net7.0/linux-x64/_IsIncrementalBuild new file mode 100644 index 0000000..acb381d --- /dev/null +++ b/obj/Release/net7.0/linux-x64/_IsIncrementalBuild @@ -0,0 +1 @@ +obj\Release\net7.0\linux-x64\\_IsIncrementalBuild diff --git a/obj/Release/net7.0/linux-x64/linked/BCrypt.Net-Next.dll b/obj/Release/net7.0/linux-x64/linked/BCrypt.Net-Next.dll new file mode 100644 index 0000000..42d9082 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/BCrypt.Net-Next.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/BuaaLocationServer.dll b/obj/Release/net7.0/linux-x64/linked/BuaaLocationServer.dll new file mode 100644 index 0000000..bcf0622 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/BuaaLocationServer.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/BuaaLocationServer.pdb b/obj/Release/net7.0/linux-x64/linked/BuaaLocationServer.pdb new file mode 100644 index 0000000..1097472 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/BuaaLocationServer.pdb differ diff --git a/obj/Release/net7.0/linux-x64/linked/Link.semaphore b/obj/Release/net7.0/linux-x64/linked/Link.semaphore new file mode 100644 index 0000000..e69de29 diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Antiforgery.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Antiforgery.dll new file mode 100644 index 0000000..009d861 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Antiforgery.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authentication.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authentication.Abstractions.dll new file mode 100644 index 0000000..8f78945 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authentication.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authentication.Core.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authentication.Core.dll new file mode 100644 index 0000000..ef76884 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authentication.Core.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authentication.JwtBearer.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authentication.JwtBearer.dll new file mode 100644 index 0000000..5a68821 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authentication.JwtBearer.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authentication.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authentication.dll new file mode 100644 index 0000000..f3b3f62 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authentication.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authorization.Policy.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authorization.Policy.dll new file mode 100644 index 0000000..aa3dd61 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authorization.Policy.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authorization.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authorization.dll new file mode 100644 index 0000000..299445a Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authorization.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Components.Authorization.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Components.Authorization.dll new file mode 100644 index 0000000..05b599a Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Components.Authorization.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Components.Server.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Components.Server.dll new file mode 100644 index 0000000..8265b97 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Components.Server.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Components.Web.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Components.Web.dll new file mode 100644 index 0000000..1f58998 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Components.Web.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Components.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Components.dll new file mode 100644 index 0000000..02e3f51 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Components.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Connections.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Connections.Abstractions.dll new file mode 100644 index 0000000..8ac5b26 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Connections.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Cors.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Cors.dll new file mode 100644 index 0000000..55b50b4 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Cors.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Cryptography.Internal.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Cryptography.Internal.dll new file mode 100644 index 0000000..a01573c Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Cryptography.Internal.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.DataProtection.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.DataProtection.Abstractions.dll new file mode 100644 index 0000000..3c6981b Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.DataProtection.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.DataProtection.Extensions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.DataProtection.Extensions.dll new file mode 100644 index 0000000..10db33e Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.DataProtection.Extensions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.DataProtection.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.DataProtection.dll new file mode 100644 index 0000000..19ed6af Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.DataProtection.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Diagnostics.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Diagnostics.Abstractions.dll new file mode 100644 index 0000000..96b5fd0 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Diagnostics.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Diagnostics.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Diagnostics.dll new file mode 100644 index 0000000..098cf5e Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Diagnostics.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.HostFiltering.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.HostFiltering.dll new file mode 100644 index 0000000..d934779 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.HostFiltering.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Hosting.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Hosting.Abstractions.dll new file mode 100644 index 0000000..70fa1b3 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Hosting.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll new file mode 100644 index 0000000..894207c Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Hosting.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Hosting.dll new file mode 100644 index 0000000..a3be67d Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Hosting.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Html.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Html.Abstractions.dll new file mode 100644 index 0000000..f641279 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Html.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Abstractions.dll new file mode 100644 index 0000000..dc90c4f Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Connections.Common.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Connections.Common.dll new file mode 100644 index 0000000..f1ce4a5 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Connections.Common.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Connections.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Connections.dll new file mode 100644 index 0000000..ab960ae Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Connections.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Extensions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Extensions.dll new file mode 100644 index 0000000..a8d2a88 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Extensions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Features.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Features.dll new file mode 100644 index 0000000..c5196e4 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Features.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Results.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Results.dll new file mode 100644 index 0000000..5f1fef2 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Results.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.dll new file mode 100644 index 0000000..7c7ba05 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.HttpOverrides.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.HttpOverrides.dll new file mode 100644 index 0000000..9bc5052 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.HttpOverrides.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Metadata.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Metadata.dll new file mode 100644 index 0000000..b5a8351 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Metadata.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Abstractions.dll new file mode 100644 index 0000000..1513e71 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.ApiExplorer.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.ApiExplorer.dll new file mode 100644 index 0000000..fc23148 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.ApiExplorer.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Core.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Core.dll new file mode 100644 index 0000000..2483b6d Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Core.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Cors.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Cors.dll new file mode 100644 index 0000000..5b6ba47 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Cors.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.DataAnnotations.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.DataAnnotations.dll new file mode 100644 index 0000000..322a60e Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.DataAnnotations.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Formatters.Json.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Formatters.Json.dll new file mode 100644 index 0000000..5810f63 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Formatters.Json.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll new file mode 100644 index 0000000..7ac9ed7 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Localization.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Localization.dll new file mode 100644 index 0000000..de81c2a Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Localization.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Razor.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Razor.dll new file mode 100644 index 0000000..4739be2 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Razor.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.RazorPages.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.RazorPages.dll new file mode 100644 index 0000000..8f20d6e Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.RazorPages.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.TagHelpers.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.TagHelpers.dll new file mode 100644 index 0000000..658a520 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.TagHelpers.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.ViewFeatures.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.ViewFeatures.dll new file mode 100644 index 0000000..cf2446b Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.ViewFeatures.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.dll new file mode 100644 index 0000000..901cd81 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.OpenApi.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.OpenApi.dll new file mode 100644 index 0000000..1cccfde Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.OpenApi.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.OutputCaching.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.OutputCaching.dll new file mode 100644 index 0000000..a720ab7 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.OutputCaching.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Razor.Runtime.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Razor.Runtime.dll new file mode 100644 index 0000000..704e5f8 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Razor.Runtime.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Razor.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Razor.dll new file mode 100644 index 0000000..0641090 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Razor.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll new file mode 100644 index 0000000..0668052 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Routing.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Routing.Abstractions.dll new file mode 100644 index 0000000..2041453 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Routing.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Routing.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Routing.dll new file mode 100644 index 0000000..dd0e9cf Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Routing.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.IIS.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.IIS.dll new file mode 100644 index 0000000..aa1b8fd Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.IIS.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.IISIntegration.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.IISIntegration.dll new file mode 100644 index 0000000..3943f0c Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.IISIntegration.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Core.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Core.dll new file mode 100644 index 0000000..3960f43 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Core.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll new file mode 100644 index 0000000..63783fe Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll new file mode 100644 index 0000000..c0c5835 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.Kestrel.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.Kestrel.dll new file mode 100644 index 0000000..f1943f6 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.Kestrel.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.SignalR.Common.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.SignalR.Common.dll new file mode 100644 index 0000000..828e8a2 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.SignalR.Common.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.SignalR.Core.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.SignalR.Core.dll new file mode 100644 index 0000000..5e99cfd Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.SignalR.Core.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.SignalR.Protocols.Json.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.SignalR.Protocols.Json.dll new file mode 100644 index 0000000..e45b075 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.SignalR.Protocols.Json.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.SignalR.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.SignalR.dll new file mode 100644 index 0000000..abfd4c9 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.SignalR.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.StaticFiles.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.StaticFiles.dll new file mode 100644 index 0000000..753d809 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.StaticFiles.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.WebSockets.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.WebSockets.dll new file mode 100644 index 0000000..6a5534f Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.WebSockets.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.WebUtilities.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.WebUtilities.dll new file mode 100644 index 0000000..66b7917 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.WebUtilities.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.dll new file mode 100644 index 0000000..e27a4e3 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.CSharp.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.CSharp.dll new file mode 100644 index 0000000..b350842 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.CSharp.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Data.Sqlite.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Data.Sqlite.dll new file mode 100644 index 0000000..bc42a25 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Data.Sqlite.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.EntityFrameworkCore.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.EntityFrameworkCore.Abstractions.dll new file mode 100644 index 0000000..a89f247 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.EntityFrameworkCore.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.EntityFrameworkCore.Relational.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.EntityFrameworkCore.Relational.dll new file mode 100644 index 0000000..44538e5 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.EntityFrameworkCore.Relational.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.EntityFrameworkCore.Sqlite.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.EntityFrameworkCore.Sqlite.dll new file mode 100644 index 0000000..8dbbb08 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.EntityFrameworkCore.Sqlite.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.EntityFrameworkCore.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.EntityFrameworkCore.dll new file mode 100644 index 0000000..94a49a4 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.EntityFrameworkCore.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Caching.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Caching.Abstractions.dll new file mode 100644 index 0000000..d2dba15 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Caching.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Caching.Memory.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Caching.Memory.dll new file mode 100644 index 0000000..3ac19d5 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Caching.Memory.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.Abstractions.dll new file mode 100644 index 0000000..f7296b5 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.Binder.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.Binder.dll new file mode 100644 index 0000000..1705cd0 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.Binder.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.CommandLine.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.CommandLine.dll new file mode 100644 index 0000000..c8a20b8 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.CommandLine.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.EnvironmentVariables.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.EnvironmentVariables.dll new file mode 100644 index 0000000..a619b74 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.EnvironmentVariables.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.FileExtensions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.FileExtensions.dll new file mode 100644 index 0000000..b43d03d Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.FileExtensions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.Json.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.Json.dll new file mode 100644 index 0000000..cfbffce Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.Json.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.KeyPerFile.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.KeyPerFile.dll new file mode 100644 index 0000000..735dbda Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.KeyPerFile.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.UserSecrets.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.UserSecrets.dll new file mode 100644 index 0000000..2cb4580 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.UserSecrets.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.dll new file mode 100644 index 0000000..c42881f Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.DependencyInjection.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.DependencyInjection.Abstractions.dll new file mode 100644 index 0000000..6043157 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.DependencyInjection.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.DependencyInjection.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.DependencyInjection.dll new file mode 100644 index 0000000..567a958 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.DependencyInjection.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.DependencyModel.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.DependencyModel.dll new file mode 100644 index 0000000..3767672 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.DependencyModel.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Features.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Features.dll new file mode 100644 index 0000000..07e388b Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Features.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileProviders.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileProviders.Abstractions.dll new file mode 100644 index 0000000..5ca73c3 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileProviders.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileProviders.Composite.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileProviders.Composite.dll new file mode 100644 index 0000000..215e934 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileProviders.Composite.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileProviders.Embedded.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileProviders.Embedded.dll new file mode 100644 index 0000000..aa7f6cd Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileProviders.Embedded.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileProviders.Physical.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileProviders.Physical.dll new file mode 100644 index 0000000..9b070e0 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileProviders.Physical.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileSystemGlobbing.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileSystemGlobbing.dll new file mode 100644 index 0000000..1fea5a1 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileSystemGlobbing.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Hosting.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Hosting.Abstractions.dll new file mode 100644 index 0000000..02aeb95 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Hosting.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Hosting.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Hosting.dll new file mode 100644 index 0000000..56370a0 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Hosting.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Localization.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Localization.Abstractions.dll new file mode 100644 index 0000000..809757a Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Localization.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Localization.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Localization.dll new file mode 100644 index 0000000..770069b Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Localization.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.Abstractions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.Abstractions.dll new file mode 100644 index 0000000..a3771b7 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.Abstractions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.Configuration.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.Configuration.dll new file mode 100644 index 0000000..417d494 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.Configuration.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.Console.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.Console.dll new file mode 100644 index 0000000..b341e3d Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.Console.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.Debug.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.Debug.dll new file mode 100644 index 0000000..9c25978 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.Debug.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.EventLog.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.EventLog.dll new file mode 100644 index 0000000..0503d6c Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.EventLog.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.EventSource.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.EventSource.dll new file mode 100644 index 0000000..06d0627 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.EventSource.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.dll new file mode 100644 index 0000000..66bcfa8 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.ObjectPool.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.ObjectPool.dll new file mode 100644 index 0000000..20d05ca Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.ObjectPool.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Options.ConfigurationExtensions.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Options.ConfigurationExtensions.dll new file mode 100644 index 0000000..01c5dab Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Options.ConfigurationExtensions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Options.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Options.dll new file mode 100644 index 0000000..1da8dd1 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Options.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Primitives.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Primitives.dll new file mode 100644 index 0000000..079b698 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Primitives.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.WebEncoders.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.WebEncoders.dll new file mode 100644 index 0000000..4079bc3 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.WebEncoders.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.JsonWebTokens.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.JsonWebTokens.dll new file mode 100644 index 0000000..eb60093 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.JsonWebTokens.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.Logging.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.Logging.dll new file mode 100644 index 0000000..526915e Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.Logging.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll new file mode 100644 index 0000000..8915dfe Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.Protocols.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.Protocols.dll new file mode 100644 index 0000000..31e4c86 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.Protocols.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.Tokens.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.Tokens.dll new file mode 100644 index 0000000..7016a3c Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.Tokens.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.JSInterop.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.JSInterop.dll new file mode 100644 index 0000000..17bfa83 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.JSInterop.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Net.Http.Headers.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Net.Http.Headers.dll new file mode 100644 index 0000000..fc92201 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Net.Http.Headers.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.OpenApi.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.OpenApi.dll new file mode 100644 index 0000000..1e0998d Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.OpenApi.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.OpenApi.pdb b/obj/Release/net7.0/linux-x64/linked/Microsoft.OpenApi.pdb new file mode 100644 index 0000000..528c477 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.OpenApi.pdb differ diff --git a/obj/Release/net7.0/linux-x64/linked/Microsoft.Win32.Registry.dll b/obj/Release/net7.0/linux-x64/linked/Microsoft.Win32.Registry.dll new file mode 100644 index 0000000..ca29480 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Microsoft.Win32.Registry.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/SQLitePCLRaw.batteries_v2.dll b/obj/Release/net7.0/linux-x64/linked/SQLitePCLRaw.batteries_v2.dll new file mode 100644 index 0000000..541a965 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/SQLitePCLRaw.batteries_v2.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/SQLitePCLRaw.core.dll b/obj/Release/net7.0/linux-x64/linked/SQLitePCLRaw.core.dll new file mode 100644 index 0000000..8f97332 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/SQLitePCLRaw.core.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/SQLitePCLRaw.provider.e_sqlite3.dll b/obj/Release/net7.0/linux-x64/linked/SQLitePCLRaw.provider.e_sqlite3.dll new file mode 100644 index 0000000..aa3d274 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/SQLitePCLRaw.provider.e_sqlite3.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.Swagger.dll b/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.Swagger.dll new file mode 100644 index 0000000..e9b8cf7 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.Swagger.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.Swagger.pdb b/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.Swagger.pdb new file mode 100644 index 0000000..75d1e39 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.Swagger.pdb differ diff --git a/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.SwaggerGen.dll b/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.SwaggerGen.dll new file mode 100644 index 0000000..68e38a2 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.SwaggerGen.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.SwaggerGen.pdb b/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.SwaggerGen.pdb new file mode 100644 index 0000000..e77b346 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.SwaggerGen.pdb differ diff --git a/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.SwaggerUI.dll b/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.SwaggerUI.dll new file mode 100644 index 0000000..9c52aed Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.SwaggerUI.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.SwaggerUI.pdb b/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.SwaggerUI.pdb new file mode 100644 index 0000000..1c1b57b Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.SwaggerUI.pdb differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Collections.Concurrent.dll b/obj/Release/net7.0/linux-x64/linked/System.Collections.Concurrent.dll new file mode 100644 index 0000000..bb8d416 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Collections.Concurrent.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Collections.Immutable.dll b/obj/Release/net7.0/linux-x64/linked/System.Collections.Immutable.dll new file mode 100644 index 0000000..47a8d04 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Collections.Immutable.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Collections.NonGeneric.dll b/obj/Release/net7.0/linux-x64/linked/System.Collections.NonGeneric.dll new file mode 100644 index 0000000..7f72f3c Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Collections.NonGeneric.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Collections.Specialized.dll b/obj/Release/net7.0/linux-x64/linked/System.Collections.Specialized.dll new file mode 100644 index 0000000..1b3be25 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Collections.Specialized.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Collections.dll b/obj/Release/net7.0/linux-x64/linked/System.Collections.dll new file mode 100644 index 0000000..c9c2a19 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Collections.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.ComponentModel.Annotations.dll b/obj/Release/net7.0/linux-x64/linked/System.ComponentModel.Annotations.dll new file mode 100644 index 0000000..88dc9ce Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.ComponentModel.Annotations.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.ComponentModel.Primitives.dll b/obj/Release/net7.0/linux-x64/linked/System.ComponentModel.Primitives.dll new file mode 100644 index 0000000..10e9b81 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.ComponentModel.Primitives.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.ComponentModel.TypeConverter.dll b/obj/Release/net7.0/linux-x64/linked/System.ComponentModel.TypeConverter.dll new file mode 100644 index 0000000..441017f Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.ComponentModel.TypeConverter.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.ComponentModel.dll b/obj/Release/net7.0/linux-x64/linked/System.ComponentModel.dll new file mode 100644 index 0000000..d8afe57 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.ComponentModel.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Console.dll b/obj/Release/net7.0/linux-x64/linked/System.Console.dll new file mode 100644 index 0000000..b4a8dae Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Console.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Data.Common.dll b/obj/Release/net7.0/linux-x64/linked/System.Data.Common.dll new file mode 100644 index 0000000..603dea6 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Data.Common.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.DiagnosticSource.dll b/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.DiagnosticSource.dll new file mode 100644 index 0000000..f78e3d5 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.DiagnosticSource.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.EventLog.dll b/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.EventLog.dll new file mode 100644 index 0000000..8d8ed17 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.EventLog.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.StackTrace.dll b/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.StackTrace.dll new file mode 100644 index 0000000..97d5d10 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.StackTrace.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.TraceSource.dll b/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.TraceSource.dll new file mode 100644 index 0000000..d47aa7c Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.TraceSource.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.Tracing.dll b/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.Tracing.dll new file mode 100644 index 0000000..30349e2 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.Tracing.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Drawing.Primitives.dll b/obj/Release/net7.0/linux-x64/linked/System.Drawing.Primitives.dll new file mode 100644 index 0000000..eda30d9 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Drawing.Primitives.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Drawing.dll b/obj/Release/net7.0/linux-x64/linked/System.Drawing.dll new file mode 100644 index 0000000..e1eff09 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Drawing.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Formats.Asn1.dll b/obj/Release/net7.0/linux-x64/linked/System.Formats.Asn1.dll new file mode 100644 index 0000000..5de109b Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Formats.Asn1.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.IO.Compression.Brotli.dll b/obj/Release/net7.0/linux-x64/linked/System.IO.Compression.Brotli.dll new file mode 100644 index 0000000..48a0fc6 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.IO.Compression.Brotli.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.IO.Compression.dll b/obj/Release/net7.0/linux-x64/linked/System.IO.Compression.dll new file mode 100644 index 0000000..fd8b0c3 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.IO.Compression.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.IO.FileSystem.Watcher.dll b/obj/Release/net7.0/linux-x64/linked/System.IO.FileSystem.Watcher.dll new file mode 100644 index 0000000..55a50ae Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.IO.FileSystem.Watcher.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.IO.MemoryMappedFiles.dll b/obj/Release/net7.0/linux-x64/linked/System.IO.MemoryMappedFiles.dll new file mode 100644 index 0000000..1a96563 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.IO.MemoryMappedFiles.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.IO.Pipelines.dll b/obj/Release/net7.0/linux-x64/linked/System.IO.Pipelines.dll new file mode 100644 index 0000000..b62c46c Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.IO.Pipelines.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.IdentityModel.Tokens.Jwt.dll b/obj/Release/net7.0/linux-x64/linked/System.IdentityModel.Tokens.Jwt.dll new file mode 100644 index 0000000..f48b7c8 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.IdentityModel.Tokens.Jwt.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Linq.Expressions.dll b/obj/Release/net7.0/linux-x64/linked/System.Linq.Expressions.dll new file mode 100644 index 0000000..96422c9 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Linq.Expressions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Linq.Queryable.dll b/obj/Release/net7.0/linux-x64/linked/System.Linq.Queryable.dll new file mode 100644 index 0000000..9860859 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Linq.Queryable.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Linq.dll b/obj/Release/net7.0/linux-x64/linked/System.Linq.dll new file mode 100644 index 0000000..dbadf77 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Linq.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Memory.dll b/obj/Release/net7.0/linux-x64/linked/System.Memory.dll new file mode 100644 index 0000000..7691b86 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Memory.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Net.Http.dll b/obj/Release/net7.0/linux-x64/linked/System.Net.Http.dll new file mode 100644 index 0000000..1f24ca5 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Net.Http.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Net.NameResolution.dll b/obj/Release/net7.0/linux-x64/linked/System.Net.NameResolution.dll new file mode 100644 index 0000000..73d762e Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Net.NameResolution.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Net.NetworkInformation.dll b/obj/Release/net7.0/linux-x64/linked/System.Net.NetworkInformation.dll new file mode 100644 index 0000000..4fcb000 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Net.NetworkInformation.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Net.Primitives.dll b/obj/Release/net7.0/linux-x64/linked/System.Net.Primitives.dll new file mode 100644 index 0000000..59bfb2f Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Net.Primitives.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Net.Quic.dll b/obj/Release/net7.0/linux-x64/linked/System.Net.Quic.dll new file mode 100644 index 0000000..efa7ad1 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Net.Quic.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Net.Security.dll b/obj/Release/net7.0/linux-x64/linked/System.Net.Security.dll new file mode 100644 index 0000000..ad62025 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Net.Security.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Net.Sockets.dll b/obj/Release/net7.0/linux-x64/linked/System.Net.Sockets.dll new file mode 100644 index 0000000..c084aba Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Net.Sockets.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Net.WebSockets.dll b/obj/Release/net7.0/linux-x64/linked/System.Net.WebSockets.dll new file mode 100644 index 0000000..8623e3b Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Net.WebSockets.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.ObjectModel.dll b/obj/Release/net7.0/linux-x64/linked/System.ObjectModel.dll new file mode 100644 index 0000000..bcc1a60 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.ObjectModel.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Private.CoreLib.dll b/obj/Release/net7.0/linux-x64/linked/System.Private.CoreLib.dll new file mode 100644 index 0000000..a2c5323 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Private.CoreLib.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Private.DataContractSerialization.dll b/obj/Release/net7.0/linux-x64/linked/System.Private.DataContractSerialization.dll new file mode 100644 index 0000000..3f9ff5c Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Private.DataContractSerialization.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Private.Uri.dll b/obj/Release/net7.0/linux-x64/linked/System.Private.Uri.dll new file mode 100644 index 0000000..3f904fb Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Private.Uri.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Private.Xml.Linq.dll b/obj/Release/net7.0/linux-x64/linked/System.Private.Xml.Linq.dll new file mode 100644 index 0000000..765bde2 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Private.Xml.Linq.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Private.Xml.dll b/obj/Release/net7.0/linux-x64/linked/System.Private.Xml.dll new file mode 100644 index 0000000..ef26f70 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Private.Xml.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Reflection.Emit.ILGeneration.dll b/obj/Release/net7.0/linux-x64/linked/System.Reflection.Emit.ILGeneration.dll new file mode 100644 index 0000000..3ca2ba6 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Reflection.Emit.ILGeneration.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Reflection.Emit.dll b/obj/Release/net7.0/linux-x64/linked/System.Reflection.Emit.dll new file mode 100644 index 0000000..646a65c Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Reflection.Emit.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Reflection.Metadata.dll b/obj/Release/net7.0/linux-x64/linked/System.Reflection.Metadata.dll new file mode 100644 index 0000000..2009264 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Reflection.Metadata.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Reflection.Primitives.dll b/obj/Release/net7.0/linux-x64/linked/System.Reflection.Primitives.dll new file mode 100644 index 0000000..21ebc5b Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Reflection.Primitives.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Runtime.InteropServices.RuntimeInformation.dll b/obj/Release/net7.0/linux-x64/linked/System.Runtime.InteropServices.RuntimeInformation.dll new file mode 100644 index 0000000..cec46c7 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Runtime.InteropServices.RuntimeInformation.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Runtime.InteropServices.dll b/obj/Release/net7.0/linux-x64/linked/System.Runtime.InteropServices.dll new file mode 100644 index 0000000..46025d8 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Runtime.InteropServices.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Runtime.Loader.dll b/obj/Release/net7.0/linux-x64/linked/System.Runtime.Loader.dll new file mode 100644 index 0000000..ba0ef68 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Runtime.Loader.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Runtime.Numerics.dll b/obj/Release/net7.0/linux-x64/linked/System.Runtime.Numerics.dll new file mode 100644 index 0000000..322bc73 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Runtime.Numerics.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Runtime.Serialization.Formatters.dll b/obj/Release/net7.0/linux-x64/linked/System.Runtime.Serialization.Formatters.dll new file mode 100644 index 0000000..2bbdca7 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Runtime.Serialization.Formatters.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Runtime.Serialization.Primitives.dll b/obj/Release/net7.0/linux-x64/linked/System.Runtime.Serialization.Primitives.dll new file mode 100644 index 0000000..ed130e4 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Runtime.Serialization.Primitives.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Runtime.Serialization.Xml.dll b/obj/Release/net7.0/linux-x64/linked/System.Runtime.Serialization.Xml.dll new file mode 100644 index 0000000..cdd6ea3 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Runtime.Serialization.Xml.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Runtime.dll b/obj/Release/net7.0/linux-x64/linked/System.Runtime.dll new file mode 100644 index 0000000..f624507 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Runtime.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Security.AccessControl.dll b/obj/Release/net7.0/linux-x64/linked/System.Security.AccessControl.dll new file mode 100644 index 0000000..5e15484 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Security.AccessControl.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Security.Claims.dll b/obj/Release/net7.0/linux-x64/linked/System.Security.Claims.dll new file mode 100644 index 0000000..f58d306 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Security.Claims.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Algorithms.dll b/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Algorithms.dll new file mode 100644 index 0000000..a637081 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Algorithms.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Cng.dll b/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Cng.dll new file mode 100644 index 0000000..717a17e Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Cng.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Pkcs.dll b/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Pkcs.dll new file mode 100644 index 0000000..3ece371 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Pkcs.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Primitives.dll b/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Primitives.dll new file mode 100644 index 0000000..acf699d Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Primitives.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Xml.dll b/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Xml.dll new file mode 100644 index 0000000..12abbcb Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Xml.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.dll b/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.dll new file mode 100644 index 0000000..cab9a1d Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Security.Principal.Windows.dll b/obj/Release/net7.0/linux-x64/linked/System.Security.Principal.Windows.dll new file mode 100644 index 0000000..d6c239d Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Security.Principal.Windows.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Text.Encoding.Extensions.dll b/obj/Release/net7.0/linux-x64/linked/System.Text.Encoding.Extensions.dll new file mode 100644 index 0000000..b993e6c Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Text.Encoding.Extensions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Text.Encodings.Web.dll b/obj/Release/net7.0/linux-x64/linked/System.Text.Encodings.Web.dll new file mode 100644 index 0000000..3e54ad2 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Text.Encodings.Web.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Text.Json.dll b/obj/Release/net7.0/linux-x64/linked/System.Text.Json.dll new file mode 100644 index 0000000..ff62d86 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Text.Json.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Text.RegularExpressions.dll b/obj/Release/net7.0/linux-x64/linked/System.Text.RegularExpressions.dll new file mode 100644 index 0000000..c4b37b0 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Text.RegularExpressions.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Threading.Channels.dll b/obj/Release/net7.0/linux-x64/linked/System.Threading.Channels.dll new file mode 100644 index 0000000..75c4910 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Threading.Channels.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Threading.Thread.dll b/obj/Release/net7.0/linux-x64/linked/System.Threading.Thread.dll new file mode 100644 index 0000000..9fc19a4 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Threading.Thread.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Threading.ThreadPool.dll b/obj/Release/net7.0/linux-x64/linked/System.Threading.ThreadPool.dll new file mode 100644 index 0000000..1c3261d Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Threading.ThreadPool.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Threading.dll b/obj/Release/net7.0/linux-x64/linked/System.Threading.dll new file mode 100644 index 0000000..e46f4e1 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Threading.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Transactions.Local.dll b/obj/Release/net7.0/linux-x64/linked/System.Transactions.Local.dll new file mode 100644 index 0000000..6522886 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Transactions.Local.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Xml.Linq.dll b/obj/Release/net7.0/linux-x64/linked/System.Xml.Linq.dll new file mode 100644 index 0000000..fe5fcd7 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Xml.Linq.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Xml.ReaderWriter.dll b/obj/Release/net7.0/linux-x64/linked/System.Xml.ReaderWriter.dll new file mode 100644 index 0000000..208c622 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Xml.ReaderWriter.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Xml.XDocument.dll b/obj/Release/net7.0/linux-x64/linked/System.Xml.XDocument.dll new file mode 100644 index 0000000..c0a1d65 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Xml.XDocument.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Xml.XPath.dll b/obj/Release/net7.0/linux-x64/linked/System.Xml.XPath.dll new file mode 100644 index 0000000..be2b842 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Xml.XPath.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.Xml.XmlSerializer.dll b/obj/Release/net7.0/linux-x64/linked/System.Xml.XmlSerializer.dll new file mode 100644 index 0000000..815aec0 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.Xml.XmlSerializer.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.dll b/obj/Release/net7.0/linux-x64/linked/System.dll new file mode 100644 index 0000000..30e25de Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/System.dll differ diff --git a/obj/Release/net7.0/linux-x64/linked/netstandard.dll b/obj/Release/net7.0/linux-x64/linked/netstandard.dll new file mode 100644 index 0000000..7d40fa5 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/linked/netstandard.dll differ diff --git a/obj/Release/net7.0/linux-x64/ref/BuaaLocationServer.dll b/obj/Release/net7.0/linux-x64/ref/BuaaLocationServer.dll new file mode 100644 index 0000000..d97a3c1 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/ref/BuaaLocationServer.dll differ diff --git a/obj/Release/net7.0/linux-x64/refint/BuaaLocationServer.dll b/obj/Release/net7.0/linux-x64/refint/BuaaLocationServer.dll new file mode 100644 index 0000000..d97a3c1 Binary files /dev/null and b/obj/Release/net7.0/linux-x64/refint/BuaaLocationServer.dll differ diff --git a/obj/Release/net7.0/linux-x64/singlefilehost b/obj/Release/net7.0/linux-x64/singlefilehost new file mode 100644 index 0000000..33fac5c Binary files /dev/null and b/obj/Release/net7.0/linux-x64/singlefilehost differ diff --git a/obj/Release/net7.0/linux-x64/staticwebassets.build.json b/obj/Release/net7.0/linux-x64/staticwebassets.build.json new file mode 100644 index 0000000..54a7c21 --- /dev/null +++ b/obj/Release/net7.0/linux-x64/staticwebassets.build.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "kv/c8041lyW8jRPKfXej94TcneHKe8HQeDefYjIkMGI=", + "Source": "BuaaLocationServer", + "BasePath": "_content/BuaaLocationServer", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/obj/Release/net7.0/linux-x64/staticwebassets.publish.json b/obj/Release/net7.0/linux-x64/staticwebassets.publish.json new file mode 100644 index 0000000..73eedd5 --- /dev/null +++ b/obj/Release/net7.0/linux-x64/staticwebassets.publish.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "0PQ+qVm9BBmd09Ogp0hxItmKjm8q2+DpuiC84zZfE64=", + "Source": "BuaaLocationServer", + "BasePath": "_content/BuaaLocationServer", + "Mode": "Default", + "ManifestType": "Publish", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/obj/Release/net7.0/linux-x64/staticwebassets/msbuild.build.BuaaLocationServer.props b/obj/Release/net7.0/linux-x64/staticwebassets/msbuild.build.BuaaLocationServer.props new file mode 100644 index 0000000..5a6032a --- /dev/null +++ b/obj/Release/net7.0/linux-x64/staticwebassets/msbuild.build.BuaaLocationServer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Release/net7.0/linux-x64/staticwebassets/msbuild.buildMultiTargeting.BuaaLocationServer.props b/obj/Release/net7.0/linux-x64/staticwebassets/msbuild.buildMultiTargeting.BuaaLocationServer.props new file mode 100644 index 0000000..1aae6b4 --- /dev/null +++ b/obj/Release/net7.0/linux-x64/staticwebassets/msbuild.buildMultiTargeting.BuaaLocationServer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Release/net7.0/linux-x64/staticwebassets/msbuild.buildTransitive.BuaaLocationServer.props b/obj/Release/net7.0/linux-x64/staticwebassets/msbuild.buildTransitive.BuaaLocationServer.props new file mode 100644 index 0000000..380e21b --- /dev/null +++ b/obj/Release/net7.0/linux-x64/staticwebassets/msbuild.buildTransitive.BuaaLocationServer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Release/net7.0/ref/BuaaLocationServer.dll b/obj/Release/net7.0/ref/BuaaLocationServer.dll new file mode 100644 index 0000000..1d6facb Binary files /dev/null and b/obj/Release/net7.0/ref/BuaaLocationServer.dll differ diff --git a/obj/Release/net7.0/refint/BuaaLocationServer.dll b/obj/Release/net7.0/refint/BuaaLocationServer.dll new file mode 100644 index 0000000..1d6facb Binary files /dev/null and b/obj/Release/net7.0/refint/BuaaLocationServer.dll differ diff --git a/obj/Release/net7.0/staticwebassets.build.json b/obj/Release/net7.0/staticwebassets.build.json new file mode 100644 index 0000000..54a7c21 --- /dev/null +++ b/obj/Release/net7.0/staticwebassets.build.json @@ -0,0 +1,11 @@ +{ + "Version": 1, + "Hash": "kv/c8041lyW8jRPKfXej94TcneHKe8HQeDefYjIkMGI=", + "Source": "BuaaLocationServer", + "BasePath": "_content/BuaaLocationServer", + "Mode": "Default", + "ManifestType": "Build", + "ReferencedProjectsConfiguration": [], + "DiscoveryPatterns": [], + "Assets": [] +} \ No newline at end of file diff --git a/obj/Release/net7.0/staticwebassets/msbuild.build.BuaaLocationServer.props b/obj/Release/net7.0/staticwebassets/msbuild.build.BuaaLocationServer.props new file mode 100644 index 0000000..5a6032a --- /dev/null +++ b/obj/Release/net7.0/staticwebassets/msbuild.build.BuaaLocationServer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Release/net7.0/staticwebassets/msbuild.buildMultiTargeting.BuaaLocationServer.props b/obj/Release/net7.0/staticwebassets/msbuild.buildMultiTargeting.BuaaLocationServer.props new file mode 100644 index 0000000..1aae6b4 --- /dev/null +++ b/obj/Release/net7.0/staticwebassets/msbuild.buildMultiTargeting.BuaaLocationServer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/Release/net7.0/staticwebassets/msbuild.buildTransitive.BuaaLocationServer.props b/obj/Release/net7.0/staticwebassets/msbuild.buildTransitive.BuaaLocationServer.props new file mode 100644 index 0000000..380e21b --- /dev/null +++ b/obj/Release/net7.0/staticwebassets/msbuild.buildTransitive.BuaaLocationServer.props @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json new file mode 100644 index 0000000..2321983 --- /dev/null +++ b/obj/project.assets.json @@ -0,0 +1,2297 @@ +{ + "version": 3, + "targets": { + "net7.0": { + "BCrypt.Net-Next/4.0.3": { + "type": "package", + "compile": { + "lib/net6.0/BCrypt.Net-Next.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/BCrypt.Net-Next.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.Authentication.JwtBearer/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.15.1" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.OpenApi/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.4.3" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.Sqlite.Core/7.0.0": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.2" + }, + "compile": { + "lib/net6.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "7.0.0", + "Microsoft.EntityFrameworkCore.Analyzers": "7.0.0", + "Microsoft.Extensions.Caching.Memory": "7.0.0", + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.Logging": "7.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/7.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Design/7.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.EntityFrameworkCore.Relational": "7.0.0", + "Microsoft.Extensions.DependencyModel": "7.0.0", + "Mono.TextTemplating": "2.2.1" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": { + "related": ".xml" + } + }, + "build": { + "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "7.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "7.0.0", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.2" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "7.0.0", + "Microsoft.EntityFrameworkCore.Relational": "7.0.0", + "Microsoft.Extensions.DependencyModel": "7.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Tools/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "7.0.0" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "build": { + "build/Microsoft.Extensions.ApiDescription.Server.props": {}, + "build/Microsoft.Extensions.ApiDescription.Server.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {}, + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/7.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "7.0.0", + "System.Text.Json": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.15.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.15.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.15.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.15.1", + "Microsoft.IdentityModel.Tokens": "6.15.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.15.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.15.1", + "System.IdentityModel.Tokens.Jwt": "6.15.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.15.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.15.1", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.OpenApi/1.4.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Mono.TextTemplating/2.2.1": { + "type": "package", + "dependencies": { + "System.CodeDom": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Mono.TextTemplating.dll": {} + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.2": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.2", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.2" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + } + }, + "SQLitePCLRaw.core/2.1.2": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "build": { + "buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets": {} + }, + "runtimeTargets": { + "runtimes/alpine-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "alpine-arm" + }, + "runtimes/alpine-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "alpine-arm64" + }, + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "alpine-x64" + }, + "runtimes/browser-wasm/nativeassets/net7.0/e_sqlite3.a": { + "assetType": "native", + "rid": "browser-wasm" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm64" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-s390x" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-arm64" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-x64" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-arm64" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.2": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.2" + }, + "compile": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + }, + "build": { + "build/Swashbuckle.AspNetCore.props": {} + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "System.CodeDom/4.4.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.CodeDom.dll": {} + } + }, + "System.IdentityModel.Tokens.Jwt/6.15.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.15.1", + "Microsoft.IdentityModel.Tokens": "6.15.1" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.Memory/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/7.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/System.Text.Json.targets": {} + } + } + } + }, + "libraries": { + "BCrypt.Net-Next/4.0.3": { + "sha512": "W+U9WvmZQgi5cX6FS5GDtDoPzUCV4LkBLkywq/kRZhuDwcbavOzcDAr3LXJFqHUi952Yj3LEYoWW0jbEUQChsA==", + "type": "package", + "path": "bcrypt.net-next/4.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "bcrypt.net-next.4.0.3.nupkg.sha512", + "bcrypt.net-next.nuspec", + "ico.png", + "lib/net20/BCrypt.Net-Next.dll", + "lib/net20/BCrypt.Net-Next.xml", + "lib/net35/BCrypt.Net-Next.dll", + "lib/net35/BCrypt.Net-Next.xml", + "lib/net462/BCrypt.Net-Next.dll", + "lib/net462/BCrypt.Net-Next.xml", + "lib/net472/BCrypt.Net-Next.dll", + "lib/net472/BCrypt.Net-Next.xml", + "lib/net48/BCrypt.Net-Next.dll", + "lib/net48/BCrypt.Net-Next.xml", + "lib/net5.0/BCrypt.Net-Next.dll", + "lib/net5.0/BCrypt.Net-Next.xml", + "lib/net6.0/BCrypt.Net-Next.dll", + "lib/net6.0/BCrypt.Net-Next.xml", + "lib/netstandard2.0/BCrypt.Net-Next.dll", + "lib/netstandard2.0/BCrypt.Net-Next.xml", + "lib/netstandard2.1/BCrypt.Net-Next.dll", + "lib/netstandard2.1/BCrypt.Net-Next.xml", + "readme.md" + ] + }, + "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/7.0.0": { + "sha512": "q2suMVl1gO6rBJkV7rxm0F2sBufValm2RKxY3zoWN4y6cAufDJYmzpLWPKju3kKFJFKNgivWgoTw0dvf4W5QDQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.jwtbearer/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll", + "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml", + "microsoft.aspnetcore.authentication.jwtbearer.7.0.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.jwtbearer.nuspec" + ] + }, + "Microsoft.AspNetCore.OpenApi/7.0.0": { + "sha512": "P1mkNhZ3IwU3phNLIUkgqVXb1exnooTalIYwpSON3oKKkcRtACDgS4WpO+xnwFw4KzV0bmgkUqB3acXxIefvvg==", + "type": "package", + "path": "microsoft.aspnetcore.openapi/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll", + "lib/net7.0/Microsoft.AspNetCore.OpenApi.xml", + "microsoft.aspnetcore.openapi.7.0.0.nupkg.sha512", + "microsoft.aspnetcore.openapi.nuspec" + ] + }, + "Microsoft.CSharp/4.5.0": { + "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "type": "package", + "path": "microsoft.csharp/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.5.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.Sqlite.Core/7.0.0": { + "sha512": "WC7SANtaFTmQ/WPyhrE96h88MrH28C7kTBenDf5Eo+IR6CbWM0Uw2pR2++tyYr3qe/zSIsIYroEupB1mLg/adw==", + "type": "package", + "path": "microsoft.data.sqlite.core/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.Data.Sqlite.dll", + "lib/net6.0/Microsoft.Data.Sqlite.xml", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.7.0.0.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore/7.0.0": { + "sha512": "9W+IfmAzMrp2ZpKZLhgTlWljSBM9Erldis1us61DAGi+L7Q6vilTbe1G2zDxtYO8F2H0I0Qnupdx5Cp4s2xoZw==", + "type": "package", + "path": "microsoft.entityframeworkcore/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props", + "lib/net6.0/Microsoft.EntityFrameworkCore.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.7.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/7.0.0": { + "sha512": "Pfu3Zjj5+d2Gt27oE9dpGiF/VobBB+s5ogrfI9sBsXQE1SG49RqVz5+IyeNnzhyejFrPIQsPDRMchhcojy4Hbw==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.7.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/7.0.0": { + "sha512": "Qkd2H+jLe37o5ku+LjT6qf7kAHY75Yfn2bBDQgqr13DTOLYpEy1Mt93KPFjaZvIu/srEcbfGGMRL7urKm5zN8Q==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.7.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Design/7.0.0": { + "sha512": "fEEU/zZ/VblZRQxHNZxgGKVtEtOGqEAmuHkACV1i0H031bM8PQKTS7PlKPVOgg0C1v+6yeHoIAGGgbAvG9f7kw==", + "type": "package", + "path": "microsoft.entityframeworkcore.design/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/net6.0/Microsoft.EntityFrameworkCore.Design.props", + "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.Design.xml", + "microsoft.entityframeworkcore.design.7.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.design.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/7.0.0": { + "sha512": "eQiYygtR2xZ0Uy7KtiFRHpoEx/U8xNwbNRgu1pEJgSxbJLtg6tDL1y2YcIbSuIRSNEljXIIHq/apEhGm1QL70g==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.7.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite/7.0.0": { + "sha512": "tufYoEHetVeALPRqzCi4YukL+uoS0pBi/6m3uSCuM5NxO/tTbuizvvBRa3qJNYZOvF3K7m4lUmmcCymKr3JSSQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/_._", + "microsoft.entityframeworkcore.sqlite.7.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.sqlite.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/7.0.0": { + "sha512": "aUClrz1PT06fPDY+9f2IeDhYXj3/oPxM0r3I6syiyP3Th59hObVI0QsRu5+y7FbJIkO3NgyAi+e2vzWGhmBVbQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite.core/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.xml", + "microsoft.entityframeworkcore.sqlite.core.7.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.sqlite.core.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Tools/7.0.0": { + "sha512": "DtLJ0usm8NdPbRDxvNUBAYgnvqhodr/HPb461I+jrgHw5ZKF0vRTaokNth2Zy9xiw1ZTpT4c+S40f7AHWakODg==", + "type": "package", + "path": "microsoft.entityframeworkcore.tools/7.0.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/_._", + "microsoft.entityframeworkcore.tools.7.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/net461/any/ef.exe", + "tools/net461/win-arm64/ef.exe", + "tools/net461/win-x86/ef.exe", + "tools/netcoreapp2.0/any/ef.dll", + "tools/netcoreapp2.0/any/ef.runtimeconfig.json" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "type": "package", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/Microsoft.Extensions.ApiDescription.Server.props", + "build/Microsoft.Extensions.ApiDescription.Server.targets", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", + "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "microsoft.extensions.apidescription.server.nuspec", + "tools/Newtonsoft.Json.dll", + "tools/dotnet-getdocument.deps.json", + "tools/dotnet-getdocument.dll", + "tools/dotnet-getdocument.runtimeconfig.json", + "tools/net461-x86/GetDocument.Insider.exe", + "tools/net461-x86/GetDocument.Insider.exe.config", + "tools/net461-x86/Microsoft.Win32.Primitives.dll", + "tools/net461-x86/System.AppContext.dll", + "tools/net461-x86/System.Buffers.dll", + "tools/net461-x86/System.Collections.Concurrent.dll", + "tools/net461-x86/System.Collections.NonGeneric.dll", + "tools/net461-x86/System.Collections.Specialized.dll", + "tools/net461-x86/System.Collections.dll", + "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll", + "tools/net461-x86/System.ComponentModel.Primitives.dll", + "tools/net461-x86/System.ComponentModel.TypeConverter.dll", + "tools/net461-x86/System.ComponentModel.dll", + "tools/net461-x86/System.Console.dll", + "tools/net461-x86/System.Data.Common.dll", + "tools/net461-x86/System.Diagnostics.Contracts.dll", + "tools/net461-x86/System.Diagnostics.Debug.dll", + "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll", + "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll", + "tools/net461-x86/System.Diagnostics.Process.dll", + "tools/net461-x86/System.Diagnostics.StackTrace.dll", + "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net461-x86/System.Diagnostics.Tools.dll", + "tools/net461-x86/System.Diagnostics.TraceSource.dll", + "tools/net461-x86/System.Diagnostics.Tracing.dll", + "tools/net461-x86/System.Drawing.Primitives.dll", + "tools/net461-x86/System.Dynamic.Runtime.dll", + "tools/net461-x86/System.Globalization.Calendars.dll", + "tools/net461-x86/System.Globalization.Extensions.dll", + "tools/net461-x86/System.Globalization.dll", + "tools/net461-x86/System.IO.Compression.ZipFile.dll", + "tools/net461-x86/System.IO.Compression.dll", + "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll", + "tools/net461-x86/System.IO.FileSystem.Primitives.dll", + "tools/net461-x86/System.IO.FileSystem.Watcher.dll", + "tools/net461-x86/System.IO.FileSystem.dll", + "tools/net461-x86/System.IO.IsolatedStorage.dll", + "tools/net461-x86/System.IO.MemoryMappedFiles.dll", + "tools/net461-x86/System.IO.Pipes.dll", + "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll", + "tools/net461-x86/System.IO.dll", + "tools/net461-x86/System.Linq.Expressions.dll", + "tools/net461-x86/System.Linq.Parallel.dll", + "tools/net461-x86/System.Linq.Queryable.dll", + "tools/net461-x86/System.Linq.dll", + "tools/net461-x86/System.Memory.dll", + "tools/net461-x86/System.Net.Http.dll", + "tools/net461-x86/System.Net.NameResolution.dll", + "tools/net461-x86/System.Net.NetworkInformation.dll", + "tools/net461-x86/System.Net.Ping.dll", + "tools/net461-x86/System.Net.Primitives.dll", + "tools/net461-x86/System.Net.Requests.dll", + "tools/net461-x86/System.Net.Security.dll", + "tools/net461-x86/System.Net.Sockets.dll", + "tools/net461-x86/System.Net.WebHeaderCollection.dll", + "tools/net461-x86/System.Net.WebSockets.Client.dll", + "tools/net461-x86/System.Net.WebSockets.dll", + "tools/net461-x86/System.Numerics.Vectors.dll", + "tools/net461-x86/System.ObjectModel.dll", + "tools/net461-x86/System.Reflection.Extensions.dll", + "tools/net461-x86/System.Reflection.Primitives.dll", + "tools/net461-x86/System.Reflection.dll", + "tools/net461-x86/System.Resources.Reader.dll", + "tools/net461-x86/System.Resources.ResourceManager.dll", + "tools/net461-x86/System.Resources.Writer.dll", + "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll", + "tools/net461-x86/System.Runtime.Extensions.dll", + "tools/net461-x86/System.Runtime.Handles.dll", + "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net461-x86/System.Runtime.InteropServices.dll", + "tools/net461-x86/System.Runtime.Numerics.dll", + "tools/net461-x86/System.Runtime.Serialization.Formatters.dll", + "tools/net461-x86/System.Runtime.Serialization.Json.dll", + "tools/net461-x86/System.Runtime.Serialization.Primitives.dll", + "tools/net461-x86/System.Runtime.Serialization.Xml.dll", + "tools/net461-x86/System.Runtime.dll", + "tools/net461-x86/System.Security.Claims.dll", + "tools/net461-x86/System.Security.Cryptography.Algorithms.dll", + "tools/net461-x86/System.Security.Cryptography.Csp.dll", + "tools/net461-x86/System.Security.Cryptography.Encoding.dll", + "tools/net461-x86/System.Security.Cryptography.Primitives.dll", + "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll", + "tools/net461-x86/System.Security.Principal.dll", + "tools/net461-x86/System.Security.SecureString.dll", + "tools/net461-x86/System.Text.Encoding.Extensions.dll", + "tools/net461-x86/System.Text.Encoding.dll", + "tools/net461-x86/System.Text.RegularExpressions.dll", + "tools/net461-x86/System.Threading.Overlapped.dll", + "tools/net461-x86/System.Threading.Tasks.Parallel.dll", + "tools/net461-x86/System.Threading.Tasks.dll", + "tools/net461-x86/System.Threading.Thread.dll", + "tools/net461-x86/System.Threading.ThreadPool.dll", + "tools/net461-x86/System.Threading.Timer.dll", + "tools/net461-x86/System.Threading.dll", + "tools/net461-x86/System.ValueTuple.dll", + "tools/net461-x86/System.Xml.ReaderWriter.dll", + "tools/net461-x86/System.Xml.XDocument.dll", + "tools/net461-x86/System.Xml.XPath.XDocument.dll", + "tools/net461-x86/System.Xml.XPath.dll", + "tools/net461-x86/System.Xml.XmlDocument.dll", + "tools/net461-x86/System.Xml.XmlSerializer.dll", + "tools/net461-x86/netstandard.dll", + "tools/net461/GetDocument.Insider.exe", + "tools/net461/GetDocument.Insider.exe.config", + "tools/net461/Microsoft.Win32.Primitives.dll", + "tools/net461/System.AppContext.dll", + "tools/net461/System.Buffers.dll", + "tools/net461/System.Collections.Concurrent.dll", + "tools/net461/System.Collections.NonGeneric.dll", + "tools/net461/System.Collections.Specialized.dll", + "tools/net461/System.Collections.dll", + "tools/net461/System.ComponentModel.EventBasedAsync.dll", + "tools/net461/System.ComponentModel.Primitives.dll", + "tools/net461/System.ComponentModel.TypeConverter.dll", + "tools/net461/System.ComponentModel.dll", + "tools/net461/System.Console.dll", + "tools/net461/System.Data.Common.dll", + "tools/net461/System.Diagnostics.Contracts.dll", + "tools/net461/System.Diagnostics.Debug.dll", + "tools/net461/System.Diagnostics.DiagnosticSource.dll", + "tools/net461/System.Diagnostics.FileVersionInfo.dll", + "tools/net461/System.Diagnostics.Process.dll", + "tools/net461/System.Diagnostics.StackTrace.dll", + "tools/net461/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net461/System.Diagnostics.Tools.dll", + "tools/net461/System.Diagnostics.TraceSource.dll", + "tools/net461/System.Diagnostics.Tracing.dll", + "tools/net461/System.Drawing.Primitives.dll", + "tools/net461/System.Dynamic.Runtime.dll", + "tools/net461/System.Globalization.Calendars.dll", + "tools/net461/System.Globalization.Extensions.dll", + "tools/net461/System.Globalization.dll", + "tools/net461/System.IO.Compression.ZipFile.dll", + "tools/net461/System.IO.Compression.dll", + "tools/net461/System.IO.FileSystem.DriveInfo.dll", + "tools/net461/System.IO.FileSystem.Primitives.dll", + "tools/net461/System.IO.FileSystem.Watcher.dll", + "tools/net461/System.IO.FileSystem.dll", + "tools/net461/System.IO.IsolatedStorage.dll", + "tools/net461/System.IO.MemoryMappedFiles.dll", + "tools/net461/System.IO.Pipes.dll", + "tools/net461/System.IO.UnmanagedMemoryStream.dll", + "tools/net461/System.IO.dll", + "tools/net461/System.Linq.Expressions.dll", + "tools/net461/System.Linq.Parallel.dll", + "tools/net461/System.Linq.Queryable.dll", + "tools/net461/System.Linq.dll", + "tools/net461/System.Memory.dll", + "tools/net461/System.Net.Http.dll", + "tools/net461/System.Net.NameResolution.dll", + "tools/net461/System.Net.NetworkInformation.dll", + "tools/net461/System.Net.Ping.dll", + "tools/net461/System.Net.Primitives.dll", + "tools/net461/System.Net.Requests.dll", + "tools/net461/System.Net.Security.dll", + "tools/net461/System.Net.Sockets.dll", + "tools/net461/System.Net.WebHeaderCollection.dll", + "tools/net461/System.Net.WebSockets.Client.dll", + "tools/net461/System.Net.WebSockets.dll", + "tools/net461/System.Numerics.Vectors.dll", + "tools/net461/System.ObjectModel.dll", + "tools/net461/System.Reflection.Extensions.dll", + "tools/net461/System.Reflection.Primitives.dll", + "tools/net461/System.Reflection.dll", + "tools/net461/System.Resources.Reader.dll", + "tools/net461/System.Resources.ResourceManager.dll", + "tools/net461/System.Resources.Writer.dll", + "tools/net461/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net461/System.Runtime.CompilerServices.VisualC.dll", + "tools/net461/System.Runtime.Extensions.dll", + "tools/net461/System.Runtime.Handles.dll", + "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net461/System.Runtime.InteropServices.dll", + "tools/net461/System.Runtime.Numerics.dll", + "tools/net461/System.Runtime.Serialization.Formatters.dll", + "tools/net461/System.Runtime.Serialization.Json.dll", + "tools/net461/System.Runtime.Serialization.Primitives.dll", + "tools/net461/System.Runtime.Serialization.Xml.dll", + "tools/net461/System.Runtime.dll", + "tools/net461/System.Security.Claims.dll", + "tools/net461/System.Security.Cryptography.Algorithms.dll", + "tools/net461/System.Security.Cryptography.Csp.dll", + "tools/net461/System.Security.Cryptography.Encoding.dll", + "tools/net461/System.Security.Cryptography.Primitives.dll", + "tools/net461/System.Security.Cryptography.X509Certificates.dll", + "tools/net461/System.Security.Principal.dll", + "tools/net461/System.Security.SecureString.dll", + "tools/net461/System.Text.Encoding.Extensions.dll", + "tools/net461/System.Text.Encoding.dll", + "tools/net461/System.Text.RegularExpressions.dll", + "tools/net461/System.Threading.Overlapped.dll", + "tools/net461/System.Threading.Tasks.Parallel.dll", + "tools/net461/System.Threading.Tasks.dll", + "tools/net461/System.Threading.Thread.dll", + "tools/net461/System.Threading.ThreadPool.dll", + "tools/net461/System.Threading.Timer.dll", + "tools/net461/System.Threading.dll", + "tools/net461/System.ValueTuple.dll", + "tools/net461/System.Xml.ReaderWriter.dll", + "tools/net461/System.Xml.XDocument.dll", + "tools/net461/System.Xml.XPath.XDocument.dll", + "tools/net461/System.Xml.XPath.dll", + "tools/net461/System.Xml.XmlDocument.dll", + "tools/net461/System.Xml.XmlSerializer.dll", + "tools/net461/netstandard.dll", + "tools/netcoreapp2.1/GetDocument.Insider.deps.json", + "tools/netcoreapp2.1/GetDocument.Insider.dll", + "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json", + "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/7.0.0": { + "sha512": "IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/7.0.0": { + "sha512": "xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==", + "type": "package", + "path": "microsoft.extensions.caching.memory/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { + "sha512": "f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "sha512": "elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/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.7.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/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.7.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/7.0.0": { + "sha512": "oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/7.0.0": { + "sha512": "Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==", + "type": "package", + "path": "microsoft.extensions.logging/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/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.7.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "sha512": "kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/7.0.0": { + "sha512": "lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==", + "type": "package", + "path": "microsoft.extensions.options/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/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.7.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", + "type": "package", + "path": "microsoft.extensions.primitives/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.7.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.1": { + "sha512": "X5K/Pt02agb1V+khh5u7Q8hg02IVTshxV5owpR7UdQ9zfs0+A6qzca0F9jyv3o8SlOjEFHBabs+5cp7Noofzvg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.15.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.15.1.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.15.1": { + "sha512": "PpZHL/Bt/8vQ8g/6LxweuI1EusV0ogUBYnGM+bPeL/SG89gx2n05xKNE/U5JNEkLFLL+sk7O8T7c/PXhFtUtUg==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.15.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.15.1.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.15.1": { + "sha512": "6nHr+4yE8vj620Vy4L0pl7kmkvWc06wBrJ+AOo/gjqzu/UD/MYgySUqRGlZYrvvNmKkUWMw4hdn78MPCb4bstA==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.15.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.15.1.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.15.1": { + "sha512": "WwecgT/PNrytLNUWjkYtnnG2LXMAzkINSaZM+8dPPiEpOGz1bQDBWAenTSurYICxGoA1sOPriFXk+ocnQyprKw==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.15.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/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.6.15.1.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.15.1": { + "sha512": "0bd0ocKuNai0/GdhboIW37R6z8I0vFqlmiPeG055SJxPPJ7dfBo2tjJ3bPV9vjFCRDuusj24dldOsg4hWui6iw==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.15.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.15.1.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.OpenApi/1.4.3": { + "sha512": "rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==", + "type": "package", + "path": "microsoft.openapi/1.4.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.1.4.3.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Mono.TextTemplating/2.2.1": { + "sha512": "KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", + "type": "package", + "path": "mono.texttemplating/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net472/Mono.TextTemplating.dll", + "lib/netstandard2.0/Mono.TextTemplating.dll", + "mono.texttemplating.2.2.1.nupkg.sha512", + "mono.texttemplating.nuspec" + ] + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.2": { + "sha512": "ilkvNhrTersLmIVAcDwwPqfhUFCg19Z1GVMvCSi3xk6Akq94f4qadLORQCq/T8+9JgMiPs+F/NECw5uauviaNw==", + "type": "package", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid90/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.xml", + "lib/net6.0-ios14.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-ios14.2/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-tvos10.0/SQLitePCLRaw.batteries_v2.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "lib/xamarinios10/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.1.2.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.1.2": { + "sha512": "A8EBepVqY2lnAp3a8jnhbgzF2tlj2S3HcJQGANTYg/TbYbKa8Z5cM1h74An/vy0svhfzT7tVY0sFmUglLgv+2g==", + "type": "package", + "path": "sqlitepclraw.core/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.1.2.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.2": { + "sha512": "zibGtku8M4Eea1R3ZCAxc86QbNvyEN17mAcQkvWKBuHvRpMiK2g5anG4R5Be7cWKSd1i6baYz8y4dMMAKcXKPg==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "buildTransitive/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/alpine-arm/native/libe_sqlite3.so", + "runtimes/alpine-arm64/native/libe_sqlite3.so", + "runtimes/alpine-x64/native/libe_sqlite3.so", + "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net7.0/e_sqlite3.a", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-arm/native/libe_sqlite3.so", + "runtimes/linux-musl-arm64/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-s390x/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib", + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib", + "runtimes/osx-arm64/native/libe_sqlite3.dylib", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.1.2.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.2": { + "sha512": "lxCZarZdvAsMl2zw9bXHrXK6RxVhB4b23iTFhCOdHFhxfbsxLxWf+ocvswJwR/9Wh/E//ddMi+wJGqUKV7VwoA==", + "type": "package", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "sqlitepclraw.provider.e_sqlite3.2.1.2.nupkg.sha512", + "sqlitepclraw.provider.e_sqlite3.nuspec" + ] + }, + "Swashbuckle.AspNetCore/6.4.0": { + "sha512": "eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "type": "package", + "path": "swashbuckle.aspnetcore/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Swashbuckle.AspNetCore.props", + "swashbuckle.aspnetcore.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "sha512": "nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", + "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "sha512": "lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "sha512": "1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.nuspec" + ] + }, + "System.CodeDom/4.4.0": { + "sha512": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", + "type": "package", + "path": "system.codedom/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.dll", + "ref/net461/System.CodeDom.dll", + "ref/net461/System.CodeDom.xml", + "ref/netstandard2.0/System.CodeDom.dll", + "ref/netstandard2.0/System.CodeDom.xml", + "system.codedom.4.4.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.15.1": { + "sha512": "q3ZLyWmpX4+jW4XITf7Axd+9sC6w2NrQaKcQQT9A8waoknHgaNwSeookpUmPMQDqS0afT9Lh0JYub196vzuzbA==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.15.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/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.6.15.1.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.Memory/4.5.3": { + "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "type": "package", + "path": "system.memory/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.3.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encodings.Web/7.0.0": { + "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", + "type": "package", + "path": "system.text.encodings.web/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/net7.0/System.Text.Encodings.Web.dll", + "lib/net7.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.7.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/7.0.0": { + "sha512": "DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==", + "type": "package", + "path": "system.text.json/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net6.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/net7.0/System.Text.Json.dll", + "lib/net7.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.7.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net7.0": [ + "BCrypt.Net-Next >= 4.0.3", + "Microsoft.AspNetCore.Authentication.JwtBearer >= 7.0.0", + "Microsoft.AspNetCore.OpenApi >= 7.0.0", + "Microsoft.EntityFrameworkCore >= 7.0.0", + "Microsoft.EntityFrameworkCore.Sqlite >= 7.0.0", + "Microsoft.EntityFrameworkCore.Tools >= 7.0.0", + "Swashbuckle.AspNetCore >= 6.4.0" + ] + }, + "packageFolders": { + "C:\\Users\\shizh\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\BuaaLocationServer.csproj", + "projectName": "BuaaLocationServer", + "projectPath": "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\BuaaLocationServer.csproj", + "packagesPath": "C:\\Users\\shizh\\.nuget\\packages\\", + "outputPath": "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\obj\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\shizh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "BCrypt.Net-Next": { + "target": "Package", + "version": "[4.0.3, )" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Sqlite": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[7.0.0, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json" + } + } + } +} \ No newline at end of file diff --git a/obj/project.nuget.cache b/obj/project.nuget.cache new file mode 100644 index 0000000..6401794 --- /dev/null +++ b/obj/project.nuget.cache @@ -0,0 +1,55 @@ +{ + "version": 2, + "dgSpecHash": "JyoJH+ZfEhrfSUuClvsvz9haTbOsP3ytMLVV26jtz2T/l6SQNQymJ2YMrh38q7IU/3TqrDKJ4/jNxANNQlHvMQ==", + "success": true, + "projectFilePath": "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\BuaaLocationServer.csproj", + "expectedPackageFiles": [ + "C:\\Users\\shizh\\.nuget\\packages\\bcrypt.net-next\\4.0.3\\bcrypt.net-next.4.0.3.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\7.0.0\\microsoft.aspnetcore.authentication.jwtbearer.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.aspnetcore.openapi\\7.0.0\\microsoft.aspnetcore.openapi.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.data.sqlite.core\\7.0.0\\microsoft.data.sqlite.core.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.entityframeworkcore\\7.0.0\\microsoft.entityframeworkcore.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\7.0.0\\microsoft.entityframeworkcore.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\7.0.0\\microsoft.entityframeworkcore.analyzers.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.entityframeworkcore.design\\7.0.0\\microsoft.entityframeworkcore.design.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\7.0.0\\microsoft.entityframeworkcore.relational.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite\\7.0.0\\microsoft.entityframeworkcore.sqlite.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite.core\\7.0.0\\microsoft.entityframeworkcore.sqlite.core.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\7.0.0\\microsoft.entityframeworkcore.tools.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\7.0.0\\microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.caching.memory\\7.0.0\\microsoft.extensions.caching.memory.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\7.0.0\\microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\7.0.0\\microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\7.0.0\\microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.dependencymodel\\7.0.0\\microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.logging\\7.0.0\\microsoft.extensions.logging.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\7.0.0\\microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.options\\7.0.0\\microsoft.extensions.options.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.primitives\\7.0.0\\microsoft.extensions.primitives.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.15.1\\microsoft.identitymodel.jsonwebtokens.6.15.1.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.identitymodel.logging\\6.15.1\\microsoft.identitymodel.logging.6.15.1.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.15.1\\microsoft.identitymodel.protocols.6.15.1.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.15.1\\microsoft.identitymodel.protocols.openidconnect.6.15.1.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.15.1\\microsoft.identitymodel.tokens.6.15.1.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.openapi\\1.4.3\\microsoft.openapi.1.4.3.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\mono.texttemplating\\2.2.1\\mono.texttemplating.2.2.1.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.2\\sqlitepclraw.bundle_e_sqlite3.2.1.2.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\sqlitepclraw.core\\2.1.2\\sqlitepclraw.core.2.1.2.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.2\\sqlitepclraw.lib.e_sqlite3.2.1.2.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.2\\sqlitepclraw.provider.e_sqlite3.2.1.2.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\swashbuckle.aspnetcore\\6.4.0\\swashbuckle.aspnetcore.6.4.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.4.0\\swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.4.0\\swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.4.0\\swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\system.codedom\\4.4.0\\system.codedom.4.4.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.15.1\\system.identitymodel.tokens.jwt.6.15.1.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\system.text.encodings.web\\7.0.0\\system.text.encodings.web.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\system.text.json\\7.0.0\\system.text.json.7.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file diff --git a/obj/publish/linux-x64/BuaaLocationServer.csproj.nuget.dgspec.json b/obj/publish/linux-x64/BuaaLocationServer.csproj.nuget.dgspec.json new file mode 100644 index 0000000..ed2cbaa --- /dev/null +++ b/obj/publish/linux-x64/BuaaLocationServer.csproj.nuget.dgspec.json @@ -0,0 +1,122 @@ +{ + "format": 1, + "restore": { + "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\BuaaLocationServer.csproj": {} + }, + "projects": { + "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\BuaaLocationServer.csproj": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\BuaaLocationServer.csproj", + "projectName": "BuaaLocationServer", + "projectPath": "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\BuaaLocationServer.csproj", + "packagesPath": "C:\\Users\\shizh\\.nuget\\packages\\", + "outputPath": "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\obj\\publish\\linux-x64\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\shizh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "BCrypt.Net-Next": { + "target": "Package", + "version": "[4.0.3, )" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Sqlite": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[7.0.0, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.linux-x64", + "version": "[7.0.0, 7.0.0]" + }, + { + "name": "Microsoft.NETCore.App.Host.linux-x64", + "version": "[7.0.0, 7.0.0]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.linux-x64", + "version": "[7.0.0, 7.0.0]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + } + } +} \ No newline at end of file diff --git a/obj/publish/linux-x64/BuaaLocationServer.csproj.nuget.g.props b/obj/publish/linux-x64/BuaaLocationServer.csproj.nuget.g.props new file mode 100644 index 0000000..a7038c1 --- /dev/null +++ b/obj/publish/linux-x64/BuaaLocationServer.csproj.nuget.g.props @@ -0,0 +1,26 @@ + + + + True + NuGet + $(MSBuildThisFileDirectory)project.assets.json + $(UserProfile)\.nuget\packages\ + C:\Users\shizh\.nuget\packages\;C:\Program Files (x86)\Microsoft Visual Studio\Shared\NuGetPackages + PackageReference + 6.4.0 + + + + + + + + + + + + + C:\Users\shizh\.nuget\packages\microsoft.extensions.apidescription.server\6.0.5 + C:\Users\shizh\.nuget\packages\microsoft.entityframeworkcore.tools\7.0.0 + + \ No newline at end of file diff --git a/obj/publish/linux-x64/BuaaLocationServer.csproj.nuget.g.targets b/obj/publish/linux-x64/BuaaLocationServer.csproj.nuget.g.targets new file mode 100644 index 0000000..74f7410 --- /dev/null +++ b/obj/publish/linux-x64/BuaaLocationServer.csproj.nuget.g.targets @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/obj/publish/linux-x64/project.assets.json b/obj/publish/linux-x64/project.assets.json new file mode 100644 index 0000000..c0a2950 --- /dev/null +++ b/obj/publish/linux-x64/project.assets.json @@ -0,0 +1,3039 @@ +{ + "version": 3, + "targets": { + "net7.0": { + "BCrypt.Net-Next/4.0.3": { + "type": "package", + "compile": { + "lib/net6.0/BCrypt.Net-Next.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/BCrypt.Net-Next.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.Authentication.JwtBearer/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.15.1" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.OpenApi/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.4.3" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.Sqlite.Core/7.0.0": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.2" + }, + "compile": { + "lib/net6.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "7.0.0", + "Microsoft.EntityFrameworkCore.Analyzers": "7.0.0", + "Microsoft.Extensions.Caching.Memory": "7.0.0", + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.Logging": "7.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/7.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Design/7.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.EntityFrameworkCore.Relational": "7.0.0", + "Microsoft.Extensions.DependencyModel": "7.0.0", + "Mono.TextTemplating": "2.2.1" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": { + "related": ".xml" + } + }, + "build": { + "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "7.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "7.0.0", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.2" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "7.0.0", + "Microsoft.EntityFrameworkCore.Relational": "7.0.0", + "Microsoft.Extensions.DependencyModel": "7.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Tools/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "7.0.0" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "build": { + "build/Microsoft.Extensions.ApiDescription.Server.props": {}, + "build/Microsoft.Extensions.ApiDescription.Server.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {}, + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/7.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "7.0.0", + "System.Text.Json": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.15.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.15.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.15.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.15.1", + "Microsoft.IdentityModel.Tokens": "6.15.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.15.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.15.1", + "System.IdentityModel.Tokens.Jwt": "6.15.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.15.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.15.1", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.OpenApi/1.4.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Mono.TextTemplating/2.2.1": { + "type": "package", + "dependencies": { + "System.CodeDom": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Mono.TextTemplating.dll": {} + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.2": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.2", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.2" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + } + }, + "SQLitePCLRaw.core/2.1.2": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "build": { + "buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets": {} + }, + "runtimeTargets": { + "runtimes/alpine-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "alpine-arm" + }, + "runtimes/alpine-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "alpine-arm64" + }, + "runtimes/alpine-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "alpine-x64" + }, + "runtimes/browser-wasm/nativeassets/net7.0/e_sqlite3.a": { + "assetType": "native", + "rid": "browser-wasm" + }, + "runtimes/linux-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm" + }, + "runtimes/linux-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-arm64" + }, + "runtimes/linux-armel/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-armel" + }, + "runtimes/linux-mips64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-mips64" + }, + "runtimes/linux-musl-arm/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm" + }, + "runtimes/linux-musl-arm64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-arm64" + }, + "runtimes/linux-musl-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-musl-x64" + }, + "runtimes/linux-s390x/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-s390x" + }, + "runtimes/linux-x64/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x64" + }, + "runtimes/linux-x86/native/libe_sqlite3.so": { + "assetType": "native", + "rid": "linux-x86" + }, + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-arm64" + }, + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "maccatalyst-x64" + }, + "runtimes/osx-arm64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-arm64" + }, + "runtimes/osx-x64/native/libe_sqlite3.dylib": { + "assetType": "native", + "rid": "osx-x64" + }, + "runtimes/win-arm/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm" + }, + "runtimes/win-arm64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-arm64" + }, + "runtimes/win-x64/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x64" + }, + "runtimes/win-x86/native/e_sqlite3.dll": { + "assetType": "native", + "rid": "win-x86" + } + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.2": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.2" + }, + "compile": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + }, + "build": { + "build/Swashbuckle.AspNetCore.props": {} + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "System.CodeDom/4.4.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.CodeDom.dll": {} + } + }, + "System.IdentityModel.Tokens.Jwt/6.15.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.15.1", + "Microsoft.IdentityModel.Tokens": "6.15.1" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.Memory/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + }, + "runtimeTargets": { + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "assetType": "runtime", + "rid": "win" + } + } + }, + "System.Text.Encodings.Web/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + }, + "runtimeTargets": { + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll": { + "assetType": "runtime", + "rid": "browser" + } + } + }, + "System.Text.Json/7.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/System.Text.Json.targets": {} + } + } + }, + "net7.0/linux-x64": { + "BCrypt.Net-Next/4.0.3": { + "type": "package", + "compile": { + "lib/net6.0/BCrypt.Net-Next.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/BCrypt.Net-Next.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.Authentication.JwtBearer/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols.OpenIdConnect": "6.15.1" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.AspNetCore.OpenApi/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.4.3" + }, + "compile": { + "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll": { + "related": ".xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Microsoft.CSharp/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.0/_._": {} + }, + "runtime": { + "lib/netcoreapp2.0/_._": {} + } + }, + "Microsoft.Data.Sqlite.Core/7.0.0": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.2" + }, + "compile": { + "lib/net6.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.Data.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Abstractions": "7.0.0", + "Microsoft.EntityFrameworkCore.Analyzers": "7.0.0", + "Microsoft.Extensions.Caching.Memory": "7.0.0", + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.Logging": "7.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Analyzers/7.0.0": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Design/7.0.0": { + "type": "package", + "dependencies": { + "Humanizer.Core": "2.14.1", + "Microsoft.EntityFrameworkCore.Relational": "7.0.0", + "Microsoft.Extensions.DependencyModel": "7.0.0", + "Mono.TextTemplating": "2.2.1" + }, + "compile": { + "lib/net6.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll": { + "related": ".xml" + } + }, + "build": { + "build/net6.0/Microsoft.EntityFrameworkCore.Design.props": {} + } + }, + "Microsoft.EntityFrameworkCore.Relational/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore": "7.0.0", + "Microsoft.Extensions.Configuration.Abstractions": "7.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Sqlite/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Sqlite.Core": "7.0.0", + "SQLitePCLRaw.bundle_e_sqlite3": "2.1.2" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + } + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Data.Sqlite.Core": "7.0.0", + "Microsoft.EntityFrameworkCore.Relational": "7.0.0", + "Microsoft.Extensions.DependencyModel": "7.0.0" + }, + "compile": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll": { + "related": ".xml" + } + } + }, + "Microsoft.EntityFrameworkCore.Tools/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.EntityFrameworkCore.Design": "7.0.0" + }, + "compile": { + "lib/net6.0/_._": {} + }, + "runtime": { + "lib/net6.0/_._": {} + } + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "type": "package", + "build": { + "build/Microsoft.Extensions.ApiDescription.Server.props": {}, + "build/Microsoft.Extensions.ApiDescription.Server.targets": {} + }, + "buildMultiTargeting": { + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props": {}, + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets": {} + } + }, + "Microsoft.Extensions.Caching.Abstractions/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Caching.Memory/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Caching.Abstractions": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.DependencyModel/7.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "7.0.0", + "System.Text.Json": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection": "7.0.0", + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Logging.Abstractions": "7.0.0", + "Microsoft.Extensions.Options": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Logging.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets": {} + } + }, + "Microsoft.Extensions.Options/7.0.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.DependencyInjection.Abstractions": "7.0.0", + "Microsoft.Extensions.Primitives": "7.0.0" + }, + "compile": { + "lib/net7.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Options.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/Microsoft.Extensions.Primitives.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Tokens": "6.15.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Logging/6.15.1": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols/6.15.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Logging": "6.15.1", + "Microsoft.IdentityModel.Tokens": "6.15.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.15.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.Protocols": "6.15.1", + "System.IdentityModel.Tokens.Jwt": "6.15.1" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": { + "related": ".xml" + } + } + }, + "Microsoft.IdentityModel.Tokens/6.15.1": { + "type": "package", + "dependencies": { + "Microsoft.CSharp": "4.5.0", + "Microsoft.IdentityModel.Logging": "6.15.1", + "System.Security.Cryptography.Cng": "4.5.0" + }, + "compile": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll": { + "related": ".xml" + } + } + }, + "Microsoft.OpenApi/1.4.3": { + "type": "package", + "compile": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/netstandard2.0/Microsoft.OpenApi.dll": { + "related": ".pdb;.xml" + } + } + }, + "Mono.TextTemplating/2.2.1": { + "type": "package", + "dependencies": { + "System.CodeDom": "4.4.0" + }, + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/Mono.TextTemplating.dll": {} + } + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.2": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.lib.e_sqlite3": "2.1.2", + "SQLitePCLRaw.provider.e_sqlite3": "2.1.2" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll": {} + } + }, + "SQLitePCLRaw.core/2.1.2": { + "type": "package", + "dependencies": { + "System.Memory": "4.5.3" + }, + "compile": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + }, + "runtime": { + "lib/netstandard2.0/SQLitePCLRaw.core.dll": {} + } + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.2": { + "type": "package", + "compile": { + "lib/netstandard2.0/_._": {} + }, + "runtime": { + "lib/netstandard2.0/_._": {} + }, + "native": { + "runtimes/linux-x64/native/libe_sqlite3.so": {} + }, + "build": { + "buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets": {} + } + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.2": { + "type": "package", + "dependencies": { + "SQLitePCLRaw.core": "2.1.2" + }, + "compile": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + }, + "runtime": { + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll": {} + } + }, + "Swashbuckle.AspNetCore/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.Extensions.ApiDescription.Server": "6.0.5", + "Swashbuckle.AspNetCore.Swagger": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerGen": "6.4.0", + "Swashbuckle.AspNetCore.SwaggerUI": "6.4.0" + }, + "build": { + "build/Swashbuckle.AspNetCore.props": {} + } + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "type": "package", + "dependencies": { + "Microsoft.OpenApi": "1.2.3" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "type": "package", + "dependencies": { + "Swashbuckle.AspNetCore.Swagger": "6.4.0" + }, + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll": { + "related": ".pdb;.xml" + } + } + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "type": "package", + "compile": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "runtime": { + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll": { + "related": ".pdb;.xml" + } + }, + "frameworkReferences": [ + "Microsoft.AspNetCore.App" + ] + }, + "System.CodeDom/4.4.0": { + "type": "package", + "compile": { + "ref/netstandard2.0/_._": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.CodeDom.dll": {} + } + }, + "System.IdentityModel.Tokens.Jwt/6.15.1": { + "type": "package", + "dependencies": { + "Microsoft.IdentityModel.JsonWebTokens": "6.15.1", + "Microsoft.IdentityModel.Tokens": "6.15.1" + }, + "compile": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netstandard2.0/System.IdentityModel.Tokens.Jwt.dll": { + "related": ".xml" + } + } + }, + "System.Memory/4.5.3": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/_._": {} + }, + "runtime": { + "lib/netcoreapp2.1/_._": {} + } + }, + "System.Security.Cryptography.Cng/4.5.0": { + "type": "package", + "compile": { + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll": {} + } + }, + "System.Text.Encodings.Web/7.0.0": { + "type": "package", + "compile": { + "lib/net7.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Text.Encodings.Web.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/_._": {} + } + }, + "System.Text.Json/7.0.0": { + "type": "package", + "dependencies": { + "System.Text.Encodings.Web": "7.0.0" + }, + "compile": { + "lib/net7.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "runtime": { + "lib/net7.0/System.Text.Json.dll": { + "related": ".xml" + } + }, + "build": { + "buildTransitive/net6.0/System.Text.Json.targets": {} + } + } + } + }, + "libraries": { + "BCrypt.Net-Next/4.0.3": { + "sha512": "W+U9WvmZQgi5cX6FS5GDtDoPzUCV4LkBLkywq/kRZhuDwcbavOzcDAr3LXJFqHUi952Yj3LEYoWW0jbEUQChsA==", + "type": "package", + "path": "bcrypt.net-next/4.0.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "bcrypt.net-next.4.0.3.nupkg.sha512", + "bcrypt.net-next.nuspec", + "ico.png", + "lib/net20/BCrypt.Net-Next.dll", + "lib/net20/BCrypt.Net-Next.xml", + "lib/net35/BCrypt.Net-Next.dll", + "lib/net35/BCrypt.Net-Next.xml", + "lib/net462/BCrypt.Net-Next.dll", + "lib/net462/BCrypt.Net-Next.xml", + "lib/net472/BCrypt.Net-Next.dll", + "lib/net472/BCrypt.Net-Next.xml", + "lib/net48/BCrypt.Net-Next.dll", + "lib/net48/BCrypt.Net-Next.xml", + "lib/net5.0/BCrypt.Net-Next.dll", + "lib/net5.0/BCrypt.Net-Next.xml", + "lib/net6.0/BCrypt.Net-Next.dll", + "lib/net6.0/BCrypt.Net-Next.xml", + "lib/netstandard2.0/BCrypt.Net-Next.dll", + "lib/netstandard2.0/BCrypt.Net-Next.xml", + "lib/netstandard2.1/BCrypt.Net-Next.dll", + "lib/netstandard2.1/BCrypt.Net-Next.xml", + "readme.md" + ] + }, + "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/7.0.0": { + "sha512": "q2suMVl1gO6rBJkV7rxm0F2sBufValm2RKxY3zoWN4y6cAufDJYmzpLWPKju3kKFJFKNgivWgoTw0dvf4W5QDQ==", + "type": "package", + "path": "microsoft.aspnetcore.authentication.jwtbearer/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.dll", + "lib/net7.0/Microsoft.AspNetCore.Authentication.JwtBearer.xml", + "microsoft.aspnetcore.authentication.jwtbearer.7.0.0.nupkg.sha512", + "microsoft.aspnetcore.authentication.jwtbearer.nuspec" + ] + }, + "Microsoft.AspNetCore.OpenApi/7.0.0": { + "sha512": "P1mkNhZ3IwU3phNLIUkgqVXb1exnooTalIYwpSON3oKKkcRtACDgS4WpO+xnwFw4KzV0bmgkUqB3acXxIefvvg==", + "type": "package", + "path": "microsoft.aspnetcore.openapi/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "THIRD-PARTY-NOTICES.TXT", + "lib/net7.0/Microsoft.AspNetCore.OpenApi.dll", + "lib/net7.0/Microsoft.AspNetCore.OpenApi.xml", + "microsoft.aspnetcore.openapi.7.0.0.nupkg.sha512", + "microsoft.aspnetcore.openapi.nuspec" + ] + }, + "Microsoft.CSharp/4.5.0": { + "sha512": "kaj6Wb4qoMuH3HySFJhxwQfe8R/sJsNJnANrvv8WdFPMoNbKY5htfNscv+LHCu5ipz+49m2e+WQXpLXr9XYemQ==", + "type": "package", + "path": "microsoft.csharp/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net45/_._", + "lib/netcore50/Microsoft.CSharp.dll", + "lib/netcoreapp2.0/_._", + "lib/netstandard1.3/Microsoft.CSharp.dll", + "lib/netstandard2.0/Microsoft.CSharp.dll", + "lib/portable-net45+win8+wp8+wpa81/_._", + "lib/uap10.0.16299/_._", + "lib/win8/_._", + "lib/wp80/_._", + "lib/wpa81/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "microsoft.csharp.4.5.0.nupkg.sha512", + "microsoft.csharp.nuspec", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net45/_._", + "ref/netcore50/Microsoft.CSharp.dll", + "ref/netcore50/Microsoft.CSharp.xml", + "ref/netcore50/de/Microsoft.CSharp.xml", + "ref/netcore50/es/Microsoft.CSharp.xml", + "ref/netcore50/fr/Microsoft.CSharp.xml", + "ref/netcore50/it/Microsoft.CSharp.xml", + "ref/netcore50/ja/Microsoft.CSharp.xml", + "ref/netcore50/ko/Microsoft.CSharp.xml", + "ref/netcore50/ru/Microsoft.CSharp.xml", + "ref/netcore50/zh-hans/Microsoft.CSharp.xml", + "ref/netcore50/zh-hant/Microsoft.CSharp.xml", + "ref/netcoreapp2.0/_._", + "ref/netstandard1.0/Microsoft.CSharp.dll", + "ref/netstandard1.0/Microsoft.CSharp.xml", + "ref/netstandard1.0/de/Microsoft.CSharp.xml", + "ref/netstandard1.0/es/Microsoft.CSharp.xml", + "ref/netstandard1.0/fr/Microsoft.CSharp.xml", + "ref/netstandard1.0/it/Microsoft.CSharp.xml", + "ref/netstandard1.0/ja/Microsoft.CSharp.xml", + "ref/netstandard1.0/ko/Microsoft.CSharp.xml", + "ref/netstandard1.0/ru/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hans/Microsoft.CSharp.xml", + "ref/netstandard1.0/zh-hant/Microsoft.CSharp.xml", + "ref/netstandard2.0/Microsoft.CSharp.dll", + "ref/netstandard2.0/Microsoft.CSharp.xml", + "ref/portable-net45+win8+wp8+wpa81/_._", + "ref/uap10.0.16299/_._", + "ref/win8/_._", + "ref/wp80/_._", + "ref/wpa81/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "Microsoft.Data.Sqlite.Core/7.0.0": { + "sha512": "WC7SANtaFTmQ/WPyhrE96h88MrH28C7kTBenDf5Eo+IR6CbWM0Uw2pR2++tyYr3qe/zSIsIYroEupB1mLg/adw==", + "type": "package", + "path": "microsoft.data.sqlite.core/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.Data.Sqlite.dll", + "lib/net6.0/Microsoft.Data.Sqlite.xml", + "lib/netstandard2.0/Microsoft.Data.Sqlite.dll", + "lib/netstandard2.0/Microsoft.Data.Sqlite.xml", + "microsoft.data.sqlite.core.7.0.0.nupkg.sha512", + "microsoft.data.sqlite.core.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore/7.0.0": { + "sha512": "9W+IfmAzMrp2ZpKZLhgTlWljSBM9Erldis1us61DAGi+L7Q6vilTbe1G2zDxtYO8F2H0I0Qnupdx5Cp4s2xoZw==", + "type": "package", + "path": "microsoft.entityframeworkcore/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "buildTransitive/net6.0/Microsoft.EntityFrameworkCore.props", + "lib/net6.0/Microsoft.EntityFrameworkCore.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.xml", + "microsoft.entityframeworkcore.7.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Abstractions/7.0.0": { + "sha512": "Pfu3Zjj5+d2Gt27oE9dpGiF/VobBB+s5ogrfI9sBsXQE1SG49RqVz5+IyeNnzhyejFrPIQsPDRMchhcojy4Hbw==", + "type": "package", + "path": "microsoft.entityframeworkcore.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.Abstractions.xml", + "microsoft.entityframeworkcore.abstractions.7.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.abstractions.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Analyzers/7.0.0": { + "sha512": "Qkd2H+jLe37o5ku+LjT6qf7kAHY75Yfn2bBDQgqr13DTOLYpEy1Mt93KPFjaZvIu/srEcbfGGMRL7urKm5zN8Q==", + "type": "package", + "path": "microsoft.entityframeworkcore.analyzers/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "analyzers/dotnet/cs/Microsoft.EntityFrameworkCore.Analyzers.dll", + "lib/netstandard2.0/_._", + "microsoft.entityframeworkcore.analyzers.7.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.analyzers.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Design/7.0.0": { + "sha512": "fEEU/zZ/VblZRQxHNZxgGKVtEtOGqEAmuHkACV1i0H031bM8PQKTS7PlKPVOgg0C1v+6yeHoIAGGgbAvG9f7kw==", + "type": "package", + "path": "microsoft.entityframeworkcore.design/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/net6.0/Microsoft.EntityFrameworkCore.Design.props", + "lib/net6.0/Microsoft.EntityFrameworkCore.Design.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.Design.xml", + "microsoft.entityframeworkcore.design.7.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.design.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Relational/7.0.0": { + "sha512": "eQiYygtR2xZ0Uy7KtiFRHpoEx/U8xNwbNRgu1pEJgSxbJLtg6tDL1y2YcIbSuIRSNEljXIIHq/apEhGm1QL70g==", + "type": "package", + "path": "microsoft.entityframeworkcore.relational/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.Relational.xml", + "microsoft.entityframeworkcore.relational.7.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.relational.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite/7.0.0": { + "sha512": "tufYoEHetVeALPRqzCi4YukL+uoS0pBi/6m3uSCuM5NxO/tTbuizvvBRa3qJNYZOvF3K7m4lUmmcCymKr3JSSQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/_._", + "microsoft.entityframeworkcore.sqlite.7.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.sqlite.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Sqlite.Core/7.0.0": { + "sha512": "aUClrz1PT06fPDY+9f2IeDhYXj3/oPxM0r3I6syiyP3Th59hObVI0QsRu5+y7FbJIkO3NgyAi+e2vzWGhmBVbQ==", + "type": "package", + "path": "microsoft.entityframeworkcore.sqlite.core/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.dll", + "lib/net6.0/Microsoft.EntityFrameworkCore.Sqlite.xml", + "microsoft.entityframeworkcore.sqlite.core.7.0.0.nupkg.sha512", + "microsoft.entityframeworkcore.sqlite.core.nuspec" + ] + }, + "Microsoft.EntityFrameworkCore.Tools/7.0.0": { + "sha512": "DtLJ0usm8NdPbRDxvNUBAYgnvqhodr/HPb461I+jrgHw5ZKF0vRTaokNth2Zy9xiw1ZTpT4c+S40f7AHWakODg==", + "type": "package", + "path": "microsoft.entityframeworkcore.tools/7.0.0", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "lib/net6.0/_._", + "microsoft.entityframeworkcore.tools.7.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/net461/any/ef.exe", + "tools/net461/win-arm64/ef.exe", + "tools/net461/win-x86/ef.exe", + "tools/netcoreapp2.0/any/ef.dll", + "tools/netcoreapp2.0/any/ef.runtimeconfig.json" + ] + }, + "Microsoft.Extensions.ApiDescription.Server/6.0.5": { + "sha512": "Ckb5EDBUNJdFWyajfXzUIMRkhf52fHZOQuuZg/oiu8y7zDCVwD0iHhew6MnThjHmevanpxL3f5ci2TtHQEN6bw==", + "type": "package", + "path": "microsoft.extensions.apidescription.server/6.0.5", + "hasTools": true, + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "build/Microsoft.Extensions.ApiDescription.Server.props", + "build/Microsoft.Extensions.ApiDescription.Server.targets", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.props", + "buildMultiTargeting/Microsoft.Extensions.ApiDescription.Server.targets", + "microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "microsoft.extensions.apidescription.server.nuspec", + "tools/Newtonsoft.Json.dll", + "tools/dotnet-getdocument.deps.json", + "tools/dotnet-getdocument.dll", + "tools/dotnet-getdocument.runtimeconfig.json", + "tools/net461-x86/GetDocument.Insider.exe", + "tools/net461-x86/GetDocument.Insider.exe.config", + "tools/net461-x86/Microsoft.Win32.Primitives.dll", + "tools/net461-x86/System.AppContext.dll", + "tools/net461-x86/System.Buffers.dll", + "tools/net461-x86/System.Collections.Concurrent.dll", + "tools/net461-x86/System.Collections.NonGeneric.dll", + "tools/net461-x86/System.Collections.Specialized.dll", + "tools/net461-x86/System.Collections.dll", + "tools/net461-x86/System.ComponentModel.EventBasedAsync.dll", + "tools/net461-x86/System.ComponentModel.Primitives.dll", + "tools/net461-x86/System.ComponentModel.TypeConverter.dll", + "tools/net461-x86/System.ComponentModel.dll", + "tools/net461-x86/System.Console.dll", + "tools/net461-x86/System.Data.Common.dll", + "tools/net461-x86/System.Diagnostics.Contracts.dll", + "tools/net461-x86/System.Diagnostics.Debug.dll", + "tools/net461-x86/System.Diagnostics.DiagnosticSource.dll", + "tools/net461-x86/System.Diagnostics.FileVersionInfo.dll", + "tools/net461-x86/System.Diagnostics.Process.dll", + "tools/net461-x86/System.Diagnostics.StackTrace.dll", + "tools/net461-x86/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net461-x86/System.Diagnostics.Tools.dll", + "tools/net461-x86/System.Diagnostics.TraceSource.dll", + "tools/net461-x86/System.Diagnostics.Tracing.dll", + "tools/net461-x86/System.Drawing.Primitives.dll", + "tools/net461-x86/System.Dynamic.Runtime.dll", + "tools/net461-x86/System.Globalization.Calendars.dll", + "tools/net461-x86/System.Globalization.Extensions.dll", + "tools/net461-x86/System.Globalization.dll", + "tools/net461-x86/System.IO.Compression.ZipFile.dll", + "tools/net461-x86/System.IO.Compression.dll", + "tools/net461-x86/System.IO.FileSystem.DriveInfo.dll", + "tools/net461-x86/System.IO.FileSystem.Primitives.dll", + "tools/net461-x86/System.IO.FileSystem.Watcher.dll", + "tools/net461-x86/System.IO.FileSystem.dll", + "tools/net461-x86/System.IO.IsolatedStorage.dll", + "tools/net461-x86/System.IO.MemoryMappedFiles.dll", + "tools/net461-x86/System.IO.Pipes.dll", + "tools/net461-x86/System.IO.UnmanagedMemoryStream.dll", + "tools/net461-x86/System.IO.dll", + "tools/net461-x86/System.Linq.Expressions.dll", + "tools/net461-x86/System.Linq.Parallel.dll", + "tools/net461-x86/System.Linq.Queryable.dll", + "tools/net461-x86/System.Linq.dll", + "tools/net461-x86/System.Memory.dll", + "tools/net461-x86/System.Net.Http.dll", + "tools/net461-x86/System.Net.NameResolution.dll", + "tools/net461-x86/System.Net.NetworkInformation.dll", + "tools/net461-x86/System.Net.Ping.dll", + "tools/net461-x86/System.Net.Primitives.dll", + "tools/net461-x86/System.Net.Requests.dll", + "tools/net461-x86/System.Net.Security.dll", + "tools/net461-x86/System.Net.Sockets.dll", + "tools/net461-x86/System.Net.WebHeaderCollection.dll", + "tools/net461-x86/System.Net.WebSockets.Client.dll", + "tools/net461-x86/System.Net.WebSockets.dll", + "tools/net461-x86/System.Numerics.Vectors.dll", + "tools/net461-x86/System.ObjectModel.dll", + "tools/net461-x86/System.Reflection.Extensions.dll", + "tools/net461-x86/System.Reflection.Primitives.dll", + "tools/net461-x86/System.Reflection.dll", + "tools/net461-x86/System.Resources.Reader.dll", + "tools/net461-x86/System.Resources.ResourceManager.dll", + "tools/net461-x86/System.Resources.Writer.dll", + "tools/net461-x86/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net461-x86/System.Runtime.CompilerServices.VisualC.dll", + "tools/net461-x86/System.Runtime.Extensions.dll", + "tools/net461-x86/System.Runtime.Handles.dll", + "tools/net461-x86/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net461-x86/System.Runtime.InteropServices.dll", + "tools/net461-x86/System.Runtime.Numerics.dll", + "tools/net461-x86/System.Runtime.Serialization.Formatters.dll", + "tools/net461-x86/System.Runtime.Serialization.Json.dll", + "tools/net461-x86/System.Runtime.Serialization.Primitives.dll", + "tools/net461-x86/System.Runtime.Serialization.Xml.dll", + "tools/net461-x86/System.Runtime.dll", + "tools/net461-x86/System.Security.Claims.dll", + "tools/net461-x86/System.Security.Cryptography.Algorithms.dll", + "tools/net461-x86/System.Security.Cryptography.Csp.dll", + "tools/net461-x86/System.Security.Cryptography.Encoding.dll", + "tools/net461-x86/System.Security.Cryptography.Primitives.dll", + "tools/net461-x86/System.Security.Cryptography.X509Certificates.dll", + "tools/net461-x86/System.Security.Principal.dll", + "tools/net461-x86/System.Security.SecureString.dll", + "tools/net461-x86/System.Text.Encoding.Extensions.dll", + "tools/net461-x86/System.Text.Encoding.dll", + "tools/net461-x86/System.Text.RegularExpressions.dll", + "tools/net461-x86/System.Threading.Overlapped.dll", + "tools/net461-x86/System.Threading.Tasks.Parallel.dll", + "tools/net461-x86/System.Threading.Tasks.dll", + "tools/net461-x86/System.Threading.Thread.dll", + "tools/net461-x86/System.Threading.ThreadPool.dll", + "tools/net461-x86/System.Threading.Timer.dll", + "tools/net461-x86/System.Threading.dll", + "tools/net461-x86/System.ValueTuple.dll", + "tools/net461-x86/System.Xml.ReaderWriter.dll", + "tools/net461-x86/System.Xml.XDocument.dll", + "tools/net461-x86/System.Xml.XPath.XDocument.dll", + "tools/net461-x86/System.Xml.XPath.dll", + "tools/net461-x86/System.Xml.XmlDocument.dll", + "tools/net461-x86/System.Xml.XmlSerializer.dll", + "tools/net461-x86/netstandard.dll", + "tools/net461/GetDocument.Insider.exe", + "tools/net461/GetDocument.Insider.exe.config", + "tools/net461/Microsoft.Win32.Primitives.dll", + "tools/net461/System.AppContext.dll", + "tools/net461/System.Buffers.dll", + "tools/net461/System.Collections.Concurrent.dll", + "tools/net461/System.Collections.NonGeneric.dll", + "tools/net461/System.Collections.Specialized.dll", + "tools/net461/System.Collections.dll", + "tools/net461/System.ComponentModel.EventBasedAsync.dll", + "tools/net461/System.ComponentModel.Primitives.dll", + "tools/net461/System.ComponentModel.TypeConverter.dll", + "tools/net461/System.ComponentModel.dll", + "tools/net461/System.Console.dll", + "tools/net461/System.Data.Common.dll", + "tools/net461/System.Diagnostics.Contracts.dll", + "tools/net461/System.Diagnostics.Debug.dll", + "tools/net461/System.Diagnostics.DiagnosticSource.dll", + "tools/net461/System.Diagnostics.FileVersionInfo.dll", + "tools/net461/System.Diagnostics.Process.dll", + "tools/net461/System.Diagnostics.StackTrace.dll", + "tools/net461/System.Diagnostics.TextWriterTraceListener.dll", + "tools/net461/System.Diagnostics.Tools.dll", + "tools/net461/System.Diagnostics.TraceSource.dll", + "tools/net461/System.Diagnostics.Tracing.dll", + "tools/net461/System.Drawing.Primitives.dll", + "tools/net461/System.Dynamic.Runtime.dll", + "tools/net461/System.Globalization.Calendars.dll", + "tools/net461/System.Globalization.Extensions.dll", + "tools/net461/System.Globalization.dll", + "tools/net461/System.IO.Compression.ZipFile.dll", + "tools/net461/System.IO.Compression.dll", + "tools/net461/System.IO.FileSystem.DriveInfo.dll", + "tools/net461/System.IO.FileSystem.Primitives.dll", + "tools/net461/System.IO.FileSystem.Watcher.dll", + "tools/net461/System.IO.FileSystem.dll", + "tools/net461/System.IO.IsolatedStorage.dll", + "tools/net461/System.IO.MemoryMappedFiles.dll", + "tools/net461/System.IO.Pipes.dll", + "tools/net461/System.IO.UnmanagedMemoryStream.dll", + "tools/net461/System.IO.dll", + "tools/net461/System.Linq.Expressions.dll", + "tools/net461/System.Linq.Parallel.dll", + "tools/net461/System.Linq.Queryable.dll", + "tools/net461/System.Linq.dll", + "tools/net461/System.Memory.dll", + "tools/net461/System.Net.Http.dll", + "tools/net461/System.Net.NameResolution.dll", + "tools/net461/System.Net.NetworkInformation.dll", + "tools/net461/System.Net.Ping.dll", + "tools/net461/System.Net.Primitives.dll", + "tools/net461/System.Net.Requests.dll", + "tools/net461/System.Net.Security.dll", + "tools/net461/System.Net.Sockets.dll", + "tools/net461/System.Net.WebHeaderCollection.dll", + "tools/net461/System.Net.WebSockets.Client.dll", + "tools/net461/System.Net.WebSockets.dll", + "tools/net461/System.Numerics.Vectors.dll", + "tools/net461/System.ObjectModel.dll", + "tools/net461/System.Reflection.Extensions.dll", + "tools/net461/System.Reflection.Primitives.dll", + "tools/net461/System.Reflection.dll", + "tools/net461/System.Resources.Reader.dll", + "tools/net461/System.Resources.ResourceManager.dll", + "tools/net461/System.Resources.Writer.dll", + "tools/net461/System.Runtime.CompilerServices.Unsafe.dll", + "tools/net461/System.Runtime.CompilerServices.VisualC.dll", + "tools/net461/System.Runtime.Extensions.dll", + "tools/net461/System.Runtime.Handles.dll", + "tools/net461/System.Runtime.InteropServices.RuntimeInformation.dll", + "tools/net461/System.Runtime.InteropServices.dll", + "tools/net461/System.Runtime.Numerics.dll", + "tools/net461/System.Runtime.Serialization.Formatters.dll", + "tools/net461/System.Runtime.Serialization.Json.dll", + "tools/net461/System.Runtime.Serialization.Primitives.dll", + "tools/net461/System.Runtime.Serialization.Xml.dll", + "tools/net461/System.Runtime.dll", + "tools/net461/System.Security.Claims.dll", + "tools/net461/System.Security.Cryptography.Algorithms.dll", + "tools/net461/System.Security.Cryptography.Csp.dll", + "tools/net461/System.Security.Cryptography.Encoding.dll", + "tools/net461/System.Security.Cryptography.Primitives.dll", + "tools/net461/System.Security.Cryptography.X509Certificates.dll", + "tools/net461/System.Security.Principal.dll", + "tools/net461/System.Security.SecureString.dll", + "tools/net461/System.Text.Encoding.Extensions.dll", + "tools/net461/System.Text.Encoding.dll", + "tools/net461/System.Text.RegularExpressions.dll", + "tools/net461/System.Threading.Overlapped.dll", + "tools/net461/System.Threading.Tasks.Parallel.dll", + "tools/net461/System.Threading.Tasks.dll", + "tools/net461/System.Threading.Thread.dll", + "tools/net461/System.Threading.ThreadPool.dll", + "tools/net461/System.Threading.Timer.dll", + "tools/net461/System.Threading.dll", + "tools/net461/System.ValueTuple.dll", + "tools/net461/System.Xml.ReaderWriter.dll", + "tools/net461/System.Xml.XDocument.dll", + "tools/net461/System.Xml.XPath.XDocument.dll", + "tools/net461/System.Xml.XPath.dll", + "tools/net461/System.Xml.XmlDocument.dll", + "tools/net461/System.Xml.XmlSerializer.dll", + "tools/net461/netstandard.dll", + "tools/netcoreapp2.1/GetDocument.Insider.deps.json", + "tools/netcoreapp2.1/GetDocument.Insider.dll", + "tools/netcoreapp2.1/GetDocument.Insider.runtimeconfig.json", + "tools/netcoreapp2.1/System.Diagnostics.DiagnosticSource.dll" + ] + }, + "Microsoft.Extensions.Caching.Abstractions/7.0.0": { + "sha512": "IeimUd0TNbhB4ded3AbgBLQv2SnsiVugDyGV1MvspQFVlA07nDC7Zul7kcwH5jWN3JiTcp/ySE83AIJo8yfKjg==", + "type": "package", + "path": "microsoft.extensions.caching.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Abstractions.xml", + "microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512", + "microsoft.extensions.caching.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Caching.Memory/7.0.0": { + "sha512": "xpidBs2KCE2gw1JrD0quHE72kvCaI3xFql5/Peb2GRtUuZX+dYPoK/NTdVMiM67Svym0M0Df9A3xyU0FbMQhHw==", + "type": "package", + "path": "microsoft.extensions.caching.memory/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Caching.Memory.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Caching.Memory.targets", + "lib/net462/Microsoft.Extensions.Caching.Memory.dll", + "lib/net462/Microsoft.Extensions.Caching.Memory.xml", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net6.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/net7.0/Microsoft.Extensions.Caching.Memory.xml", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.dll", + "lib/netstandard2.0/Microsoft.Extensions.Caching.Memory.xml", + "microsoft.extensions.caching.memory.7.0.0.nupkg.sha512", + "microsoft.extensions.caching.memory.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Configuration.Abstractions/7.0.0": { + "sha512": "f34u2eaqIjNO9YLHBz8rozVZ+TcFiFs0F3r7nUJd7FRkVSxk8u4OpoK226mi49MwexHOR2ibP9MFvRUaLilcQQ==", + "type": "package", + "path": "microsoft.extensions.configuration.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Configuration.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Configuration.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Configuration.Abstractions.xml", + "microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512", + "microsoft.extensions.configuration.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection/7.0.0": { + "sha512": "elNeOmkeX3eDVG6pYVeV82p29hr+UKDaBhrZyWvWLw/EVZSYEkZlQdkp0V39k/Xehs2Qa0mvoCvkVj3eQxNQ1Q==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.xml", + "lib/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.7.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyInjection.Abstractions/7.0.0": { + "sha512": "h3j/QfmFN4S0w4C2A6X7arXij/M/OVw3uQHSOFxnND4DyAzO1F9eMX7Eti7lU/OkSthEE0WzRsfT/Dmx86jzCw==", + "type": "package", + "path": "microsoft.extensions.dependencyinjection.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyInjection.Abstractions.targets", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net462/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.DependencyInjection.Abstractions.xml", + "lib/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.7.0.0.nupkg.sha512", + "microsoft.extensions.dependencyinjection.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.DependencyModel/7.0.0": { + "sha512": "oONNYd71J3LzkWc4fUHl3SvMfiQMYUCo/mDHDEu76hYYxdhdrPYv6fvGv9nnKVyhE9P0h20AU8RZB5OOWQcAXg==", + "type": "package", + "path": "microsoft.extensions.dependencymodel/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.DependencyModel.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.DependencyModel.targets", + "lib/net462/Microsoft.Extensions.DependencyModel.dll", + "lib/net462/Microsoft.Extensions.DependencyModel.xml", + "lib/net6.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net6.0/Microsoft.Extensions.DependencyModel.xml", + "lib/net7.0/Microsoft.Extensions.DependencyModel.dll", + "lib/net7.0/Microsoft.Extensions.DependencyModel.xml", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.dll", + "lib/netstandard2.0/Microsoft.Extensions.DependencyModel.xml", + "microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512", + "microsoft.extensions.dependencymodel.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging/7.0.0": { + "sha512": "Nw2muoNrOG5U5qa2ZekXwudUn2BJcD41e65zwmDHb1fQegTX66UokLWZkJRpqSSHXDOWZ5V0iqhbxOEky91atA==", + "type": "package", + "path": "microsoft.extensions.logging/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Logging.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.targets", + "lib/net462/Microsoft.Extensions.Logging.dll", + "lib/net462/Microsoft.Extensions.Logging.xml", + "lib/net6.0/Microsoft.Extensions.Logging.dll", + "lib/net6.0/Microsoft.Extensions.Logging.xml", + "lib/net7.0/Microsoft.Extensions.Logging.dll", + "lib/net7.0/Microsoft.Extensions.Logging.xml", + "lib/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.7.0.0.nupkg.sha512", + "microsoft.extensions.logging.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Logging.Abstractions/7.0.0": { + "sha512": "kmn78+LPVMOWeITUjIlfxUPDsI0R6G0RkeAMBmQxAJ7vBJn4q2dTva7pWi65ceN5vPGjJ9q/Uae2WKgvfktJAw==", + "type": "package", + "path": "microsoft.extensions.logging.abstractions/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/Microsoft.Extensions.Logging.Generators.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/Microsoft.Extensions.Logging.Generators.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/Microsoft.Extensions.Logging.Generators.resources.dll", + "buildTransitive/net461/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net462/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/net6.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "buildTransitive/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.targets", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net462/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net6.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/net7.0/Microsoft.Extensions.Logging.Abstractions.xml", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.dll", + "lib/netstandard2.0/Microsoft.Extensions.Logging.Abstractions.xml", + "microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512", + "microsoft.extensions.logging.abstractions.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Options/7.0.0": { + "sha512": "lP1yBnTTU42cKpMozuafbvNtQ7QcBjr/CcK3bYOGEMH55Fjt+iecXjT6chR7vbgCMqy3PG3aNQSZgo/EuY/9qQ==", + "type": "package", + "path": "microsoft.extensions.options/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Options.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Options.targets", + "lib/net462/Microsoft.Extensions.Options.dll", + "lib/net462/Microsoft.Extensions.Options.xml", + "lib/net6.0/Microsoft.Extensions.Options.dll", + "lib/net6.0/Microsoft.Extensions.Options.xml", + "lib/net7.0/Microsoft.Extensions.Options.dll", + "lib/net7.0/Microsoft.Extensions.Options.xml", + "lib/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.7.0.0.nupkg.sha512", + "microsoft.extensions.options.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.Extensions.Primitives/7.0.0": { + "sha512": "um1KU5kxcRp3CNuI8o/GrZtD4AIOXDk+RLsytjZ9QPok3ttLUelLKpilVPuaFT3TFjOhSibUAso0odbOaCDj3Q==", + "type": "package", + "path": "microsoft.extensions.primitives/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/Microsoft.Extensions.Primitives.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/Microsoft.Extensions.Primitives.targets", + "lib/net462/Microsoft.Extensions.Primitives.dll", + "lib/net462/Microsoft.Extensions.Primitives.xml", + "lib/net6.0/Microsoft.Extensions.Primitives.dll", + "lib/net6.0/Microsoft.Extensions.Primitives.xml", + "lib/net7.0/Microsoft.Extensions.Primitives.dll", + "lib/net7.0/Microsoft.Extensions.Primitives.xml", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.dll", + "lib/netstandard2.0/Microsoft.Extensions.Primitives.xml", + "microsoft.extensions.primitives.7.0.0.nupkg.sha512", + "microsoft.extensions.primitives.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "Microsoft.IdentityModel.JsonWebTokens/6.15.1": { + "sha512": "X5K/Pt02agb1V+khh5u7Q8hg02IVTshxV5owpR7UdQ9zfs0+A6qzca0F9jyv3o8SlOjEFHBabs+5cp7Noofzvg==", + "type": "package", + "path": "microsoft.identitymodel.jsonwebtokens/6.15.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net45/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net461/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/net472/Microsoft.IdentityModel.JsonWebTokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.JsonWebTokens.xml", + "microsoft.identitymodel.jsonwebtokens.6.15.1.nupkg.sha512", + "microsoft.identitymodel.jsonwebtokens.nuspec" + ] + }, + "Microsoft.IdentityModel.Logging/6.15.1": { + "sha512": "PpZHL/Bt/8vQ8g/6LxweuI1EusV0ogUBYnGM+bPeL/SG89gx2n05xKNE/U5JNEkLFLL+sk7O8T7c/PXhFtUtUg==", + "type": "package", + "path": "microsoft.identitymodel.logging/6.15.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Logging.dll", + "lib/net45/Microsoft.IdentityModel.Logging.xml", + "lib/net461/Microsoft.IdentityModel.Logging.dll", + "lib/net461/Microsoft.IdentityModel.Logging.xml", + "lib/net472/Microsoft.IdentityModel.Logging.dll", + "lib/net472/Microsoft.IdentityModel.Logging.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Logging.xml", + "microsoft.identitymodel.logging.6.15.1.nupkg.sha512", + "microsoft.identitymodel.logging.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols/6.15.1": { + "sha512": "6nHr+4yE8vj620Vy4L0pl7kmkvWc06wBrJ+AOo/gjqzu/UD/MYgySUqRGlZYrvvNmKkUWMw4hdn78MPCb4bstA==", + "type": "package", + "path": "microsoft.identitymodel.protocols/6.15.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.dll", + "lib/net472/Microsoft.IdentityModel.Protocols.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Protocols.xml", + "microsoft.identitymodel.protocols.6.15.1.nupkg.sha512", + "microsoft.identitymodel.protocols.nuspec" + ] + }, + "Microsoft.IdentityModel.Protocols.OpenIdConnect/6.15.1": { + "sha512": "WwecgT/PNrytLNUWjkYtnnG2LXMAzkINSaZM+8dPPiEpOGz1bQDBWAenTSurYICxGoA1sOPriFXk+ocnQyprKw==", + "type": "package", + "path": "microsoft.identitymodel.protocols.openidconnect/6.15.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net461/Microsoft.IdentityModel.Protocols.OpenIdConnect.xml", + "lib/net472/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll", + "lib/net472/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.6.15.1.nupkg.sha512", + "microsoft.identitymodel.protocols.openidconnect.nuspec" + ] + }, + "Microsoft.IdentityModel.Tokens/6.15.1": { + "sha512": "0bd0ocKuNai0/GdhboIW37R6z8I0vFqlmiPeG055SJxPPJ7dfBo2tjJ3bPV9vjFCRDuusj24dldOsg4hWui6iw==", + "type": "package", + "path": "microsoft.identitymodel.tokens/6.15.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/Microsoft.IdentityModel.Tokens.dll", + "lib/net45/Microsoft.IdentityModel.Tokens.xml", + "lib/net461/Microsoft.IdentityModel.Tokens.dll", + "lib/net461/Microsoft.IdentityModel.Tokens.xml", + "lib/net472/Microsoft.IdentityModel.Tokens.dll", + "lib/net472/Microsoft.IdentityModel.Tokens.xml", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.dll", + "lib/netstandard2.0/Microsoft.IdentityModel.Tokens.xml", + "microsoft.identitymodel.tokens.6.15.1.nupkg.sha512", + "microsoft.identitymodel.tokens.nuspec" + ] + }, + "Microsoft.OpenApi/1.4.3": { + "sha512": "rURwggB+QZYcSVbDr7HSdhw/FELvMlriW10OeOzjPT7pstefMo7IThhtNtDudxbXhW+lj0NfX72Ka5EDsG8x6w==", + "type": "package", + "path": "microsoft.openapi/1.4.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/Microsoft.OpenApi.dll", + "lib/netstandard2.0/Microsoft.OpenApi.pdb", + "lib/netstandard2.0/Microsoft.OpenApi.xml", + "microsoft.openapi.1.4.3.nupkg.sha512", + "microsoft.openapi.nuspec" + ] + }, + "Mono.TextTemplating/2.2.1": { + "sha512": "KZYeKBET/2Z0gY1WlTAK7+RHTl7GSbtvTLDXEZZojUdAPqpQNDL6tHv7VUpqfX5VEOh+uRGKaZXkuD253nEOBQ==", + "type": "package", + "path": "mono.texttemplating/2.2.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net472/Mono.TextTemplating.dll", + "lib/netstandard2.0/Mono.TextTemplating.dll", + "mono.texttemplating.2.2.1.nupkg.sha512", + "mono.texttemplating.nuspec" + ] + }, + "SQLitePCLRaw.bundle_e_sqlite3/2.1.2": { + "sha512": "ilkvNhrTersLmIVAcDwwPqfhUFCg19Z1GVMvCSi3xk6Akq94f4qadLORQCq/T8+9JgMiPs+F/NECw5uauviaNw==", + "type": "package", + "path": "sqlitepclraw.bundle_e_sqlite3/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/monoandroid90/SQLitePCLRaw.batteries_v2.dll", + "lib/net461/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-android31.0/SQLitePCLRaw.batteries_v2.xml", + "lib/net6.0-ios14.0/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-ios14.2/SQLitePCLRaw.batteries_v2.dll", + "lib/net6.0-tvos10.0/SQLitePCLRaw.batteries_v2.dll", + "lib/netstandard2.0/SQLitePCLRaw.batteries_v2.dll", + "lib/xamarinios10/SQLitePCLRaw.batteries_v2.dll", + "sqlitepclraw.bundle_e_sqlite3.2.1.2.nupkg.sha512", + "sqlitepclraw.bundle_e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.core/2.1.2": { + "sha512": "A8EBepVqY2lnAp3a8jnhbgzF2tlj2S3HcJQGANTYg/TbYbKa8Z5cM1h74An/vy0svhfzT7tVY0sFmUglLgv+2g==", + "type": "package", + "path": "sqlitepclraw.core/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/netstandard2.0/SQLitePCLRaw.core.dll", + "sqlitepclraw.core.2.1.2.nupkg.sha512", + "sqlitepclraw.core.nuspec" + ] + }, + "SQLitePCLRaw.lib.e_sqlite3/2.1.2": { + "sha512": "zibGtku8M4Eea1R3ZCAxc86QbNvyEN17mAcQkvWKBuHvRpMiK2g5anG4R5Be7cWKSd1i6baYz8y4dMMAKcXKPg==", + "type": "package", + "path": "sqlitepclraw.lib.e_sqlite3/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "buildTransitive/net461/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net6.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "buildTransitive/net7.0/SQLitePCLRaw.lib.e_sqlite3.targets", + "lib/net461/_._", + "lib/netstandard2.0/_._", + "runtimes/alpine-arm/native/libe_sqlite3.so", + "runtimes/alpine-arm64/native/libe_sqlite3.so", + "runtimes/alpine-x64/native/libe_sqlite3.so", + "runtimes/browser-wasm/nativeassets/net6.0/e_sqlite3.a", + "runtimes/browser-wasm/nativeassets/net7.0/e_sqlite3.a", + "runtimes/linux-arm/native/libe_sqlite3.so", + "runtimes/linux-arm64/native/libe_sqlite3.so", + "runtimes/linux-armel/native/libe_sqlite3.so", + "runtimes/linux-mips64/native/libe_sqlite3.so", + "runtimes/linux-musl-arm/native/libe_sqlite3.so", + "runtimes/linux-musl-arm64/native/libe_sqlite3.so", + "runtimes/linux-musl-x64/native/libe_sqlite3.so", + "runtimes/linux-s390x/native/libe_sqlite3.so", + "runtimes/linux-x64/native/libe_sqlite3.so", + "runtimes/linux-x86/native/libe_sqlite3.so", + "runtimes/maccatalyst-arm64/native/libe_sqlite3.dylib", + "runtimes/maccatalyst-x64/native/libe_sqlite3.dylib", + "runtimes/osx-arm64/native/libe_sqlite3.dylib", + "runtimes/osx-x64/native/libe_sqlite3.dylib", + "runtimes/win-arm/native/e_sqlite3.dll", + "runtimes/win-arm64/native/e_sqlite3.dll", + "runtimes/win-x64/native/e_sqlite3.dll", + "runtimes/win-x86/native/e_sqlite3.dll", + "runtimes/win10-arm/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-arm64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x64/nativeassets/uap10.0/e_sqlite3.dll", + "runtimes/win10-x86/nativeassets/uap10.0/e_sqlite3.dll", + "sqlitepclraw.lib.e_sqlite3.2.1.2.nupkg.sha512", + "sqlitepclraw.lib.e_sqlite3.nuspec" + ] + }, + "SQLitePCLRaw.provider.e_sqlite3/2.1.2": { + "sha512": "lxCZarZdvAsMl2zw9bXHrXK6RxVhB4b23iTFhCOdHFhxfbsxLxWf+ocvswJwR/9Wh/E//ddMi+wJGqUKV7VwoA==", + "type": "package", + "path": "sqlitepclraw.provider.e_sqlite3/2.1.2", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net6.0-windows7.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/net6.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "lib/netstandard2.0/SQLitePCLRaw.provider.e_sqlite3.dll", + "sqlitepclraw.provider.e_sqlite3.2.1.2.nupkg.sha512", + "sqlitepclraw.provider.e_sqlite3.nuspec" + ] + }, + "Swashbuckle.AspNetCore/6.4.0": { + "sha512": "eUBr4TW0up6oKDA5Xwkul289uqSMgY0xGN4pnbOIBqCcN9VKGGaPvHX3vWaG/hvocfGDP+MGzMA0bBBKz2fkmQ==", + "type": "package", + "path": "swashbuckle.aspnetcore/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "build/Swashbuckle.AspNetCore.props", + "swashbuckle.aspnetcore.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.nuspec" + ] + }, + "Swashbuckle.AspNetCore.Swagger/6.4.0": { + "sha512": "nl4SBgGM+cmthUcpwO/w1lUjevdDHAqRvfUoe4Xp/Uvuzt9mzGUwyFCqa3ODBAcZYBiFoKvrYwz0rabslJvSmQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swagger/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.Swagger.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.Swagger.xml", + "swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swagger.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerGen/6.4.0": { + "sha512": "lXhcUBVqKrPFAQF7e/ZeDfb5PMgE8n5t6L5B6/BQSpiwxgHzmBcx8Msu42zLYFTvR5PIqE9Q9lZvSQAcwCxJjw==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggergen/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerGen.xml", + "swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swaggergen.nuspec" + ] + }, + "Swashbuckle.AspNetCore.SwaggerUI/6.4.0": { + "sha512": "1Hh3atb3pi8c+v7n4/3N80Jj8RvLOXgWxzix6w3OZhB7zBGRwsy7FWr4e3hwgPweSBpwfElqj4V4nkjYabH9nQ==", + "type": "package", + "path": "swashbuckle.aspnetcore.swaggerui/6.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net5.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/net6.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netcoreapp3.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.dll", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.pdb", + "lib/netstandard2.0/Swashbuckle.AspNetCore.SwaggerUI.xml", + "swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512", + "swashbuckle.aspnetcore.swaggerui.nuspec" + ] + }, + "System.CodeDom/4.4.0": { + "sha512": "2sCCb7doXEwtYAbqzbF/8UAeDRMNmPaQbU2q50Psg1J9KzumyVVCgKQY8s53WIPTufNT0DpSe9QRvVjOzfDWBA==", + "type": "package", + "path": "system.codedom/4.4.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/net461/System.CodeDom.dll", + "lib/netstandard2.0/System.CodeDom.dll", + "ref/net461/System.CodeDom.dll", + "ref/net461/System.CodeDom.xml", + "ref/netstandard2.0/System.CodeDom.dll", + "ref/netstandard2.0/System.CodeDom.xml", + "system.codedom.4.4.0.nupkg.sha512", + "system.codedom.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.IdentityModel.Tokens.Jwt/6.15.1": { + "sha512": "q3ZLyWmpX4+jW4XITf7Axd+9sC6w2NrQaKcQQT9A8waoknHgaNwSeookpUmPMQDqS0afT9Lh0JYub196vzuzbA==", + "type": "package", + "path": "system.identitymodel.tokens.jwt/6.15.1", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "lib/net45/System.IdentityModel.Tokens.Jwt.dll", + "lib/net45/System.IdentityModel.Tokens.Jwt.xml", + "lib/net461/System.IdentityModel.Tokens.Jwt.dll", + "lib/net461/System.IdentityModel.Tokens.Jwt.xml", + "lib/net472/System.IdentityModel.Tokens.Jwt.dll", + "lib/net472/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.6.15.1.nupkg.sha512", + "system.identitymodel.tokens.jwt.nuspec" + ] + }, + "System.Memory/4.5.3": { + "sha512": "3oDzvc/zzetpTKWMShs1AADwZjQ/36HnsufHRPcOjyRAAMLDlu2iD33MBI2opxnezcVUtXyqDXXjoFMOU9c7SA==", + "type": "package", + "path": "system.memory/4.5.3", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/netcoreapp2.1/_._", + "lib/netstandard1.1/System.Memory.dll", + "lib/netstandard1.1/System.Memory.xml", + "lib/netstandard2.0/System.Memory.dll", + "lib/netstandard2.0/System.Memory.xml", + "ref/netcoreapp2.1/_._", + "system.memory.4.5.3.nupkg.sha512", + "system.memory.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Security.Cryptography.Cng/4.5.0": { + "sha512": "WG3r7EyjUe9CMPFSs6bty5doUqT+q9pbI80hlNzo2SkPkZ4VTuZkGWjpp77JB8+uaL4DFPRdBsAY+DX3dBK92A==", + "type": "package", + "path": "system.security.cryptography.cng/4.5.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "lib/MonoAndroid10/_._", + "lib/MonoTouch10/_._", + "lib/net46/System.Security.Cryptography.Cng.dll", + "lib/net461/System.Security.Cryptography.Cng.dll", + "lib/net462/System.Security.Cryptography.Cng.dll", + "lib/net47/System.Security.Cryptography.Cng.dll", + "lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.3/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "lib/netstandard2.0/System.Security.Cryptography.Cng.dll", + "lib/uap10.0.16299/_._", + "lib/xamarinios10/_._", + "lib/xamarinmac20/_._", + "lib/xamarintvos10/_._", + "lib/xamarinwatchos10/_._", + "ref/MonoAndroid10/_._", + "ref/MonoTouch10/_._", + "ref/net46/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.dll", + "ref/net461/System.Security.Cryptography.Cng.xml", + "ref/net462/System.Security.Cryptography.Cng.dll", + "ref/net462/System.Security.Cryptography.Cng.xml", + "ref/net47/System.Security.Cryptography.Cng.dll", + "ref/net47/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.0/System.Security.Cryptography.Cng.xml", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "ref/netcoreapp2.1/System.Security.Cryptography.Cng.xml", + "ref/netstandard1.3/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.4/System.Security.Cryptography.Cng.dll", + "ref/netstandard1.6/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.dll", + "ref/netstandard2.0/System.Security.Cryptography.Cng.xml", + "ref/uap10.0.16299/_._", + "ref/xamarinios10/_._", + "ref/xamarinmac20/_._", + "ref/xamarintvos10/_._", + "ref/xamarinwatchos10/_._", + "runtimes/win/lib/net46/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net461/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net462/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/net47/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.0/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netcoreapp2.1/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.4/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/netstandard1.6/System.Security.Cryptography.Cng.dll", + "runtimes/win/lib/uap10.0.16299/_._", + "system.security.cryptography.cng.4.5.0.nupkg.sha512", + "system.security.cryptography.cng.nuspec", + "useSharedDesignerContext.txt", + "version.txt" + ] + }, + "System.Text.Encodings.Web/7.0.0": { + "sha512": "OP6umVGxc0Z0MvZQBVigj4/U31Pw72ITihDWP9WiWDm+q5aoe0GaJivsfYGq53o6dxH7DcXWiCTl7+0o2CGdmg==", + "type": "package", + "path": "system.text.encodings.web/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "THIRD-PARTY-NOTICES.TXT", + "buildTransitive/net461/System.Text.Encodings.Web.targets", + "buildTransitive/net462/_._", + "buildTransitive/net6.0/_._", + "buildTransitive/netcoreapp2.0/System.Text.Encodings.Web.targets", + "lib/net462/System.Text.Encodings.Web.dll", + "lib/net462/System.Text.Encodings.Web.xml", + "lib/net6.0/System.Text.Encodings.Web.dll", + "lib/net6.0/System.Text.Encodings.Web.xml", + "lib/net7.0/System.Text.Encodings.Web.dll", + "lib/net7.0/System.Text.Encodings.Web.xml", + "lib/netstandard2.0/System.Text.Encodings.Web.dll", + "lib/netstandard2.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net6.0/System.Text.Encodings.Web.xml", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.dll", + "runtimes/browser/lib/net7.0/System.Text.Encodings.Web.xml", + "system.text.encodings.web.7.0.0.nupkg.sha512", + "system.text.encodings.web.nuspec", + "useSharedDesignerContext.txt" + ] + }, + "System.Text.Json/7.0.0": { + "sha512": "DaGSsVqKsn/ia6RG8frjwmJonfos0srquhw09TlT8KRw5I43E+4gs+/bZj4K0vShJ5H9imCuXupb4RmS+dBy3w==", + "type": "package", + "path": "system.text.json/7.0.0", + "files": [ + ".nupkg.metadata", + ".signature.p7s", + "Icon.png", + "LICENSE.TXT", + "README.md", + "THIRD-PARTY-NOTICES.TXT", + "analyzers/dotnet/roslyn3.11/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn3.11/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn3.11/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.0/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.0/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/System.Text.Json.SourceGeneration.dll", + "analyzers/dotnet/roslyn4.4/cs/cs/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/de/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/es/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/fr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/it/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ja/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ko/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pl/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/pt-BR/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/ru/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/tr/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hans/System.Text.Json.SourceGeneration.resources.dll", + "analyzers/dotnet/roslyn4.4/cs/zh-Hant/System.Text.Json.SourceGeneration.resources.dll", + "buildTransitive/net461/System.Text.Json.targets", + "buildTransitive/net462/System.Text.Json.targets", + "buildTransitive/net6.0/System.Text.Json.targets", + "buildTransitive/netcoreapp2.0/System.Text.Json.targets", + "buildTransitive/netstandard2.0/System.Text.Json.targets", + "lib/net462/System.Text.Json.dll", + "lib/net462/System.Text.Json.xml", + "lib/net6.0/System.Text.Json.dll", + "lib/net6.0/System.Text.Json.xml", + "lib/net7.0/System.Text.Json.dll", + "lib/net7.0/System.Text.Json.xml", + "lib/netstandard2.0/System.Text.Json.dll", + "lib/netstandard2.0/System.Text.Json.xml", + "system.text.json.7.0.0.nupkg.sha512", + "system.text.json.nuspec", + "useSharedDesignerContext.txt" + ] + } + }, + "projectFileDependencyGroups": { + "net7.0": [ + "BCrypt.Net-Next >= 4.0.3", + "Microsoft.AspNetCore.Authentication.JwtBearer >= 7.0.0", + "Microsoft.AspNetCore.OpenApi >= 7.0.0", + "Microsoft.EntityFrameworkCore >= 7.0.0", + "Microsoft.EntityFrameworkCore.Sqlite >= 7.0.0", + "Microsoft.EntityFrameworkCore.Tools >= 7.0.0", + "Swashbuckle.AspNetCore >= 6.4.0" + ] + }, + "packageFolders": { + "C:\\Users\\shizh\\.nuget\\packages\\": {}, + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages": {} + }, + "project": { + "version": "1.0.0", + "restore": { + "projectUniqueName": "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\BuaaLocationServer.csproj", + "projectName": "BuaaLocationServer", + "projectPath": "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\BuaaLocationServer.csproj", + "packagesPath": "C:\\Users\\shizh\\.nuget\\packages\\", + "outputPath": "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\obj\\publish\\linux-x64\\", + "projectStyle": "PackageReference", + "fallbackFolders": [ + "C:\\Program Files (x86)\\Microsoft Visual Studio\\Shared\\NuGetPackages" + ], + "configFilePaths": [ + "C:\\Users\\shizh\\AppData\\Roaming\\NuGet\\NuGet.Config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.FallbackLocation.config", + "C:\\Program Files (x86)\\NuGet\\Config\\Microsoft.VisualStudio.Offline.config" + ], + "originalTargetFrameworks": [ + "net7.0" + ], + "sources": { + "C:\\Program Files (x86)\\Microsoft SDKs\\NuGetPackages\\": {}, + "C:\\Program Files\\dotnet\\library-packs": {}, + "https://api.nuget.org/v3/index.json": {} + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "projectReferences": {} + } + }, + "warningProperties": { + "warnAsError": [ + "NU1605" + ] + } + }, + "frameworks": { + "net7.0": { + "targetAlias": "net7.0", + "dependencies": { + "BCrypt.Net-Next": { + "target": "Package", + "version": "[4.0.3, )" + }, + "Microsoft.AspNetCore.Authentication.JwtBearer": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Microsoft.AspNetCore.OpenApi": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Microsoft.EntityFrameworkCore": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Sqlite": { + "target": "Package", + "version": "[7.0.0, )" + }, + "Microsoft.EntityFrameworkCore.Tools": { + "include": "Runtime, Build, Native, ContentFiles, Analyzers, BuildTransitive", + "suppressParent": "All", + "target": "Package", + "version": "[7.0.0, )" + }, + "Swashbuckle.AspNetCore": { + "target": "Package", + "version": "[6.4.0, )" + } + }, + "imports": [ + "net461", + "net462", + "net47", + "net471", + "net472", + "net48", + "net481" + ], + "assetTargetFallback": true, + "warn": true, + "downloadDependencies": [ + { + "name": "Microsoft.AspNetCore.App.Runtime.linux-x64", + "version": "[7.0.0, 7.0.0]" + }, + { + "name": "Microsoft.NETCore.App.Host.linux-x64", + "version": "[7.0.0, 7.0.0]" + }, + { + "name": "Microsoft.NETCore.App.Runtime.linux-x64", + "version": "[7.0.0, 7.0.0]" + } + ], + "frameworkReferences": { + "Microsoft.AspNetCore.App": { + "privateAssets": "none" + }, + "Microsoft.NETCore.App": { + "privateAssets": "all" + } + }, + "runtimeIdentifierGraphPath": "C:\\Program Files\\dotnet\\sdk\\7.0.100\\RuntimeIdentifierGraph.json" + } + }, + "runtimes": { + "linux-x64": { + "#import": [] + } + } + } +} \ No newline at end of file diff --git a/obj/publish/linux-x64/project.nuget.cache b/obj/publish/linux-x64/project.nuget.cache new file mode 100644 index 0000000..1a315d3 --- /dev/null +++ b/obj/publish/linux-x64/project.nuget.cache @@ -0,0 +1,58 @@ +{ + "version": 2, + "dgSpecHash": "OGybvdPUkvsCj4L8xle514VJwq7kWO3s3gJPPkaIo8RUWssgdOSxA0vS91730/ViyUvAg+bXhVOqrA+h72O4SQ==", + "success": true, + "projectFilePath": "C:\\Users\\shizh\\Projects\\BuaaLocationServer\\BuaaLocationServer.csproj", + "expectedPackageFiles": [ + "C:\\Users\\shizh\\.nuget\\packages\\bcrypt.net-next\\4.0.3\\bcrypt.net-next.4.0.3.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\humanizer.core\\2.14.1\\humanizer.core.2.14.1.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.aspnetcore.authentication.jwtbearer\\7.0.0\\microsoft.aspnetcore.authentication.jwtbearer.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.aspnetcore.openapi\\7.0.0\\microsoft.aspnetcore.openapi.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.csharp\\4.5.0\\microsoft.csharp.4.5.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.data.sqlite.core\\7.0.0\\microsoft.data.sqlite.core.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.entityframeworkcore\\7.0.0\\microsoft.entityframeworkcore.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.entityframeworkcore.abstractions\\7.0.0\\microsoft.entityframeworkcore.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.entityframeworkcore.analyzers\\7.0.0\\microsoft.entityframeworkcore.analyzers.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.entityframeworkcore.design\\7.0.0\\microsoft.entityframeworkcore.design.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.entityframeworkcore.relational\\7.0.0\\microsoft.entityframeworkcore.relational.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite\\7.0.0\\microsoft.entityframeworkcore.sqlite.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.entityframeworkcore.sqlite.core\\7.0.0\\microsoft.entityframeworkcore.sqlite.core.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.entityframeworkcore.tools\\7.0.0\\microsoft.entityframeworkcore.tools.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.apidescription.server\\6.0.5\\microsoft.extensions.apidescription.server.6.0.5.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.caching.abstractions\\7.0.0\\microsoft.extensions.caching.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.caching.memory\\7.0.0\\microsoft.extensions.caching.memory.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.configuration.abstractions\\7.0.0\\microsoft.extensions.configuration.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.dependencyinjection\\7.0.0\\microsoft.extensions.dependencyinjection.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.dependencyinjection.abstractions\\7.0.0\\microsoft.extensions.dependencyinjection.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.dependencymodel\\7.0.0\\microsoft.extensions.dependencymodel.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.logging\\7.0.0\\microsoft.extensions.logging.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.logging.abstractions\\7.0.0\\microsoft.extensions.logging.abstractions.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.options\\7.0.0\\microsoft.extensions.options.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.extensions.primitives\\7.0.0\\microsoft.extensions.primitives.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.identitymodel.jsonwebtokens\\6.15.1\\microsoft.identitymodel.jsonwebtokens.6.15.1.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.identitymodel.logging\\6.15.1\\microsoft.identitymodel.logging.6.15.1.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.identitymodel.protocols\\6.15.1\\microsoft.identitymodel.protocols.6.15.1.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.identitymodel.protocols.openidconnect\\6.15.1\\microsoft.identitymodel.protocols.openidconnect.6.15.1.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.identitymodel.tokens\\6.15.1\\microsoft.identitymodel.tokens.6.15.1.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.openapi\\1.4.3\\microsoft.openapi.1.4.3.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\mono.texttemplating\\2.2.1\\mono.texttemplating.2.2.1.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\sqlitepclraw.bundle_e_sqlite3\\2.1.2\\sqlitepclraw.bundle_e_sqlite3.2.1.2.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\sqlitepclraw.core\\2.1.2\\sqlitepclraw.core.2.1.2.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\sqlitepclraw.lib.e_sqlite3\\2.1.2\\sqlitepclraw.lib.e_sqlite3.2.1.2.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\sqlitepclraw.provider.e_sqlite3\\2.1.2\\sqlitepclraw.provider.e_sqlite3.2.1.2.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\swashbuckle.aspnetcore\\6.4.0\\swashbuckle.aspnetcore.6.4.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\swashbuckle.aspnetcore.swagger\\6.4.0\\swashbuckle.aspnetcore.swagger.6.4.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\swashbuckle.aspnetcore.swaggergen\\6.4.0\\swashbuckle.aspnetcore.swaggergen.6.4.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\swashbuckle.aspnetcore.swaggerui\\6.4.0\\swashbuckle.aspnetcore.swaggerui.6.4.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\system.codedom\\4.4.0\\system.codedom.4.4.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\system.identitymodel.tokens.jwt\\6.15.1\\system.identitymodel.tokens.jwt.6.15.1.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\system.memory\\4.5.3\\system.memory.4.5.3.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\system.security.cryptography.cng\\4.5.0\\system.security.cryptography.cng.4.5.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\system.text.encodings.web\\7.0.0\\system.text.encodings.web.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\system.text.json\\7.0.0\\system.text.json.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.netcore.app.runtime.linux-x64\\7.0.0\\microsoft.netcore.app.runtime.linux-x64.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.aspnetcore.app.runtime.linux-x64\\7.0.0\\microsoft.aspnetcore.app.runtime.linux-x64.7.0.0.nupkg.sha512", + "C:\\Users\\shizh\\.nuget\\packages\\microsoft.netcore.app.host.linux-x64\\7.0.0\\microsoft.netcore.app.host.linux-x64.7.0.0.nupkg.sha512" + ], + "logs": [] +} \ No newline at end of file