WellSpacing.csproj 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. <UseWPF>true</UseWPF>
  8. <Platforms>x64</Platforms>
  9. <PlatformTarget>x64</PlatformTarget>
  10. <AssemblyName>WellSpacing</AssemblyName>
  11. <RootNamespace>AutoFocusTool</RootNamespace>
  12. <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
  13. </PropertyGroup>
  14. <ItemGroup>
  15. <PackageReference Include="System.IO.Ports" Version="8.0.0" />
  16. <PackageReference Include="System.Drawing.Common" Version="8.0.0" />
  17. </ItemGroup>
  18. <ItemGroup>
  19. <Compile Include="..\Serial\Protocol.cs" />
  20. <Compile Include="..\Serial\SerialMotor.cs" />
  21. <Compile Include="..\Serial\HouseMotor.cs" />
  22. <Compile Include="..\Camera\MVCAPI.cs" />
  23. <Compile Include="..\Camera\CapInfoStruct.cs" />
  24. <Compile Include="..\Camera\Camera.cs" />
  25. <Compile Include="..\Imaging\WellDetector.cs" />
  26. <Compile Include="..\Imaging\ImageConverter.cs" />
  27. <Compile Include="WellSpacing.cs" />
  28. </ItemGroup>
  29. <ItemGroup>
  30. <None Include="..\DependFile\ccd\*.dll">
  31. <Link>DependFile\ccd\%(Filename)%(Extension)</Link>
  32. <CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
  33. </None>
  34. </ItemGroup>
  35. </Project>