2021-06-15 03:39:17 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<TargetFramework>net5.0-windows</TargetFramework>
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
2021-06-16 05:16:25 +00:00
|
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
2021-06-15 03:39:17 +00:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
2021-06-19 15:25:06 +00:00
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
|
2021-06-15 03:39:17 +00:00
|
|
|
<PackageReference Include="xunit" Version="2.4.1" />
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
|
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
2021-07-31 03:04:25 +00:00
|
|
|
<PackageReference Include="coverlet.collector" Version="3.1.0">
|
2021-06-15 03:39:17 +00:00
|
|
|
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
|
|
|
|
<PrivateAssets>all</PrivateAssets>
|
|
|
|
</PackageReference>
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Wabbajack.ImageHashing\Wabbajack.ImageHashing.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
<None Update="Resources\test-dxt5.dds">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
2021-06-16 05:16:25 +00:00
|
|
|
<None Update="Resources\test-dxt5-small-bc7.dds">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="Resources\test-dxt5-small-bc7-vflip.dds">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
|
|
|
<None Update="Resources\test-dxt5-recompressed.dds">
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
</None>
|
2021-06-15 03:39:17 +00:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|