2026-06-30 12:10:29 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<PlatformTarget>x64</PlatformTarget>
|
|
|
|
|
<Platforms>x64</Platforms>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
|
|
|
|
<IsPackable>false</IsPackable>
|
|
|
|
|
<IsTestProject>true</IsTestProject>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="coverlet.collector" Version="6.0.0" />
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
|
|
|
|
|
<PackageReference Include="xunit" Version="2.5.3" />
|
|
|
|
|
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.3" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Using Include="Xunit" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\SSPCTester.Logic\SSPCTester.Logic.csproj" />
|
|
|
|
|
<ProjectReference Include="..\SSPCTester.Devices\SSPCTester.Devices.csproj" />
|
2026-07-01 20:04:27 +08:00
|
|
|
<ProjectReference Include="..\Driver\PCIE8586\DriverIntegrationPackage\src\Pcie8586.Driver\Pcie8586.Driver.csproj" />
|
2026-06-30 12:10:29 +08:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2026-07-01 20:04:27 +08:00
|
|
|
<None Include="..\Driver\IT8702P\PCIE8586\DriverIntegrationPackage\src\Pcie8586.Driver\bin\x64\$(Configuration)\net8.0\Pcie8586.Driver.dll"
|
2026-06-30 12:10:29 +08:00
|
|
|
Link="Pcie8586.Driver.dll"
|
2026-07-01 20:04:27 +08:00
|
|
|
Condition="Exists('..\Driver\IT8702P\PCIE8586\DriverIntegrationPackage\src\Pcie8586.Driver\bin\x64\$(Configuration)\net8.0\Pcie8586.Driver.dll')">
|
2026-06-30 12:10:29 +08:00
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|