TeamAAS.Motion.csproj 1.2 KB

123456789101112131415161718192021222324252627282930
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFramework>net48</TargetFramework>
  4. <UseWPF>true</UseWPF>
  5. <Platforms>x64</Platforms>
  6. <PlatformTarget>x64</PlatformTarget>
  7. <LangVersion>latest</LangVersion>
  8. <AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
  9. <RootNamespace>TeamAAS.Motion</RootNamespace>
  10. <AssemblyName>TeamAAS.Motion</AssemblyName>
  11. </PropertyGroup>
  12. <ItemGroup>
  13. <PackageReference Include="OpenCvSharp4" Version="4.13.0.20260627" />
  14. <PackageReference Include="OpenCvSharp4.runtime.win" Version="4.13.0.20260627" />
  15. <PackageReference Include="PropertyGridLib" Version="1.2.0" />
  16. <PackageReference Include="System.Text.Json" Version="10.0.0" />
  17. </ItemGroup>
  18. <!-- 运动控制设备内核(用户分层·设备内核第5项):
  19. 统一契约在 TeamAAS.Global.Devices(IMotionCard/IIOCard);
  20. 本工程提供 设备管理器 + 配置 + 调试页面 + 仿真实现;
  21. 品牌适配(雷赛/固高/IMC60G-E/GR20T-ECT)在 Devices\Brand\ 下实现 IMotionCard/IIOCard 后注册即可。 -->
  22. <ItemGroup>
  23. <ProjectReference Include="..\..\TeamAAS.Base\TeamAAS.Global\TeamAAS.Global.csproj" />
  24. </ItemGroup>
  25. </Project>