| 1234567891011121314151617181920212223242526 |
- <Project Sdk="Microsoft.NET.Sdk">
- <!--
- 统一硬件访问层 (HAL) 程序集 — M1-03 落地。
- 依据:项目文档/需求文档/13-统一硬件访问层接口定义.md §3。
- 代码隔离原则(01 §5):HAL 用接口隔离老代码,内部包装现有 Channel/ComBin/Camera,不改其内部逻辑。
- 目标框架与 ivf_tl_Com 一致(net6.0)。引用相机/串口/Com/Entity 各类库以包装其具体类型。
- -->
- <PropertyGroup>
- <TargetFramework>net6.0</TargetFramework>
- <ImplicitUsings>enable</ImplicitUsings>
- <Nullable>disable</Nullable>
- <Platforms>AnyCPU;x64</Platforms>
- <RootNamespace>IvfTl.Hardware</RootNamespace>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\ivf_tl_CameraHelper\ivf_tl_CameraHelper.csproj" />
- <ProjectReference Include="..\ivf_tl_SerialHelper\ivf_tl_SerialHelper.csproj" />
- <ProjectReference Include="..\ivf_tl_Entity\ivf_tl_Entity.csproj" />
- <ProjectReference Include="..\ivf_tl_UtilHelper\ivf_tl_UtilHelper.csproj" />
- <!-- D1-10/D3-04:control 侧操作日志(审计埋点)——SerialChannelImpl 写E方/配置变更收口。 -->
- <ProjectReference Include="..\..\..\Aivfo.OperationLog\Aivfo.OperationLog.csproj" />
- </ItemGroup>
- </Project>
|