InABox.Database.SQLite.csproj 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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)' == 'Release|AnyCPU' ">
  8. <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
  9. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  10. </PropertyGroup>
  11. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  12. <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
  13. </PropertyGroup>
  14. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  15. <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
  16. </PropertyGroup>
  17. <ItemGroup>
  18. <Compile Remove="archive\**" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <EmbeddedResource Remove="archive\**" />
  22. </ItemGroup>
  23. <ItemGroup>
  24. <None Remove="archive\**" />
  25. <None Remove=".gitignore" />
  26. </ItemGroup>
  27. <ItemGroup>
  28. <PackageReference Include="Quickenshtein" Version="1.5.1" />
  29. <PackageReference Include="System.Collections.Immutable" Version="9.0.7" />
  30. <PackageReference Include="System.Data.SQLite.Core" Version="1.0.118" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <ProjectReference Include="..\InABox.Database\InABox.Database.csproj" />
  34. <ProjectReference Include="..\inabox.logging.shared\InABox.Logging.Shared.csproj" />
  35. </ItemGroup>
  36. </Project>