26 lines
1.1 KiB
XML
26 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="10.0.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="10.0.2" />
|
|
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.1" />
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
|
|
<PackageReference Include="OpenIddict.Abstractions" Version="7.2.0" />
|
|
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="7.2.0" />
|
|
<PackageReference Include="OpenIddict.Server" Version="7.2.0" />
|
|
<PackageReference Include="OpenIddict.Server.AspNetCore" Version="7.2.0" />
|
|
<PackageReference Include="Swashbuckle.AspNetCore" Version="10.1.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Fengling.AuthService\Fengling.AuthService.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|