SOMS/test/ConsoleAppSqlite/ConsoleAppSqlite.csproj
2025-07-08 14:01:10 +08:00

23 lines
708 B
XML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<!-- EF Core SQLite 提供程序 -->
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.32" />
<!-- EF Core 设计时工具包 -->
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.32" />
<!-- 可选EF Core 工具包 -->
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.32" />
</ItemGroup>
<ItemGroup>
<None Update="iodb1.sql3">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>