2023-04-01 12:57:07 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
2025-11-12 07:06:25 -05:00
|
|
|
|
<TargetFramework>net10.0-windows7.0</TargetFramework>
|
2023-04-01 12:57:07 -04:00
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
2025-11-20 20:46:15 -05:00
|
|
|
|
<RootNamespace>WinFormSample</RootNamespace>
|
|
|
|
|
|
<ApplicationHighDpiMode>PerMonitorV2</ApplicationHighDpiMode>
|
|
|
|
|
|
<ApplicationVisualStyles>true</ApplicationVisualStyles>
|
2023-04-01 12:57:07 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2023-04-08 18:38:51 -04:00
|
|
|
|
<ItemGroup>
|
2025-11-20 20:46:15 -05:00
|
|
|
|
<PackageReference Include="Magick.NET-Q8-x86" Version="14.9.1" />
|
2023-04-08 18:38:51 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2023-04-01 12:57:07 -04:00
|
|
|
|
<ItemGroup>
|
2025-11-20 20:46:15 -05:00
|
|
|
|
<ProjectReference Include="..\..\src\NTwain\NTwain.csproj" />
|
2023-04-01 12:57:07 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2023-04-05 07:29:06 -04:00
|
|
|
|
<ItemGroup>
|
2025-11-20 20:46:15 -05:00
|
|
|
|
<None Update="platforms\qwindows.dll">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
|
|
|
|
|
<None Update="runtimes\win-x86\native\TWAINDSM.dll">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2023-04-05 07:29:06 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2023-04-01 12:57:07 -04:00
|
|
|
|
</Project>
|