InABox.DatabaseProxy.csproj 838 B

12345678910111213141516171819202122232425262728293031
  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)' == 'Release|AnyCPU' ">
  8. <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
  9. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <Compile Remove="archive\**" />
  13. </ItemGroup>
  14. <ItemGroup>
  15. <EmbeddedResource Remove="archive\**" />
  16. </ItemGroup>
  17. <ItemGroup>
  18. <None Remove="archive\**" />
  19. <None Remove=".gitignore" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <ProjectReference Include="..\InABox.Core\InABox.Core.csproj" />
  23. </ItemGroup>
  24. </Project>