InABox.Database.csproj 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. <ItemGroup>
  12. <PackageReference Include="FluentResults" Version="4.0.0" />
  13. <PackageReference Include="System.Collections.Immutable" Version="9.0.7" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\inabox.logging.shared\InABox.Logging.Shared.csproj" />
  17. <ProjectReference Include="..\InABox.Scripting\InABox.Scripting.csproj" />
  18. </ItemGroup>
  19. <ItemGroup>
  20. <Compile Remove="archive\**" />
  21. </ItemGroup>
  22. <ItemGroup>
  23. <EmbeddedResource Remove="archive\**" />
  24. </ItemGroup>
  25. <ItemGroup>
  26. <None Remove="archive\**" />
  27. <None Remove=".gitignore" />
  28. </ItemGroup>
  29. </Project>