Files
AIC-Project/Server/Auth/Auth.csproj
T
2026-07-10 10:24:29 +08:00

17 lines
800 B
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>disable</Nullable>
<ImplicitUsings>disable</ImplicitUsings>
<AssemblyName>XWorld.Server.Auth</AssemblyName>
<RootNamespace>XWorld.Server.Auth</RootNamespace>
</PropertyGroup>
<ItemGroup>
<!-- AuthEndpoints 用到 ASP.NET 类型(IEndpointRouteBuilder/Results/MapPost -->
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<!-- NU1903: 传递依赖 SQLitePCLRaw.lib.e_sqlite3 有已知 SQLite 漏洞(GHSA-2m69-gcr7-jv3q)
2.1.10/2.1.11 均被标记;待 SQLitePCLRaw 发布修复版后 bump 此包即可消除。功能不受影响。 -->
<PackageReference Include="Microsoft.Data.Sqlite" Version="9.0.0" />
</ItemGroup>
</Project>