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.
33 lines
1.4 KiB
33 lines
1.4 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project>
|
|
|
|
<!--
|
|
Directory.Build.targets is automatically picked up and imported by
|
|
Microsoft.Common.targets. This file needs to exist, even if empty so that
|
|
files in the parent directory tree, with the same name, are not imported
|
|
instead. The import fairly late and most other props/targets will have
|
|
been imported beforehand. We also don't need to add ourselves to
|
|
MSBuildAllProjects, as that is done by the file that imports us.
|
|
-->
|
|
|
|
<PropertyGroup>
|
|
<MSBuildAllProjects>$(MSBuildAllProjects);$(MSBuildThisFileDirectory)..\Directory.Build.targets</MSBuildAllProjects>
|
|
</PropertyGroup>
|
|
|
|
<Import Project="$(MSBuildThisFileDirectory)..\Directory.Build.targets" />
|
|
|
|
<ItemGroup>
|
|
<!--Test Dependencies-->
|
|
<PackageReference Update="BenchmarkDotNet" Version="0.12.0" />
|
|
<PackageReference Update="Colourful" Version="2.0.3" />
|
|
<PackageReference Update="Magick.NET-Q16-AnyCPU" Version="7.14.4" />
|
|
<PackageReference Update="Microsoft.NET.Test.Sdk" Version="16.4.0" />
|
|
<PackageReference Update="Moq" Version="4.10.0" />
|
|
<PackageReference Update="Pfim" Version="0.9.1" />
|
|
<PackageReference Update="System.Drawing.Common" Version="4.7.0" />
|
|
<!--TODO: Fix implicit conversion issues so we can move to 2.4.1-->
|
|
<PackageReference Update="xunit" Version="2.3.1" />
|
|
<PackageReference Update="xunit.runner.visualstudio" Version="2.3.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|