2023-04-01 12:57:07 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
|
<TargetFramework>net6.0-windows</TargetFramework>
|
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
|
<PlatformTarget>x86</PlatformTarget>
|
2023-04-05 07:29:06 -04:00
|
|
|
|
<RootNamespace>WinFormSample</RootNamespace>
|
2023-04-01 12:57:07 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
2023-04-08 18:38:51 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<PackageReference Include="Magick.NET-Q8-x86" Version="13.0.1" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2023-04-01 12:57:07 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\..\src\NTwain\NTwain.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2023-04-05 07:29:06 -04:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<None Update="platforms\qwindows.dll">
|
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2023-04-08 18:38:51 -04:00
|
|
|
|
<None Update="runtimes\win-x86\native\TWAINDSM.dll">
|
2023-04-05 18:53:55 -04:00
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
|
</None>
|
2023-04-05 07:29:06 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2023-04-01 12:57:07 -04:00
|
|
|
|
</Project>
|