InABox.Core.csproj 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Library</OutputType>
  4. <Nullable>enable</Nullable>
  5. <TargetFramework>netstandard2.1</TargetFramework>
  6. <Configurations>Debug;Release;Publish</Configurations>
  7. <Platforms>AnyCPU</Platforms>
  8. </PropertyGroup>
  9. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  10. <DefineConstants>TRACE; </DefineConstants>
  11. </PropertyGroup>
  12. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  13. <DefineConstants>$(DefineConstants)TRACE;PURGE</DefineConstants>
  14. </PropertyGroup>
  15. <ItemGroup>
  16. <Compile Remove="InABox.Logging.Shared\**" />
  17. <EmbeddedResource Remove="InABox.Logging.Shared\**" />
  18. <None Remove="InABox.Logging.Shared\**" />
  19. <None Remove=".gitignore" />
  20. </ItemGroup>
  21. <ItemGroup>
  22. <PackageReference Include="AutoProperties.Fody" Version="1.25.0" />
  23. <PackageReference Include="ExpressiveParser" Version="3.0.1" />
  24. <PackageReference Include="FluentResults" Version="4.0.0" />
  25. <PackageReference Include="Fody" Version="6.9.2">
  26. <PrivateAssets>all</PrivateAssets>
  27. <IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
  28. </PackageReference>
  29. <PackageReference Include="HtmlAgilityPack" Version="1.12.2" />
  30. <PackageReference Include="Inflector.NetStandard" Version="1.2.2" />
  31. <PackageReference Include="PropertyChanged.Fody" Version="4.1.0" />
  32. <PackageReference Include="System.Collections.Immutable" Version="9.0.7" />
  33. <PackageReference Include="System.Text.Json" Version="9.0.0" />
  34. <PackageReference Include="TextFieldParserStandard" Version="1.0.0" />
  35. </ItemGroup>
  36. <ItemGroup>
  37. <ProjectReference Include="..\InABox.Integration\InABox.Integration.csproj" />
  38. <ProjectReference Include="..\inabox.logging.shared\InABox.Logging.Shared.csproj" />
  39. </ItemGroup>
  40. </Project>