InABox.Database.SQLite.csproj 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.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="System.Data.SQLite.Core" Version="1.0.117" />
  25. </ItemGroup>
  26. <ItemGroup>
  27. <ProjectReference Include="..\InABox.Core\InABox.Core.csproj" />
  28. <ProjectReference Include="..\InABox.Database\InABox.Database.csproj" />
  29. <ProjectReference Include="..\inabox.logging.shared\InABox.Logging.Shared.csproj" />
  30. </ItemGroup>
  31. </Project>