scry/test/Scry.Tests/Scry.Tests.csproj
Chris Kruining 0801ceee6a
.
2026-02-05 09:41:07 +01:00

32 lines
916 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<IsTestProject>true</IsTestProject>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SkiaSharp" />
<PackageReference Include="Microsoft.NET.Test.Sdk" />
<PackageReference Include="xunit" />
<PackageReference Include="xunit.runner.visualstudio" />
<PackageReference Include="coverlet.collector" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\Scry.Core\Scry.Core.csproj" />
</ItemGroup>
<ItemGroup>
<None
Include="..\..\TestImages\**\*"
Link="TestImages\%(RecursiveDir)%(FileName)%(Extension)"
>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>