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