InABox.Integration.Logikal.csproj 836 B

123456789101112131415161718192021222324
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <ImplicitUsings>disable</ImplicitUsings>
  4. <Nullable>disable</Nullable>
  5. <LangVersion>7.3</LangVersion>
  6. <TargetFramework>netstandard2.0</TargetFramework>
  7. </PropertyGroup>
  8. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  9. <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
  10. <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\InABox.Formatters.Core\InABox.Formatters.Core.csproj" />
  17. <ProjectReference Include="..\InABox.Integration\InABox.Integration.csproj" />
  18. </ItemGroup>
  19. </Project>