InABox.Database.SQLite.csproj 1.3 KB

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