| 123456789101112131415161718192021 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFramework>net6.0-windows</TargetFramework>
- <IsPackable>false</IsPackable>
- <Nullable>disable</Nullable>
- <LangVersion>latest</LangVersion>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
- <PackageReference Include="xunit" Version="2.6.2" />
- <PackageReference Include="xunit.runner.visualstudio" Version="2.5.4" />
- </ItemGroup>
- <ItemGroup>
- <ProjectReference Include="..\ivf_tl_ControlHost\ivf_tl_ControlHost.csproj" />
- <ProjectReference Include="..\IvfTl.Hardware\IvfTl.Hardware.csproj" />
- </ItemGroup>
- <ItemGroup>
- <!-- operate 的纯逻辑 MjpegFrameParser 链入源码做单测(operate 主工程是 WPF 无单测工程)。 -->
- <Compile Include="..\..\ivf_tl_Operate\Debug\MjpegFrameParser.cs" Link="Linked\MjpegFrameParser.cs" />
- </ItemGroup>
- </Project>
|