2023-04-02 00:57:07 +08: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 19:29:06 +08:00
|
|
|
|
<RootNamespace>WinFormSample</RootNamespace>
|
2023-04-02 00:57:07 +08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\src\NTwain\NTwain.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-04-05 19:29:06 +08:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<None Update="platforms\qwindows.dll">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2023-04-06 06:53:55 +08:00
|
|
|
|
<None Update="platforms\TWAINDSM.dll">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</None>
|
2023-04-05 19:29:06 +08:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2023-04-02 00:57:07 +08:00
|
|
|
|
</Project>
|