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.
27 lines
1012 B
27 lines
1012 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<AssemblyName>ImageSharp.Benchmarks</AssemblyName>
|
|
<OutputType>Exe</OutputType>
|
|
<RootNamespace>SixLabors.ImageSharp.Benchmarks</RootNamespace>
|
|
<TargetFrameworks>netcoreapp2.1;net472</TargetFrameworks>
|
|
<GenerateProgramFile>false</GenerateProgramFile>
|
|
<!--Used to hide test project from dotnet test-->
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Compile Include="..\ImageSharp.Tests\TestImages.cs" Link="Tests\TestImages.cs" />
|
|
<Compile Include="..\ImageSharp.Tests\TestUtilities\TestEnvironment.cs" Link="Tests\TestEnvironment.cs" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Magick.NET-Q16-AnyCPU" />
|
|
<PackageReference Include="BenchmarkDotNet" />
|
|
<PackageReference Include="Colourful" />
|
|
<PackageReference Include="Pfim" />
|
|
<PackageReference Include="SixLabors.Shapes.Text" />
|
|
<PackageReference Include="System.Drawing.Common" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|