-
-
Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathImageSharp.Drawing.Benchmarks.csproj
More file actions
54 lines (48 loc) · 1.67 KB
/
ImageSharp.Drawing.Benchmarks.csproj
File metadata and controls
54 lines (48 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<RootNamespace>SixLabors.ImageSharp.Drawing.Benchmarks</RootNamespace>
<IsPackable>false</IsPackable>
<GenerateProgramFile>false</GenerateProgramFile>
<IsTestProject>false</IsTestProject>
<LangVersion>latest</LangVersion>
</PropertyGroup>
<Choose>
<When Condition="$(SIXLABORS_TESTING_PREVIEW) == true">
<PropertyGroup>
<TargetFrameworks>net7.0;net6.0</TargetFrameworks>
</PropertyGroup>
</When>
<Otherwise>
<PropertyGroup>
<TargetFrameworks>net6.0</TargetFrameworks>
</PropertyGroup>
</Otherwise>
</Choose>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" />
<PackageReference Include="System.Drawing.Common" />
<PackageReference Include="GeoJSON.Net" />
<PackageReference Include="SkiaSharp" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\ImageSharp.Drawing\ImageSharp.Drawing.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\ImageSharp.Drawing.Tests\TestFile.cs">
<Link>TestFile.cs</Link>
</Compile>
<Compile Include="..\ImageSharp.Drawing.Tests\TestImages.cs">
<Link>TestImages.cs</Link>
</Compile>
<Compile Include="..\ImageSharp.Drawing.Tests\TestUtilities\PolygonFactory.cs">
<Link>PolygonFactory.cs</Link>
</Compile>
<Compile Include="..\ImageSharp.Drawing.Tests\TestUtilities\TestEnvironment.cs">
<Link>TestEnvironment.cs</Link>
</Compile>
<Compile Include="..\ImageSharp.Drawing.Tests\TestUtilities\SvgBenchmarkHelper.cs">
<Link>SvgBenchmarkHelper.cs</Link>
</Compile>
</ItemGroup>
</Project>