diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json new file mode 100644 index 0000000..fccc806 --- /dev/null +++ b/.config/dotnet-tools.json @@ -0,0 +1,12 @@ +{ + "version": 1, + "isRoot": true, + "tools": { + "dotnet-ef": { + "version": "7.0.0", + "commands": [ + "dotnet-ef" + ] + } + } +} \ No newline at end of file diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..97916cb --- /dev/null +++ b/.gitignore @@ -0,0 +1,274 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. + +# User-specific files +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +bld/ +[Bb]in/ +[Oo]bj/ +[Ll]og/ + +# Visual Studio cache/options directory +.vs/ +.vscode/ + +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUNIT +*.VisualState.xml +TestResult.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# DNX +project.lock.json +project.fragment.lock.json +artifacts/ + +*_i.c +*_p.c +*_i.h +*.ilk +*.meta +*.obj +*.pch +*.pdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# JustCode is a .NET coding add-in +.JustCode + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# TODO: Comment the next line if you want to checkin your web deploy settings +# but database connection strings (with potential passwords) will be unencrypted +#*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# The packages folder can be ignored because of Package Restore +**/packages/* +# except build/, which is used as an MSBuild target. +!**/packages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/packages/repositories.config +# NuGet v3's project.json files produces more ignoreable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +node_modules/ +orleans.codegen.cs + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm + +# SQL Server files +*.mdf +*.ldf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# JetBrains Rider +.idea/ +*.sln.iml + +# CodeRush +.cr/ + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# macOS Desktop Services Store +.DS_Store + +# Use customlized development envirnment settings. +appsettings.Development.json + +# SQLite +**/*.db +**/*.db-shm +**/*.db-wal \ No newline at end of file diff --git a/BuaaLocationServer.csproj.user b/BuaaLocationServer.csproj.user index d5c206f..8c1651b 100644 --- a/BuaaLocationServer.csproj.user +++ b/BuaaLocationServer.csproj.user @@ -2,7 +2,7 @@ http - C:\Users\shizh\Projects\BuaaLocationServer\Properties\PublishProfiles\Linux_release.pubxml + D:\Projects\BuaaLocationServer\Properties\PublishProfiles\Linux_release.pubxml ProjectDebugger diff --git a/Controllers/AuthenticationController.cs b/Controllers/AuthenticationController.cs index cab6375..899dfd6 100644 --- a/Controllers/AuthenticationController.cs +++ b/Controllers/AuthenticationController.cs @@ -10,6 +10,7 @@ using Microsoft.EntityFrameworkCore; using Microsoft.Extensions.Caching.Memory; using Microsoft.Extensions.Options; using Microsoft.IdentityModel.JsonWebTokens; +using System.ComponentModel.DataAnnotations; using System.Security.Claims; namespace BuaaLocationServer.Controllers @@ -26,17 +27,20 @@ namespace BuaaLocationServer.Controllers private readonly ILogger _logger; private readonly IMemoryCache _memoryCache; private readonly IJwtService _jwtService; + private readonly IOptionsMonitor _jwtOptions; public AuthenticationController( ILogger logger, BuaaDbContext context, IMemoryCache memoryCache, - IJwtService jwtService) + IJwtService jwtService, + IOptionsMonitor jwtOptions) { _logger = logger; _context = context; _memoryCache = memoryCache; _jwtService = jwtService; + _jwtOptions = jwtOptions; } /// @@ -64,7 +68,43 @@ namespace BuaaLocationServer.Controllers 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 }); + return Ok(new { token, expireTime, dto.UserName, refreshToken }); + } + + /// + /// 刷新令牌。 + /// + [AllowAnonymous] + [ProducesResponseType(StatusCodes.Status200OK)] + [ProducesResponseType(StatusCodes.Status400BadRequest)] + [ProducesResponseType(StatusCodes.Status401Unauthorized)] + [HttpPost("[action]")] + public ActionResult RefreshToken([FromBody] RefreshTokenDto dto) + { +#if RELEASE + //校验缓存中是否有该刷新令牌 + if (!_memoryCache.TryGetValue(dto.RefreshToken, out _)) + return Unauthorized(); +#endif + + //校验令牌是否有效 + if (!_jwtService.Validate(dto.Token, out var principal)) + return Unauthorized(); + + var jwtOptions = _jwtOptions.CurrentValue; + if (principal.Identity is not ClaimsIdentity identity) + return Unauthorized(); + + var newToken = _jwtService.Create(identity); + + var result = new + { + Token = newToken, + RefreshToken = dto.RefreshToken, + Expires = jwtOptions.Expires + }; + + return Ok(result); } /// @@ -75,9 +115,27 @@ namespace BuaaLocationServer.Controllers public async Task> Profile() { var userName = this.GetCurrentUserName(); - var user = await _context.Users.FirstOrDefaultAsync(e=>e.UserName == userName); + var user = await _context.Users.FirstOrDefaultAsync(e => e.UserName == userName); return Ok(user); } } + + /// + /// 刷新令牌信息。 + /// + public class RefreshTokenDto + { + /// + /// JWT令牌。 + /// + [Required(AllowEmptyStrings = false)] + public string Token { get; set; } = null!; + + /// + /// 刷新令牌。 + /// + [Required(AllowEmptyStrings = false)] + public string RefreshToken { get; set; } = null!; + } } \ No newline at end of file diff --git a/Properties/PublishProfiles/Linux_release.pubxml.user b/Properties/PublishProfiles/Linux_release.pubxml.user index 0bf4f5e..ad3d064 100644 --- a/Properties/PublishProfiles/Linux_release.pubxml.user +++ b/Properties/PublishProfiles/Linux_release.pubxml.user @@ -4,8 +4,8 @@ https://go.microsoft.com/fwlink/?LinkID=208121. --> - <_PublishTargetUrl>C:\Users\shizh\Projects\BuaaLocationServer\bin\Release\net7.0\publish\BuaaLocationServer - True|2022-12-12T03:18:13.3558939Z; + <_PublishTargetUrl>D:\Projects\BuaaLocationServer\bin\Release\net7.0\publish\BuaaLocationServer + True|2022-12-12T08:41:26.6028479Z;True|2022-12-12T11:18:13.3558939+08:00; \ No newline at end of file diff --git a/appsettings.json b/appsettings.json index 34f5391..89ba9ad 100644 --- a/appsettings.json +++ b/appsettings.json @@ -1,4 +1,14 @@ { + "Kestrel": { + "Endpoints": { + "Http": { + "Url": "http://localhost:8279" + }, + "Https": { + "Url": "https://localhost:8278" + } + } + }, "Logging": { "LogLevel": { "Default": "Information", diff --git a/obj/BuaaLocationServer.csproj.EntityFrameworkCore.targets b/obj/BuaaLocationServer.csproj.EntityFrameworkCore.targets deleted file mode 100644 index 7d6485d..0000000 --- a/obj/BuaaLocationServer.csproj.EntityFrameworkCore.targets +++ /dev/null @@ -1,28 +0,0 @@ -锘 - - - - - - - - - - - - - - - - - - - - - - diff --git a/obj/BuaaLocationServer.csproj.nuget.dgspec.json b/obj/BuaaLocationServer.csproj.nuget.dgspec.json deleted file mode 100644 index 674fe3e..0000000 --- a/obj/BuaaLocationServer.csproj.nuget.dgspec.json +++ /dev/null @@ -1,103 +0,0 @@ -{ - "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 deleted file mode 100644 index a7038c1..0000000 --- a/obj/BuaaLocationServer.csproj.nuget.g.props +++ /dev/null @@ -1,26 +0,0 @@ -锘 - - - 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 deleted file mode 100644 index 74f7410..0000000 --- a/obj/BuaaLocationServer.csproj.nuget.g.targets +++ /dev/null @@ -1,9 +0,0 @@ -锘 - - - - - - - - \ 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 deleted file mode 100644 index 4257f4b..0000000 --- a/obj/Debug/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -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 deleted file mode 100644 index 4fe0da7..0000000 --- a/obj/Debug/net7.0/BuaaLocationServer.AssemblyInfo.cs +++ /dev/null @@ -1,24 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 -// 杩愯鏃剁増鏈:4.0.30319.42000 -// -// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳戒細瀵艰嚧涓嶆纭殑琛屼负锛屽苟涓斿鏋 -// 閲嶆柊鐢熸垚浠g爜锛岃繖浜涙洿鏀瑰皢浼氫涪澶便 -// -//------------------------------------------------------------------------------ - -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 deleted file mode 100644 index ca14c66..0000000 --- a/obj/Debug/net7.0/BuaaLocationServer.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -d4debd6036db4d53075f04049eb798cb0ee8f4ae diff --git a/obj/Debug/net7.0/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig b/obj/Debug/net7.0/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index bd15e8c..0000000 --- a/obj/Debug/net7.0/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,17 +0,0 @@ -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 deleted file mode 100644 index 025530a..0000000 --- a/obj/Debug/net7.0/BuaaLocationServer.GlobalUsings.g.cs +++ /dev/null @@ -1,17 +0,0 @@ -// -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 deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Debug/net7.0/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs b/obj/Debug/net7.0/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs deleted file mode 100644 index f0cf1ff..0000000 --- a/obj/Debug/net7.0/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs +++ /dev/null @@ -1,17 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 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 deleted file mode 100644 index 767ebd9..0000000 Binary files a/obj/Debug/net7.0/BuaaLocationServer.assets.cache and /dev/null differ diff --git a/obj/Debug/net7.0/BuaaLocationServer.csproj.AssemblyReference.cache b/obj/Debug/net7.0/BuaaLocationServer.csproj.AssemblyReference.cache deleted file mode 100644 index 1ad0c26..0000000 Binary files a/obj/Debug/net7.0/BuaaLocationServer.csproj.AssemblyReference.cache and /dev/null differ diff --git a/obj/Debug/net7.0/BuaaLocationServer.csproj.BuildWithSkipAnalyzers b/obj/Debug/net7.0/BuaaLocationServer.csproj.BuildWithSkipAnalyzers deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Debug/net7.0/BuaaLocationServer.csproj.CopyComplete b/obj/Debug/net7.0/BuaaLocationServer.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Debug/net7.0/BuaaLocationServer.csproj.CoreCompileInputs.cache b/obj/Debug/net7.0/BuaaLocationServer.csproj.CoreCompileInputs.cache deleted file mode 100644 index 04e862d..0000000 --- a/obj/Debug/net7.0/BuaaLocationServer.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -f5764fe67c7b811a33bb62a8d8c44d99663445bd diff --git a/obj/Debug/net7.0/BuaaLocationServer.csproj.FileListAbsolute.txt b/obj/Debug/net7.0/BuaaLocationServer.csproj.FileListAbsolute.txt deleted file mode 100644 index 295f447..0000000 --- a/obj/Debug/net7.0/BuaaLocationServer.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,76 +0,0 @@ -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 deleted file mode 100644 index a7dd934..0000000 Binary files a/obj/Debug/net7.0/BuaaLocationServer.dll and /dev/null differ diff --git a/obj/Debug/net7.0/BuaaLocationServer.genruntimeconfig.cache b/obj/Debug/net7.0/BuaaLocationServer.genruntimeconfig.cache deleted file mode 100644 index 6d78f17..0000000 --- a/obj/Debug/net7.0/BuaaLocationServer.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -737901e60639c9ebf1c7fa0ca3ec5acb843e1801 diff --git a/obj/Debug/net7.0/BuaaLocationServer.pdb b/obj/Debug/net7.0/BuaaLocationServer.pdb deleted file mode 100644 index db28c85..0000000 Binary files a/obj/Debug/net7.0/BuaaLocationServer.pdb and /dev/null differ diff --git a/obj/Debug/net7.0/_IsIncrementalBuild b/obj/Debug/net7.0/_IsIncrementalBuild deleted file mode 100644 index f630ee5..0000000 --- a/obj/Debug/net7.0/_IsIncrementalBuild +++ /dev/null @@ -1 +0,0 @@ -obj\Debug\net7.0\\_IsIncrementalBuild diff --git a/obj/Debug/net7.0/apphost.exe b/obj/Debug/net7.0/apphost.exe deleted file mode 100644 index 98048cc..0000000 Binary files a/obj/Debug/net7.0/apphost.exe and /dev/null differ diff --git a/obj/Debug/net7.0/ref/BuaaLocationServer.dll b/obj/Debug/net7.0/ref/BuaaLocationServer.dll deleted file mode 100644 index f078cf2..0000000 Binary files a/obj/Debug/net7.0/ref/BuaaLocationServer.dll and /dev/null differ diff --git a/obj/Debug/net7.0/refint/BuaaLocationServer.dll b/obj/Debug/net7.0/refint/BuaaLocationServer.dll deleted file mode 100644 index f078cf2..0000000 Binary files a/obj/Debug/net7.0/refint/BuaaLocationServer.dll and /dev/null differ diff --git a/obj/Debug/net7.0/staticwebassets.build.json b/obj/Debug/net7.0/staticwebassets.build.json deleted file mode 100644 index 54a7c21..0000000 --- a/obj/Debug/net7.0/staticwebassets.build.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "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 deleted file mode 100644 index 5a6032a..0000000 --- a/obj/Debug/net7.0/staticwebassets/msbuild.build.BuaaLocationServer.props +++ /dev/null @@ -1,3 +0,0 @@ -锘 - - \ 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 deleted file mode 100644 index 1aae6b4..0000000 --- a/obj/Debug/net7.0/staticwebassets/msbuild.buildMultiTargeting.BuaaLocationServer.props +++ /dev/null @@ -1,3 +0,0 @@ -锘 - - \ 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 deleted file mode 100644 index 380e21b..0000000 --- a/obj/Debug/net7.0/staticwebassets/msbuild.buildTransitive.BuaaLocationServer.props +++ /dev/null @@ -1,3 +0,0 @@ -锘 - - \ 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 deleted file mode 100644 index 4257f4b..0000000 --- a/obj/Release/net7.0/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -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 deleted file mode 100644 index 0a1aedf..0000000 --- a/obj/Release/net7.0/BuaaLocationServer.AssemblyInfo.cs +++ /dev/null @@ -1,24 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 -// 杩愯鏃剁増鏈:4.0.30319.42000 -// -// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳戒細瀵艰嚧涓嶆纭殑琛屼负锛屽苟涓斿鏋 -// 閲嶆柊鐢熸垚浠g爜锛岃繖浜涙洿鏀瑰皢浼氫涪澶便 -// -//------------------------------------------------------------------------------ - -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 deleted file mode 100644 index c63849b..0000000 --- a/obj/Release/net7.0/BuaaLocationServer.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c82c0adb31ef600335a48a865ada64ef451f92e0 diff --git a/obj/Release/net7.0/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net7.0/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index bd15e8c..0000000 --- a/obj/Release/net7.0/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,17 +0,0 @@ -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 deleted file mode 100644 index 025530a..0000000 --- a/obj/Release/net7.0/BuaaLocationServer.GlobalUsings.g.cs +++ /dev/null @@ -1,17 +0,0 @@ -// -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 deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Release/net7.0/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs b/obj/Release/net7.0/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs deleted file mode 100644 index e75f8e1..0000000 --- a/obj/Release/net7.0/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs +++ /dev/null @@ -1,18 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 -// 杩愯鏃剁増鏈:4.0.30319.42000 -// -// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳戒細瀵艰嚧涓嶆纭殑琛屼负锛屽苟涓斿鏋 -// 閲嶆柊鐢熸垚浠g爜锛岃繖浜涙洿鏀瑰皢浼氫涪澶便 -// -//------------------------------------------------------------------------------ - -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 deleted file mode 100644 index e93b5f1..0000000 Binary files a/obj/Release/net7.0/BuaaLocationServer.assets.cache and /dev/null differ diff --git a/obj/Release/net7.0/BuaaLocationServer.csproj.AssemblyReference.cache b/obj/Release/net7.0/BuaaLocationServer.csproj.AssemblyReference.cache deleted file mode 100644 index 1ad0c26..0000000 Binary files a/obj/Release/net7.0/BuaaLocationServer.csproj.AssemblyReference.cache and /dev/null differ diff --git a/obj/Release/net7.0/BuaaLocationServer.csproj.CopyComplete b/obj/Release/net7.0/BuaaLocationServer.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Release/net7.0/BuaaLocationServer.csproj.CoreCompileInputs.cache b/obj/Release/net7.0/BuaaLocationServer.csproj.CoreCompileInputs.cache deleted file mode 100644 index cc8572b..0000000 --- a/obj/Release/net7.0/BuaaLocationServer.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -f36b632b4dfff7d9606c7d8f2a0978b9f5ab1234 diff --git a/obj/Release/net7.0/BuaaLocationServer.csproj.FileListAbsolute.txt b/obj/Release/net7.0/BuaaLocationServer.csproj.FileListAbsolute.txt deleted file mode 100644 index e02c1f6..0000000 --- a/obj/Release/net7.0/BuaaLocationServer.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,76 +0,0 @@ -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 deleted file mode 100644 index 4e04ea1..0000000 Binary files a/obj/Release/net7.0/BuaaLocationServer.dll and /dev/null differ diff --git a/obj/Release/net7.0/BuaaLocationServer.genruntimeconfig.cache b/obj/Release/net7.0/BuaaLocationServer.genruntimeconfig.cache deleted file mode 100644 index 387d2a0..0000000 --- a/obj/Release/net7.0/BuaaLocationServer.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -50a995ce1142b23c7276cab60f73ac4dfc45a42e diff --git a/obj/Release/net7.0/BuaaLocationServer.pdb b/obj/Release/net7.0/BuaaLocationServer.pdb deleted file mode 100644 index 2ee96fc..0000000 Binary files a/obj/Release/net7.0/BuaaLocationServer.pdb and /dev/null differ diff --git a/obj/Release/net7.0/_IsIncrementalBuild b/obj/Release/net7.0/_IsIncrementalBuild deleted file mode 100644 index 1184106..0000000 --- a/obj/Release/net7.0/_IsIncrementalBuild +++ /dev/null @@ -1 +0,0 @@ -obj\Release\net7.0\\_IsIncrementalBuild diff --git a/obj/Release/net7.0/apphost.exe b/obj/Release/net7.0/apphost.exe deleted file mode 100644 index 98048cc..0000000 Binary files a/obj/Release/net7.0/apphost.exe and /dev/null 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 deleted file mode 100644 index 4257f4b..0000000 --- a/obj/Release/net7.0/linux-x64/.NETCoreApp,Version=v7.0.AssemblyAttributes.cs +++ /dev/null @@ -1,4 +0,0 @@ -// -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 deleted file mode 100644 index 0a1aedf..0000000 --- a/obj/Release/net7.0/linux-x64/BuaaLocationServer.AssemblyInfo.cs +++ /dev/null @@ -1,24 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 -// 杩愯鏃剁増鏈:4.0.30319.42000 -// -// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳戒細瀵艰嚧涓嶆纭殑琛屼负锛屽苟涓斿鏋 -// 閲嶆柊鐢熸垚浠g爜锛岃繖浜涙洿鏀瑰皢浼氫涪澶便 -// -//------------------------------------------------------------------------------ - -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 deleted file mode 100644 index c63849b..0000000 --- a/obj/Release/net7.0/linux-x64/BuaaLocationServer.AssemblyInfoInputs.cache +++ /dev/null @@ -1 +0,0 @@ -c82c0adb31ef600335a48a865ada64ef451f92e0 diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig b/obj/Release/net7.0/linux-x64/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig deleted file mode 100644 index 172b36b..0000000 --- a/obj/Release/net7.0/linux-x64/BuaaLocationServer.GeneratedMSBuildEditorConfig.editorconfig +++ /dev/null @@ -1,21 +0,0 @@ -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 deleted file mode 100644 index 025530a..0000000 --- a/obj/Release/net7.0/linux-x64/BuaaLocationServer.GlobalUsings.g.cs +++ /dev/null @@ -1,17 +0,0 @@ -// -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 deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs b/obj/Release/net7.0/linux-x64/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs deleted file mode 100644 index e75f8e1..0000000 --- a/obj/Release/net7.0/linux-x64/BuaaLocationServer.MvcApplicationPartsAssemblyInfo.cs +++ /dev/null @@ -1,18 +0,0 @@ -//------------------------------------------------------------------------------ -// -// 姝や唬鐮佺敱宸ュ叿鐢熸垚銆 -// 杩愯鏃剁増鏈:4.0.30319.42000 -// -// 瀵规鏂囦欢鐨勬洿鏀瑰彲鑳戒細瀵艰嚧涓嶆纭殑琛屼负锛屽苟涓斿鏋 -// 閲嶆柊鐢熸垚浠g爜锛岃繖浜涙洿鏀瑰皢浼氫涪澶便 -// -//------------------------------------------------------------------------------ - -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 deleted file mode 100644 index 3311908..0000000 Binary files a/obj/Release/net7.0/linux-x64/BuaaLocationServer.assets.cache and /dev/null 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 deleted file mode 100644 index 1ad0c26..0000000 Binary files a/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.AssemblyReference.cache and /dev/null differ diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.CopyComplete b/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.CopyComplete deleted file mode 100644 index e69de29..0000000 diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.CoreCompileInputs.cache b/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.CoreCompileInputs.cache deleted file mode 100644 index 818a66c..0000000 --- a/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.CoreCompileInputs.cache +++ /dev/null @@ -1 +0,0 @@ -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 deleted file mode 100644 index fcd1cb7..0000000 --- a/obj/Release/net7.0/linux-x64/BuaaLocationServer.csproj.FileListAbsolute.txt +++ /dev/null @@ -1,371 +0,0 @@ -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 deleted file mode 100644 index b818536..0000000 --- a/obj/Release/net7.0/linux-x64/BuaaLocationServer.deps.json +++ /dev/null @@ -1,3601 +0,0 @@ -{ - "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 deleted file mode 100644 index bcf0622..0000000 Binary files a/obj/Release/net7.0/linux-x64/BuaaLocationServer.dll and /dev/null differ diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.genruntimeconfig.cache b/obj/Release/net7.0/linux-x64/BuaaLocationServer.genruntimeconfig.cache deleted file mode 100644 index 9f842f9..0000000 --- a/obj/Release/net7.0/linux-x64/BuaaLocationServer.genruntimeconfig.cache +++ /dev/null @@ -1 +0,0 @@ -1853045d4d715a0e569a466448710852618ecf35 diff --git a/obj/Release/net7.0/linux-x64/BuaaLocationServer.pdb b/obj/Release/net7.0/linux-x64/BuaaLocationServer.pdb deleted file mode 100644 index 1097472..0000000 Binary files a/obj/Release/net7.0/linux-x64/BuaaLocationServer.pdb and /dev/null differ diff --git a/obj/Release/net7.0/linux-x64/PubTmp/Out/BuaaLocationServer b/obj/Release/net7.0/linux-x64/PubTmp/Out/BuaaLocationServer deleted file mode 100644 index d7e7d8d..0000000 Binary files a/obj/Release/net7.0/linux-x64/PubTmp/Out/BuaaLocationServer and /dev/null 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 deleted file mode 100644 index 1097472..0000000 Binary files a/obj/Release/net7.0/linux-x64/PubTmp/Out/BuaaLocationServer.pdb and /dev/null 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 deleted file mode 100644 index 4d8f46c..0000000 --- a/obj/Release/net7.0/linux-x64/PubTmp/Out/appsettings.Development.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "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 deleted file mode 100644 index 34f5391..0000000 --- a/obj/Release/net7.0/linux-x64/PubTmp/Out/appsettings.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "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 deleted file mode 100644 index 1e61f6f..0000000 Binary files a/obj/Release/net7.0/linux-x64/PubTmp/Out/libe_sqlite3.so and /dev/null differ diff --git a/obj/Release/net7.0/linux-x64/PublishOutputs.3996289f93.txt b/obj/Release/net7.0/linux-x64/PublishOutputs.3996289f93.txt deleted file mode 100644 index 2fb0a64..0000000 --- a/obj/Release/net7.0/linux-x64/PublishOutputs.3996289f93.txt +++ /dev/null @@ -1,5 +0,0 @@ -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 deleted file mode 100644 index acb381d..0000000 --- a/obj/Release/net7.0/linux-x64/_IsIncrementalBuild +++ /dev/null @@ -1 +0,0 @@ -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 deleted file mode 100644 index 42d9082..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/BCrypt.Net-Next.dll and /dev/null differ diff --git a/obj/Release/net7.0/linux-x64/linked/BuaaLocationServer.dll b/obj/Release/net7.0/linux-x64/linked/BuaaLocationServer.dll deleted file mode 100644 index bcf0622..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/BuaaLocationServer.dll and /dev/null differ diff --git a/obj/Release/net7.0/linux-x64/linked/BuaaLocationServer.pdb b/obj/Release/net7.0/linux-x64/linked/BuaaLocationServer.pdb deleted file mode 100644 index 1097472..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/BuaaLocationServer.pdb and /dev/null differ diff --git a/obj/Release/net7.0/linux-x64/linked/Link.semaphore b/obj/Release/net7.0/linux-x64/linked/Link.semaphore deleted file mode 100644 index e69de29..0000000 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 deleted file mode 100644 index 009d861..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Antiforgery.dll and /dev/null 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 deleted file mode 100644 index 8f78945..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authentication.Abstractions.dll and /dev/null 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 deleted file mode 100644 index ef76884..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authentication.Core.dll and /dev/null 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 deleted file mode 100644 index 5a68821..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authentication.JwtBearer.dll and /dev/null 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 deleted file mode 100644 index f3b3f62..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authentication.dll and /dev/null 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 deleted file mode 100644 index aa3dd61..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authorization.Policy.dll and /dev/null 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 deleted file mode 100644 index 299445a..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Authorization.dll and /dev/null 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 deleted file mode 100644 index 05b599a..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Components.Authorization.dll and /dev/null 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 deleted file mode 100644 index 8265b97..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Components.Server.dll and /dev/null 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 deleted file mode 100644 index 1f58998..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Components.Web.dll and /dev/null 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 deleted file mode 100644 index 02e3f51..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Components.dll and /dev/null 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 deleted file mode 100644 index 8ac5b26..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Connections.Abstractions.dll and /dev/null 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 deleted file mode 100644 index 55b50b4..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Cors.dll and /dev/null 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 deleted file mode 100644 index a01573c..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Cryptography.Internal.dll and /dev/null 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 deleted file mode 100644 index 3c6981b..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.DataProtection.Abstractions.dll and /dev/null 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 deleted file mode 100644 index 10db33e..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.DataProtection.Extensions.dll and /dev/null 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 deleted file mode 100644 index 19ed6af..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.DataProtection.dll and /dev/null 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 deleted file mode 100644 index 96b5fd0..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Diagnostics.Abstractions.dll and /dev/null 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 deleted file mode 100644 index 098cf5e..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Diagnostics.dll and /dev/null 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 deleted file mode 100644 index d934779..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.HostFiltering.dll and /dev/null 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 deleted file mode 100644 index 70fa1b3..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Hosting.Abstractions.dll and /dev/null 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 deleted file mode 100644 index 894207c..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Hosting.Server.Abstractions.dll and /dev/null 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 deleted file mode 100644 index a3be67d..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Hosting.dll and /dev/null 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 deleted file mode 100644 index f641279..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Html.Abstractions.dll and /dev/null 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 deleted file mode 100644 index dc90c4f..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Abstractions.dll and /dev/null 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 deleted file mode 100644 index f1ce4a5..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Connections.Common.dll and /dev/null 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 deleted file mode 100644 index ab960ae..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Connections.dll and /dev/null 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 deleted file mode 100644 index a8d2a88..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Extensions.dll and /dev/null 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 deleted file mode 100644 index c5196e4..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Features.dll and /dev/null 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 deleted file mode 100644 index 5f1fef2..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.Results.dll and /dev/null 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 deleted file mode 100644 index 7c7ba05..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Http.dll and /dev/null 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 deleted file mode 100644 index 9bc5052..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.HttpOverrides.dll and /dev/null 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 deleted file mode 100644 index b5a8351..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Metadata.dll and /dev/null 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 deleted file mode 100644 index 1513e71..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Abstractions.dll and /dev/null 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 deleted file mode 100644 index fc23148..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.ApiExplorer.dll and /dev/null 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 deleted file mode 100644 index 2483b6d..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Core.dll and /dev/null 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 deleted file mode 100644 index 5b6ba47..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Cors.dll and /dev/null 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 deleted file mode 100644 index 322a60e..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.DataAnnotations.dll and /dev/null 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 deleted file mode 100644 index 5810f63..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Formatters.Json.dll and /dev/null 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 deleted file mode 100644 index 7ac9ed7..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Formatters.Xml.dll and /dev/null 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 deleted file mode 100644 index de81c2a..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Localization.dll and /dev/null 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 deleted file mode 100644 index 4739be2..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.Razor.dll and /dev/null 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 deleted file mode 100644 index 8f20d6e..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.RazorPages.dll and /dev/null 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 deleted file mode 100644 index 658a520..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.TagHelpers.dll and /dev/null 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 deleted file mode 100644 index cf2446b..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.ViewFeatures.dll and /dev/null 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 deleted file mode 100644 index 901cd81..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Mvc.dll and /dev/null 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 deleted file mode 100644 index 1cccfde..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.OpenApi.dll and /dev/null 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 deleted file mode 100644 index a720ab7..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.OutputCaching.dll and /dev/null 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 deleted file mode 100644 index 704e5f8..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Razor.Runtime.dll and /dev/null 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 deleted file mode 100644 index 0641090..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Razor.dll and /dev/null 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 deleted file mode 100644 index 0668052..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.ResponseCaching.Abstractions.dll and /dev/null 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 deleted file mode 100644 index 2041453..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Routing.Abstractions.dll and /dev/null 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 deleted file mode 100644 index dd0e9cf..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Routing.dll and /dev/null 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 deleted file mode 100644 index aa1b8fd..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.IIS.dll and /dev/null 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 deleted file mode 100644 index 3943f0c..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.IISIntegration.dll and /dev/null 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 deleted file mode 100644 index 3960f43..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Core.dll and /dev/null 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 deleted file mode 100644 index 63783fe..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Transport.Quic.dll and /dev/null 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 deleted file mode 100644 index c0c5835..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets.dll and /dev/null 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 deleted file mode 100644 index f1943f6..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.Server.Kestrel.dll and /dev/null 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 deleted file mode 100644 index 828e8a2..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.SignalR.Common.dll and /dev/null 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 deleted file mode 100644 index 5e99cfd..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.SignalR.Core.dll and /dev/null 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 deleted file mode 100644 index e45b075..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.SignalR.Protocols.Json.dll and /dev/null 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 deleted file mode 100644 index abfd4c9..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.SignalR.dll and /dev/null 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 deleted file mode 100644 index 753d809..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.StaticFiles.dll and /dev/null 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 deleted file mode 100644 index 6a5534f..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.WebSockets.dll and /dev/null 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 deleted file mode 100644 index 66b7917..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.WebUtilities.dll and /dev/null 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 deleted file mode 100644 index e27a4e3..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.AspNetCore.dll and /dev/null 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 deleted file mode 100644 index b350842..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.CSharp.dll and /dev/null 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 deleted file mode 100644 index bc42a25..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Data.Sqlite.dll and /dev/null 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 deleted file mode 100644 index a89f247..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.EntityFrameworkCore.Abstractions.dll and /dev/null 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 deleted file mode 100644 index 44538e5..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.EntityFrameworkCore.Relational.dll and /dev/null 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 deleted file mode 100644 index 8dbbb08..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.EntityFrameworkCore.Sqlite.dll and /dev/null 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 deleted file mode 100644 index 94a49a4..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.EntityFrameworkCore.dll and /dev/null 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 deleted file mode 100644 index d2dba15..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Caching.Abstractions.dll and /dev/null 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 deleted file mode 100644 index 3ac19d5..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Caching.Memory.dll and /dev/null 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 deleted file mode 100644 index f7296b5..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.Abstractions.dll and /dev/null 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 deleted file mode 100644 index 1705cd0..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.Binder.dll and /dev/null 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 deleted file mode 100644 index c8a20b8..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.CommandLine.dll and /dev/null 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 deleted file mode 100644 index a619b74..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.EnvironmentVariables.dll and /dev/null 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 deleted file mode 100644 index b43d03d..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.FileExtensions.dll and /dev/null 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 deleted file mode 100644 index cfbffce..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.Json.dll and /dev/null 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 deleted file mode 100644 index 735dbda..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.KeyPerFile.dll and /dev/null 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 deleted file mode 100644 index 2cb4580..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.UserSecrets.dll and /dev/null 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 deleted file mode 100644 index c42881f..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Configuration.dll and /dev/null 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 deleted file mode 100644 index 6043157..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.DependencyInjection.Abstractions.dll and /dev/null 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 deleted file mode 100644 index 567a958..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.DependencyInjection.dll and /dev/null 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 deleted file mode 100644 index 3767672..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.DependencyModel.dll and /dev/null 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 deleted file mode 100644 index 07e388b..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Features.dll and /dev/null 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 deleted file mode 100644 index 5ca73c3..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileProviders.Abstractions.dll and /dev/null 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 deleted file mode 100644 index 215e934..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileProviders.Composite.dll and /dev/null 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 deleted file mode 100644 index aa7f6cd..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileProviders.Embedded.dll and /dev/null 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 deleted file mode 100644 index 9b070e0..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileProviders.Physical.dll and /dev/null 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 deleted file mode 100644 index 1fea5a1..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.FileSystemGlobbing.dll and /dev/null 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 deleted file mode 100644 index 02aeb95..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Hosting.Abstractions.dll and /dev/null 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 deleted file mode 100644 index 56370a0..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Hosting.dll and /dev/null 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 deleted file mode 100644 index 809757a..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Localization.Abstractions.dll and /dev/null 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 deleted file mode 100644 index 770069b..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Localization.dll and /dev/null 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 deleted file mode 100644 index a3771b7..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.Abstractions.dll and /dev/null 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 deleted file mode 100644 index 417d494..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.Configuration.dll and /dev/null 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 deleted file mode 100644 index b341e3d..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.Console.dll and /dev/null 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 deleted file mode 100644 index 9c25978..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.Debug.dll and /dev/null 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 deleted file mode 100644 index 0503d6c..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.EventLog.dll and /dev/null 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 deleted file mode 100644 index 06d0627..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.EventSource.dll and /dev/null 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 deleted file mode 100644 index 66bcfa8..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Logging.dll and /dev/null 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 deleted file mode 100644 index 20d05ca..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.ObjectPool.dll and /dev/null 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 deleted file mode 100644 index 01c5dab..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Options.ConfigurationExtensions.dll and /dev/null 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 deleted file mode 100644 index 1da8dd1..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Options.dll and /dev/null 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 deleted file mode 100644 index 079b698..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.Primitives.dll and /dev/null 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 deleted file mode 100644 index 4079bc3..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Extensions.WebEncoders.dll and /dev/null 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 deleted file mode 100644 index eb60093..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.JsonWebTokens.dll and /dev/null 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 deleted file mode 100644 index 526915e..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.Logging.dll and /dev/null 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 deleted file mode 100644 index 8915dfe..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll and /dev/null 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 deleted file mode 100644 index 31e4c86..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.Protocols.dll and /dev/null 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 deleted file mode 100644 index 7016a3c..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.IdentityModel.Tokens.dll and /dev/null 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 deleted file mode 100644 index 17bfa83..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.JSInterop.dll and /dev/null 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 deleted file mode 100644 index fc92201..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Net.Http.Headers.dll and /dev/null 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 deleted file mode 100644 index 1e0998d..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.OpenApi.dll and /dev/null 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 deleted file mode 100644 index 528c477..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.OpenApi.pdb and /dev/null 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 deleted file mode 100644 index ca29480..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Microsoft.Win32.Registry.dll and /dev/null 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 deleted file mode 100644 index 541a965..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/SQLitePCLRaw.batteries_v2.dll and /dev/null 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 deleted file mode 100644 index 8f97332..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/SQLitePCLRaw.core.dll and /dev/null 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 deleted file mode 100644 index aa3d274..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/SQLitePCLRaw.provider.e_sqlite3.dll and /dev/null 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 deleted file mode 100644 index e9b8cf7..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.Swagger.dll and /dev/null 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 deleted file mode 100644 index 75d1e39..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.Swagger.pdb and /dev/null 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 deleted file mode 100644 index 68e38a2..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.SwaggerGen.dll and /dev/null 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 deleted file mode 100644 index e77b346..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.SwaggerGen.pdb and /dev/null 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 deleted file mode 100644 index 9c52aed..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.SwaggerUI.dll and /dev/null 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 deleted file mode 100644 index 1c1b57b..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/Swashbuckle.AspNetCore.SwaggerUI.pdb and /dev/null 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 deleted file mode 100644 index bb8d416..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Collections.Concurrent.dll and /dev/null 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 deleted file mode 100644 index 47a8d04..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Collections.Immutable.dll and /dev/null 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 deleted file mode 100644 index 7f72f3c..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Collections.NonGeneric.dll and /dev/null 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 deleted file mode 100644 index 1b3be25..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Collections.Specialized.dll and /dev/null 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 deleted file mode 100644 index c9c2a19..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Collections.dll and /dev/null 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 deleted file mode 100644 index 88dc9ce..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.ComponentModel.Annotations.dll and /dev/null 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 deleted file mode 100644 index 10e9b81..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.ComponentModel.Primitives.dll and /dev/null 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 deleted file mode 100644 index 441017f..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.ComponentModel.TypeConverter.dll and /dev/null 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 deleted file mode 100644 index d8afe57..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.ComponentModel.dll and /dev/null 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 deleted file mode 100644 index b4a8dae..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Console.dll and /dev/null 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 deleted file mode 100644 index 603dea6..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Data.Common.dll and /dev/null 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 deleted file mode 100644 index f78e3d5..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.DiagnosticSource.dll and /dev/null 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 deleted file mode 100644 index 8d8ed17..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.EventLog.dll and /dev/null 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 deleted file mode 100644 index 97d5d10..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.StackTrace.dll and /dev/null 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 deleted file mode 100644 index d47aa7c..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.TraceSource.dll and /dev/null 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 deleted file mode 100644 index 30349e2..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Diagnostics.Tracing.dll and /dev/null 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 deleted file mode 100644 index eda30d9..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Drawing.Primitives.dll and /dev/null 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 deleted file mode 100644 index e1eff09..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Drawing.dll and /dev/null 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 deleted file mode 100644 index 5de109b..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Formats.Asn1.dll and /dev/null 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 deleted file mode 100644 index 48a0fc6..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.IO.Compression.Brotli.dll and /dev/null 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 deleted file mode 100644 index fd8b0c3..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.IO.Compression.dll and /dev/null 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 deleted file mode 100644 index 55a50ae..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.IO.FileSystem.Watcher.dll and /dev/null 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 deleted file mode 100644 index 1a96563..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.IO.MemoryMappedFiles.dll and /dev/null 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 deleted file mode 100644 index b62c46c..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.IO.Pipelines.dll and /dev/null 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 deleted file mode 100644 index f48b7c8..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.IdentityModel.Tokens.Jwt.dll and /dev/null 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 deleted file mode 100644 index 96422c9..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Linq.Expressions.dll and /dev/null 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 deleted file mode 100644 index 9860859..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Linq.Queryable.dll and /dev/null 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 deleted file mode 100644 index dbadf77..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Linq.dll and /dev/null 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 deleted file mode 100644 index 7691b86..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Memory.dll and /dev/null 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 deleted file mode 100644 index 1f24ca5..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Net.Http.dll and /dev/null 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 deleted file mode 100644 index 73d762e..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Net.NameResolution.dll and /dev/null 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 deleted file mode 100644 index 4fcb000..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Net.NetworkInformation.dll and /dev/null 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 deleted file mode 100644 index 59bfb2f..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Net.Primitives.dll and /dev/null 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 deleted file mode 100644 index efa7ad1..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Net.Quic.dll and /dev/null 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 deleted file mode 100644 index ad62025..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Net.Security.dll and /dev/null 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 deleted file mode 100644 index c084aba..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Net.Sockets.dll and /dev/null 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 deleted file mode 100644 index 8623e3b..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Net.WebSockets.dll and /dev/null 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 deleted file mode 100644 index bcc1a60..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.ObjectModel.dll and /dev/null 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 deleted file mode 100644 index a2c5323..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Private.CoreLib.dll and /dev/null 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 deleted file mode 100644 index 3f9ff5c..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Private.DataContractSerialization.dll and /dev/null 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 deleted file mode 100644 index 3f904fb..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Private.Uri.dll and /dev/null 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 deleted file mode 100644 index 765bde2..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Private.Xml.Linq.dll and /dev/null 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 deleted file mode 100644 index ef26f70..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Private.Xml.dll and /dev/null 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 deleted file mode 100644 index 3ca2ba6..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Reflection.Emit.ILGeneration.dll and /dev/null 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 deleted file mode 100644 index 646a65c..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Reflection.Emit.dll and /dev/null 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 deleted file mode 100644 index 2009264..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Reflection.Metadata.dll and /dev/null 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 deleted file mode 100644 index 21ebc5b..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Reflection.Primitives.dll and /dev/null 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 deleted file mode 100644 index cec46c7..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Runtime.InteropServices.RuntimeInformation.dll and /dev/null 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 deleted file mode 100644 index 46025d8..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Runtime.InteropServices.dll and /dev/null 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 deleted file mode 100644 index ba0ef68..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Runtime.Loader.dll and /dev/null 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 deleted file mode 100644 index 322bc73..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Runtime.Numerics.dll and /dev/null 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 deleted file mode 100644 index 2bbdca7..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Runtime.Serialization.Formatters.dll and /dev/null 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 deleted file mode 100644 index ed130e4..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Runtime.Serialization.Primitives.dll and /dev/null 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 deleted file mode 100644 index cdd6ea3..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Runtime.Serialization.Xml.dll and /dev/null 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 deleted file mode 100644 index f624507..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Runtime.dll and /dev/null 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 deleted file mode 100644 index 5e15484..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Security.AccessControl.dll and /dev/null 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 deleted file mode 100644 index f58d306..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Security.Claims.dll and /dev/null 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 deleted file mode 100644 index a637081..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Algorithms.dll and /dev/null 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 deleted file mode 100644 index 717a17e..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Cng.dll and /dev/null 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 deleted file mode 100644 index 3ece371..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Pkcs.dll and /dev/null 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 deleted file mode 100644 index acf699d..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Primitives.dll and /dev/null 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 deleted file mode 100644 index 12abbcb..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.Xml.dll and /dev/null 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 deleted file mode 100644 index cab9a1d..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Security.Cryptography.dll and /dev/null 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 deleted file mode 100644 index d6c239d..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Security.Principal.Windows.dll and /dev/null 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 deleted file mode 100644 index b993e6c..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Text.Encoding.Extensions.dll and /dev/null 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 deleted file mode 100644 index 3e54ad2..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Text.Encodings.Web.dll and /dev/null 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 deleted file mode 100644 index ff62d86..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Text.Json.dll and /dev/null 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 deleted file mode 100644 index c4b37b0..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Text.RegularExpressions.dll and /dev/null 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 deleted file mode 100644 index 75c4910..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Threading.Channels.dll and /dev/null 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 deleted file mode 100644 index 9fc19a4..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Threading.Thread.dll and /dev/null 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 deleted file mode 100644 index 1c3261d..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Threading.ThreadPool.dll and /dev/null 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 deleted file mode 100644 index e46f4e1..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Threading.dll and /dev/null 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 deleted file mode 100644 index 6522886..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Transactions.Local.dll and /dev/null 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 deleted file mode 100644 index fe5fcd7..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Xml.Linq.dll and /dev/null 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 deleted file mode 100644 index 208c622..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Xml.ReaderWriter.dll and /dev/null 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 deleted file mode 100644 index c0a1d65..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Xml.XDocument.dll and /dev/null 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 deleted file mode 100644 index be2b842..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Xml.XPath.dll and /dev/null 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 deleted file mode 100644 index 815aec0..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.Xml.XmlSerializer.dll and /dev/null differ diff --git a/obj/Release/net7.0/linux-x64/linked/System.dll b/obj/Release/net7.0/linux-x64/linked/System.dll deleted file mode 100644 index 30e25de..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/System.dll and /dev/null differ diff --git a/obj/Release/net7.0/linux-x64/linked/netstandard.dll b/obj/Release/net7.0/linux-x64/linked/netstandard.dll deleted file mode 100644 index 7d40fa5..0000000 Binary files a/obj/Release/net7.0/linux-x64/linked/netstandard.dll and /dev/null differ diff --git a/obj/Release/net7.0/linux-x64/ref/BuaaLocationServer.dll b/obj/Release/net7.0/linux-x64/ref/BuaaLocationServer.dll deleted file mode 100644 index d97a3c1..0000000 Binary files a/obj/Release/net7.0/linux-x64/ref/BuaaLocationServer.dll and /dev/null differ diff --git a/obj/Release/net7.0/linux-x64/refint/BuaaLocationServer.dll b/obj/Release/net7.0/linux-x64/refint/BuaaLocationServer.dll deleted file mode 100644 index d97a3c1..0000000 Binary files a/obj/Release/net7.0/linux-x64/refint/BuaaLocationServer.dll and /dev/null differ diff --git a/obj/Release/net7.0/linux-x64/singlefilehost b/obj/Release/net7.0/linux-x64/singlefilehost deleted file mode 100644 index 33fac5c..0000000 Binary files a/obj/Release/net7.0/linux-x64/singlefilehost and /dev/null differ diff --git a/obj/Release/net7.0/linux-x64/staticwebassets.build.json b/obj/Release/net7.0/linux-x64/staticwebassets.build.json deleted file mode 100644 index 54a7c21..0000000 --- a/obj/Release/net7.0/linux-x64/staticwebassets.build.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "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 deleted file mode 100644 index 73eedd5..0000000 --- a/obj/Release/net7.0/linux-x64/staticwebassets.publish.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "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 deleted file mode 100644 index 5a6032a..0000000 --- a/obj/Release/net7.0/linux-x64/staticwebassets/msbuild.build.BuaaLocationServer.props +++ /dev/null @@ -1,3 +0,0 @@ -锘 - - \ 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 deleted file mode 100644 index 1aae6b4..0000000 --- a/obj/Release/net7.0/linux-x64/staticwebassets/msbuild.buildMultiTargeting.BuaaLocationServer.props +++ /dev/null @@ -1,3 +0,0 @@ -锘 - - \ 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 deleted file mode 100644 index 380e21b..0000000 --- a/obj/Release/net7.0/linux-x64/staticwebassets/msbuild.buildTransitive.BuaaLocationServer.props +++ /dev/null @@ -1,3 +0,0 @@ -锘 - - \ No newline at end of file diff --git a/obj/Release/net7.0/ref/BuaaLocationServer.dll b/obj/Release/net7.0/ref/BuaaLocationServer.dll deleted file mode 100644 index 1d6facb..0000000 Binary files a/obj/Release/net7.0/ref/BuaaLocationServer.dll and /dev/null differ diff --git a/obj/Release/net7.0/refint/BuaaLocationServer.dll b/obj/Release/net7.0/refint/BuaaLocationServer.dll deleted file mode 100644 index 1d6facb..0000000 Binary files a/obj/Release/net7.0/refint/BuaaLocationServer.dll and /dev/null differ diff --git a/obj/Release/net7.0/staticwebassets.build.json b/obj/Release/net7.0/staticwebassets.build.json deleted file mode 100644 index 54a7c21..0000000 --- a/obj/Release/net7.0/staticwebassets.build.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "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 deleted file mode 100644 index 5a6032a..0000000 --- a/obj/Release/net7.0/staticwebassets/msbuild.build.BuaaLocationServer.props +++ /dev/null @@ -1,3 +0,0 @@ -锘 - - \ 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 deleted file mode 100644 index 1aae6b4..0000000 --- a/obj/Release/net7.0/staticwebassets/msbuild.buildMultiTargeting.BuaaLocationServer.props +++ /dev/null @@ -1,3 +0,0 @@ -锘 - - \ 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 deleted file mode 100644 index 380e21b..0000000 --- a/obj/Release/net7.0/staticwebassets/msbuild.buildTransitive.BuaaLocationServer.props +++ /dev/null @@ -1,3 +0,0 @@ -锘 - - \ No newline at end of file diff --git a/obj/project.assets.json b/obj/project.assets.json deleted file mode 100644 index 2321983..0000000 --- a/obj/project.assets.json +++ /dev/null @@ -1,2297 +0,0 @@ -{ - "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 deleted file mode 100644 index 6401794..0000000 --- a/obj/project.nuget.cache +++ /dev/null @@ -1,55 +0,0 @@ -{ - "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 deleted file mode 100644 index ed2cbaa..0000000 --- a/obj/publish/linux-x64/BuaaLocationServer.csproj.nuget.dgspec.json +++ /dev/null @@ -1,122 +0,0 @@ -{ - "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 deleted file mode 100644 index a7038c1..0000000 --- a/obj/publish/linux-x64/BuaaLocationServer.csproj.nuget.g.props +++ /dev/null @@ -1,26 +0,0 @@ -锘 - - - 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 deleted file mode 100644 index 74f7410..0000000 --- a/obj/publish/linux-x64/BuaaLocationServer.csproj.nuget.g.targets +++ /dev/null @@ -1,9 +0,0 @@ -锘 - - - - - - - - \ No newline at end of file diff --git a/obj/publish/linux-x64/project.assets.json b/obj/publish/linux-x64/project.assets.json deleted file mode 100644 index c0a2950..0000000 --- a/obj/publish/linux-x64/project.assets.json +++ /dev/null @@ -1,3039 +0,0 @@ -{ - "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 deleted file mode 100644 index 1a315d3..0000000 --- a/obj/publish/linux-x64/project.nuget.cache +++ /dev/null @@ -1,58 +0,0 @@ -{ - "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