OperateHwTest.csproj 665 B

12345678910111213141516171819
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net6.0-windows</TargetFramework>
  5. <Nullable>disable</Nullable>
  6. <Platforms>x64</Platforms>
  7. <PlatformTarget>x64</PlatformTarget>
  8. <AssemblyName>OperateHwTest</AssemblyName>
  9. <UseWPF>true</UseWPF>
  10. </PropertyGroup>
  11. <ItemGroup>
  12. <!-- 引用 operate 真实业务工程:硬件访问层 ComBin/SerialBin/Camera 在 Entity;HttpHelper/LogHelper 在 Services -->
  13. <ProjectReference Include="..\ivf_tl_Entity\ivf_tl_Entity.csproj" />
  14. <ProjectReference Include="..\ivf_tl_Services\ivf_tl_Services.csproj" />
  15. </ItemGroup>
  16. </Project>