You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
806 B
19 lines
806 B
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="8.0.3" />
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.3" />
|
|
<PackageReference Include="MySql.EntityFrameworkCore" Version="8.0.0" />
|
|
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
|
|
<PackageReference Include="OpenIddict.AspNetCore" Version="5.3.0" />
|
|
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="5.3.0" />
|
|
<PackageReference Include="OpenIddict.Validation.AspNetCore" Version="5.3.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|