mirror of https://github.com/SixLabors/ImageSharp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
1.7 KiB
45 lines
1.7 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>netcoreapp2.1;net462;net472</TargetFrameworks>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
<LangVersion>latest</LangVersion>
|
|
<DebugType Condition="$(codecov) != ''">full</DebugType>
|
|
<DebugType Condition="$(codecov) == ''">portable</DebugType>
|
|
<DebugSymbols>True</DebugSymbols>
|
|
<AssemblyName>SixLabors.ImageSharp.Tests</AssemblyName>
|
|
<Platforms>AnyCPU;x64;x86</Platforms>
|
|
<RootNamespace>SixLabors.ImageSharp.Tests</RootNamespace>
|
|
<!--Used by coverlet dues to reference issueswith SixLabors.Core-->
|
|
<!--https://github.com/tonerdo/coverlet/blob/master/Documentation/KnowIssues.md#4-failed-to-resolve-assembly-during-instrumentation-->
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<DotNetCliToolReference Include="dotnet-xunit" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Magick.NET-Q16-AnyCPU" />
|
|
<PackageReference Include="Moq" />
|
|
<PackageReference Include="System.Drawing.Common" />
|
|
|
|
<PackageReference Include="coverlet.collector" Version="1.1.0"/>
|
|
<PackageReference Include="coverlet.msbuild" Version="2.8.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="TestFonts\OpenSans-Regular.ttf">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="TestFonts\SixLaborsSampleAB.woff">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
<None Update="xunit.runner.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|
|
|