DBHelper.csproj 629 B

123456789101112131415161718192021
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  8. <DefineConstants>$(DefineConstants)</DefineConstants>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  11. <DefineConstants>$(DefineConstants)</DefineConstants>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="SQLitePCLRaw.bundle_green" Version="2.1.10" />
  15. </ItemGroup>
  16. </Project>