| 12345678910111213141516171819202122 |
- <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>CalibTest</AssemblyName>
- <RootNamespace>AutoFocusTool</RootNamespace>
- <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
- </PropertyGroup>
- <ItemGroup>
- <Compile Include="..\Imaging\Sharpness.cs" />
- <Compile Include="..\Imaging\WellDetector.cs" />
- <Compile Include="..\Imaging\ExposureMeter.cs" />
- <Compile Include="CalibTest.cs" />
- </ItemGroup>
- </Project>
|