| 1234567891011121314151617181920 |
- <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>ToPng</AssemblyName>
- <RootNamespace>AutoFocusTool</RootNamespace>
- <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
- </PropertyGroup>
- <ItemGroup>
- <PackageReference Include="System.Drawing.Common" Version="8.0.0" />
- </ItemGroup>
- <ItemGroup>
- <Compile Include="..\Imaging\WellDetector.cs" />
- <Compile Include="ToPng.cs" />
- </ItemGroup>
- </Project>
|