Files
XplorePlane/XplorePlane.Tests/XplorePlane.Tests.csproj
T
2026-03-14 23:58:38 +08:00

34 lines
1.2 KiB
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<UseWPF>true</UseWPF>
<RootNamespace>XplorePlane.Tests</RootNamespace>
<IsPackable>false</IsPackable>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="xunit" Version="2.9.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.11.1" />
<PackageReference Include="Moq" Version="4.20.72" />
<PackageReference Include="FsCheck" Version="3.1.0" />
<PackageReference Include="FsCheck.Xunit" Version="3.1.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\XplorePlane\XplorePlane.csproj" />
</ItemGroup>
<!-- 直接引用主项目依赖的本地 DLL -->
<ItemGroup>
<Reference Include="ImageProcessing.Core">
<HintPath>..\XplorePlane\Libs\ImageProcessing\ImageProcessing.Core.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
</Project>