12345678910111213141516171819202122232425262728293031323334353637 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net8.0</TargetFramework>
- <Company>MatterHackers Inc.</Company>
- <ReleaseVersion>2.20.12</ReleaseVersion>
- </PropertyGroup>
-
- <PropertyGroup Condition="'$(SolutionFileName)'=='MatterControlAndroid.sln'">
- <DefineConstants>$(DefineConstants);__ANDROID__</DefineConstants>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
- <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="HtmlAgilityPack" Version="1.11.53" />
- <PackageReference Include="System.Buffers" Version="4.5.1" />
- </ItemGroup>
- <ItemGroup>
- <PackageReference Update="StyleCop.Analyzers" Version="1.1.118" />
- </ItemGroup>
- <Import Project="..\VectorMath\VectorMath.projitems" Label="Shared" />
- <Import Project="..\Typography.OpenFont\Typography.OpenFont.projitems" Label="Shared" />
- <Import Project="..\Typography.GlyphLayout\Typography.GlyphLayout.projitems" Label="Shared" />
- </Project>
|