Calibrate.csproj 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <OutputType>Exe</OutputType>
  4. <TargetFramework>net8.0-windows</TargetFramework>
  5. <Nullable>disable</Nullable>
  6. <ImplicitUsings>disable</ImplicitUsings>
  7. <Platforms>x64</Platforms>
  8. <PlatformTarget>x64</PlatformTarget>
  9. <AssemblyName>Calibrate</AssemblyName>
  10. <RootNamespace>AutoFocusTool</RootNamespace>
  11. <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
  12. </PropertyGroup>
  13. <ItemGroup>
  14. <PackageReference Include="System.IO.Ports" Version="8.0.0" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <Compile Include="..\Camera\MVCAPI.cs" />
  18. <Compile Include="..\Camera\CapInfoStruct.cs" />
  19. <Compile Include="..\Camera\Camera.cs" />
  20. <Compile Include="..\Serial\Protocol.cs" />
  21. <Compile Include="..\Serial\SerialMotor.cs" />
  22. <Compile Include="..\Serial\HouseMotor.cs" />
  23. <Compile Include="..\Devices\HouseDevice.cs" />
  24. <Compile Include="..\Devices\DeviceScanner.cs" />
  25. <Compile Include="..\Imaging\Sharpness.cs" />
  26. <Compile Include="..\Imaging\WellDetector.cs" />
  27. <Compile Include="..\Imaging\ExposureMeter.cs" />
  28. <Compile Include="..\Calib\CalibrationFile.cs" />
  29. <Compile Include="..\Calib\CalibrationEngine.cs" />
  30. <Compile Include="..\SelfTest\Diag.cs" />
  31. <Compile Include="Calibrate.cs" />
  32. </ItemGroup>
  33. <ItemGroup>
  34. <None Include="..\DependFile\ccd\*.dll">
  35. <Link>DependFile\ccd\%(Filename)%(Extension)</Link>
  36. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  37. </None>
  38. </ItemGroup>
  39. </Project>