31 lines
1.6 KiB
XML
31 lines
1.6 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|
||
|
|
<PropertyGroup>
|
||
|
|
<TargetFramework>net8.0</TargetFramework>
|
||
|
|
<Nullable>enable</Nullable>
|
||
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
||
|
|
<RootNamespace>MiGu.DB</RootNamespace>
|
||
|
|
<AssemblyName>MiGu.DB</AssemblyName>
|
||
|
|
<LangVersion>latest</LangVersion>
|
||
|
|
</PropertyGroup>
|
||
|
|
|
||
|
|
<ItemGroup>
|
||
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="8.0.10" />
|
||
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="8.0.10" />
|
||
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.10" />
|
||
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="8.0.10" />
|
||
|
|
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="8.0.10" />
|
||
|
|
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="8.0.2" />
|
||
|
|
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="8.0.10">
|
||
|
|
<PrivateAssets>all</PrivateAssets>
|
||
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
||
|
|
</PackageReference>
|
||
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="8.0.2" />
|
||
|
|
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.1" />
|
||
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
|
||
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.Binder" Version="8.0.2" />
|
||
|
|
<PackageReference Include="Microsoft.Data.Sqlite" Version="8.0.10" />
|
||
|
|
</ItemGroup>
|
||
|
|
|
||
|
|
</Project>
|