| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <OutputType>Exe</OutputType>
- <TargetFramework>net8.0-windows</TargetFramework>
- <Nullable>disable</Nullable>
- <ImplicitUsings>disable</ImplicitUsings>
- <Platforms>x64</Platforms>
- <PlatformTarget>x64</PlatformTarget>
- <AssemblyName>SelfTest</AssemblyName>
- <RootNamespace>AutoFocusTool</RootNamespace>
- <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="System.IO.Ports" Version="8.0.0" />
- </ItemGroup>
- <ItemGroup>
- <!-- 链接主工程的硬件层源文件(不含 WPF 依赖的 ImageConverter) -->
- <Compile Include="..\Camera\MVCAPI.cs" />
- <Compile Include="..\Camera\CapInfoStruct.cs" />
- <Compile Include="..\Camera\Camera.cs" />
- <Compile Include="..\Serial\Protocol.cs" />
- <Compile Include="..\Serial\SerialMotor.cs" />
- <Compile Include="..\Serial\HouseMotor.cs" />
- <Compile Include="..\Devices\HouseDevice.cs" />
- <Compile Include="..\Devices\DeviceScanner.cs" />
- <Compile Include="..\Imaging\Sharpness.cs" />
- <Compile Include="..\Calib\CalibrationFile.cs" />
- <Compile Include="..\Calib\CalibrationManager.cs" />
- <Compile Include="Diag.cs" />
- <Compile Include="Program.cs" />
- </ItemGroup>
- <ItemGroup>
- <!-- 相机原生 DLL 复制到输出目录 -->
- <None Include="..\DependFile\ccd\*.dll">
- <Link>DependFile\ccd\%(Filename)%(Extension)</Link>
- <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
- </None>
- </ItemGroup>
- </Project>
|