22 lines
717 B
XML
22 lines
717 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
|
<DebugSymbols>False</DebugSymbols>
|
|
<DebugType>None</DebugType>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Dapper" Version="2.1.35" />
|
|
<PackageReference Include="Microsoft.Data.SqlClient" Version="5.2.2" />
|
|
<PackageReference Include="Microsoft.Data.Sqlite.Core" Version="9.0.1" />
|
|
<PackageReference Include="SQLitePCLRaw.bundle_e_sqlite3" Version="2.1.10" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|