SmokeTest.csproj 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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>SmokeTest</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\CalibrationManager.cs" />
  30. <Compile Include="SmokeTest.cs" />
  31. </ItemGroup>
  32. <ItemGroup>
  33. <None Include="..\DependFile\ccd\*.dll">
  34. <Link>DependFile\ccd\%(Filename)%(Extension)</Link>
  35. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  36. </None>
  37. </ItemGroup>
  38. </Project>