2021-10-18 21:48:02 +01:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2022-11-09 22:41:58 +00:00
|
|
|
<TargetFramework>net7.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" />
|
2022-11-09 22:41:58 +00:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="7.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.0">
|
2021-10-23 22:16:37 +01:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
2022-11-09 22:41:58 +00:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.0">
|
2021-12-18 17:45:34 +00:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2022-11-09 22:41:58 +00:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="7.0.0" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="7.0.0" />
|
|
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.0" />
|
2021-10-18 21:48:02 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
2021-10-26 22:52:39 +01:00
|
|
|
<ItemGroup>
|
|
|
|
<Folder Include="Migrations\" />
|
2022-10-07 18:29:33 +01:00
|
|
|
<Folder Include="Listen\" />
|
2021-10-26 22:52:39 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
2022-10-07 18:29:33 +01:00
|
|
|
<ItemGroup>
|
|
|
|
<None Remove="Listen\" />
|
|
|
|
</ItemGroup>
|
2021-10-18 21:48:02 +01:00
|
|
|
</Project>
|