2022-06-12 14:29:19 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2023-01-22 18:35:57 +00:00
|
|
|
<OutputType>Library</OutputType>
|
2023-02-12 13:07:30 +00:00
|
|
|
<TargetFramework>net7.0</TargetFramework>
|
2022-06-12 14:29:19 +00:00
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
<Nullable>enable</Nullable>
|
2023-02-12 13:07:30 +00:00
|
|
|
<LangVersion>default</LangVersion>
|
2022-06-12 14:29:19 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2022-06-12 15:15:30 +00:00
|
|
|
<ItemGroup>
|
2023-02-12 13:07:30 +00:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.2" />
|
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.2">
|
2022-06-12 15:15:30 +00:00
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
</PackageReference>
|
2023-02-12 13:07:30 +00:00
|
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.2" />
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.0" />
|
2022-06-12 15:15:30 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<Folder Include="Migrations" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
2022-06-12 14:29:19 +00:00
|
|
|
</Project>
|