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.
29 lines
1.2 KiB
29 lines
1.2 KiB
<Project Sdk="Microsoft.NET.Sdk"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net8.0</TargetFramework> |
|
<ImplicitUsings>enable</ImplicitUsings> |
|
<Nullable>enable</Nullable> |
|
<OutputPath>bin\Release\net8.0\</OutputPath> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="9.0.8" /> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="9.0.8"> |
|
<PrivateAssets>all</PrivateAssets> |
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
|
</PackageReference> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="9.0.8" /> |
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="9.0.8"> |
|
<PrivateAssets>all</PrivateAssets> |
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets> |
|
</PackageReference> |
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="9.0.0-rc.1.efcore.9.0.0" /> |
|
<PackageReference Include="Serilog.Sinks.File" Version="7.0.0" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<Folder Include="DB\" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|