InABox.DatabaseProxy.csproj 588 B

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net6.0</TargetFramework>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. </PropertyGroup>
  7. <ItemGroup>
  8. <Compile Remove="archive\**"/>
  9. </ItemGroup>
  10. <ItemGroup>
  11. <EmbeddedResource Remove="archive\**"/>
  12. </ItemGroup>
  13. <ItemGroup>
  14. <None Remove="archive\**"/>
  15. <None Remove=".gitignore"/>
  16. </ItemGroup>
  17. <ItemGroup>
  18. <PackageReference Include="Newtonsoft.Json" Version="13.0.1"/>
  19. </ItemGroup>
  20. </Project>