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.
34 lines
1.7 KiB
34 lines
1.7 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. They 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.
|
|
-->
|
|
|
|
<!-- Import the shared tests .targets file -->
|
|
<Import Project="$(MSBuildThisFileDirectory)..\shared-infrastructure\msbuild\targets\SixLabors.Tests.targets" />
|
|
|
|
<!-- Import the solution .targets file. -->
|
|
<Import Project="$(MSBuildThisFileDirectory)..\Directory.Build.targets" />
|
|
|
|
<ItemGroup>
|
|
<!-- Test Dependencies -->
|
|
<PackageReference Update="BenchmarkDotNet" Version="0.12.1" />
|
|
<PackageReference Update="BenchmarkDotNet.Diagnostics.Windows" Version="0.12.1" Condition="'$(IsWindows)'=='true'" />
|
|
<PackageReference Update="Colourful" Version="2.0.5" />
|
|
<PackageReference Update="Magick.NET-Q16-AnyCPU" Version="7.22.0" />
|
|
<PackageReference Update="Microsoft.DotNet.RemoteExecutor" Version="6.0.0-beta.20513.1" />
|
|
<PackageReference Update="Microsoft.DotNet.XUnitExtensions" Version="6.0.0-beta.20513.1" />
|
|
<PackageReference Update="Moq" Version="4.14.6" />
|
|
<PackageReference Update="Pfim" Version="0.9.1" />
|
|
<PackageReference Include="runtime.osx.10.10-x64.CoreCompat.System.Drawing" Version="5.8.64" Condition="'$(IsOSX)'=='true'" />
|
|
<PackageReference Update="SharpZipLib" Version="1.3.0" />
|
|
<PackageReference Update="System.Drawing.Common" Version="4.7.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|
|
|