2021-10-18 21:48:02 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-11-23 17:20:59 +00:00
|
|
|
<TargetFramework>net6.0</TargetFramework>
|
2021-10-18 21:48:02 +01:00
|
|
|
<EnableDefaultCompileItems>true</EnableDefaultCompileItems>
|
|
|
|
<LangVersion>latest</LangVersion>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2021-10-23 12:49:42 +01:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Selector\Selector.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2021-10-18 21:48:02 +01:00
|
|
|
<ItemGroup>
|
2021-10-24 00:23:45 +01:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
|
2021-12-18 17:45:34 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="6.0.1" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="6.0.1" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.1" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="6.0.1">
|
2021-10-23 22:16:37 +01:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
2021-12-18 17:45:34 +00:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.1">
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="6.0.1" />
|
2021-11-23 17:20:59 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
|
2021-12-04 12:49:09 +00:00
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.1" />
|
2021-10-18 21:48:02 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
2021-10-26 22:52:39 +01:00
|
|
|
<ItemGroup>
|
|
|
|
<Folder Include="Migrations\" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2021-10-18 21:48:02 +01:00
|
|
|
</Project>
|