FileShare/FileShare-EFCore/FileShare-EFCore.csproj

29 lines
1.3 KiB
XML
Raw Permalink Normal View History

2026-05-22 14:29:22 +08:00
<Project Sdk="Microsoft.NET.Sdk">
2026-05-21 15:52:36 +08:00
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
2026-05-22 14:29:22 +08:00
<RootNamespace>FileShare_EFCore</RootNamespace>
2026-05-21 15:52:36 +08:00
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="10.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Relational" Version="10.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.7" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="10.0.0" />
<PackageReference Include="MySql.EntityFrameworkCore" Version="10.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="10.0.7">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="10.0.7" />
</ItemGroup>
<ItemGroup>
2026-05-22 14:29:22 +08:00
<ProjectReference Include="..\FileShare-Common\FileShare-Common.csproj" />
2026-05-21 15:52:36 +08:00
</ItemGroup>
</Project>