SOMS/test/ConsoleAppSqlite/ConsoleAppSqlite.csproj

25 lines
766 B
XML
Raw Permalink Normal View History

2025-08-11 10:39:55 +08:00
<Project Sdk="Microsoft.NET.Sdk">
2025-03-10 18:15:27 +08:00
<PropertyGroup>
<OutputType>Exe</OutputType>
2025-08-11 10:39:55 +08:00
<TargetFramework>net6.0</TargetFramework>`n <LangVersion>8.0</LangVersion>
2025-03-10 18:15:27 +08:00
</PropertyGroup>
<ItemGroup>
2025-08-11 10:39:55 +08:00
<!-- EF Core SQLite 鎻愪緵绋嬪簭 -->
2025-03-10 18:15:27 +08:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.32" />
2025-08-11 10:39:55 +08:00
<!-- EF Core 璁捐鏃跺伐鍏峰寘 -->
2025-03-10 18:15:27 +08:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="3.1.32" />
2025-08-11 10:39:55 +08:00
<!-- 鍙€夛細EF Core 宸ュ叿鍖?-->
2025-03-10 18:15:27 +08:00
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.32" />
</ItemGroup>
<ItemGroup>
<None Update="iodb1.sql3">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>
2025-08-11 10:39:55 +08:00