2020-12-12 14:47:20 +01:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net5.0</TargetFramework>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2020-12-16 21:41:14 +01:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="5.0.0" />
|
2020-12-12 14:47:20 +01:00
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.0">
|
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
|
</PackageReference>
|
2020-12-16 21:41:14 +01:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Identity.Core" Version="5.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Identity.Stores" Version="5.0.0" />
|
2020-12-12 14:47:20 +01:00
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="5.0.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Project>
|