Agg.csproj 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net8.0</TargetFramework>
  4. <Company>MatterHackers Inc.</Company>
  5. <ReleaseVersion>2.20.12</ReleaseVersion>
  6. </PropertyGroup>
  7. <PropertyGroup Condition="'$(SolutionFileName)'=='MatterControlAndroid.sln'">
  8. <DefineConstants>$(DefineConstants);__ANDROID__</DefineConstants>
  9. </PropertyGroup>
  10. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
  11. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  12. </PropertyGroup>
  13. <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
  14. <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
  15. </PropertyGroup>
  16. <ItemGroup>
  17. <PackageReference Include="HtmlAgilityPack" Version="1.11.53" />
  18. <PackageReference Include="System.Buffers" Version="4.5.1" />
  19. </ItemGroup>
  20. <ItemGroup>
  21. <PackageReference Update="StyleCop.Analyzers" Version="1.1.118" />
  22. </ItemGroup>
  23. <Import Project="..\VectorMath\VectorMath.projitems" Label="Shared" />
  24. <Import Project="..\Typography.OpenFont\Typography.OpenFont.projitems" Label="Shared" />
  25. <Import Project="..\Typography.GlyphLayout\Typography.GlyphLayout.projitems" Label="Shared" />
  26. </Project>