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.
44 lines
1.8 KiB
44 lines
1.8 KiB
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp1.1</TargetFramework>
|
|
<AllowUnsafeBlocks>True</AllowUnsafeBlocks>
|
|
<DebugType Condition="$(codecov) != ''">full</DebugType>
|
|
<DebugType Condition="$(codecov) == ''">portable</DebugType>
|
|
<DebugSymbols>True</DebugSymbols>
|
|
<RootNamespace>SixLabors.ImageSharp.Tests</RootNamespace>
|
|
<AssemblyName>SixLabors.ImageSharp.Tests</AssemblyName>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
|
|
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
|
|
<WarningsAsErrors />
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<None Include="PixelFormats\PixelOperationsTests.Blender.cs" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="CoreCompat.System.Drawing" Version="1.0.0-beta006" />
|
|
<PackageReference Include="xunit" Version="2.3.0-beta4-build3742" />
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.3.0-beta4-build3742" />
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="15.3.0" />
|
|
<PackageReference Include="Moq" Version="4.7.99" />
|
|
<!--<PackageReference Include="StyleCop.Analyzers" Version="1.1.0-beta001">
|
|
<PrivateAssets>All</PrivateAssets>
|
|
</PackageReference>-->
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<AdditionalFiles Include="..\..\stylecop.json" />
|
|
<ProjectReference Include="..\..\src\ImageSharp.Drawing\ImageSharp.Drawing.csproj" />
|
|
<ProjectReference Include="..\..\src\ImageSharp\ImageSharp.csproj" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Service Include="{82a7f48d-3b50-4b1e-b82e-3ada8210c358}" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Update="xunit.runner.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Folder Include="TestUtilities\Factories\" />
|
|
</ItemGroup>
|
|
</Project>
|