mirror of
https://github.com/soukoku/ntwain.git
synced 2025-06-28 15:28:06 +08:00
31 lines
894 B
XML
31 lines
894 B
XML
![]() |
<Project Sdk="Microsoft.NET.Sdk">
|
|||
|
|
|||
|
<PropertyGroup>
|
|||
|
<OutputType>WinExe</OutputType>
|
|||
|
<PlatformTarget>x86</PlatformTarget>
|
|||
|
<TargetFramework>net7.0-windows</TargetFramework>
|
|||
|
<Nullable>enable</Nullable>
|
|||
|
<UseWindowsForms>true</UseWindowsForms>
|
|||
|
</PropertyGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<ProjectReference Include="..\..\src\NTwain\NTwain.csproj" />
|
|||
|
</ItemGroup>
|
|||
|
|
|||
|
<ItemGroup>
|
|||
|
<None Update="appsettings.Development.json">
|
|||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
</None>
|
|||
|
<None Update="appsettings.json">
|
|||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
</None>
|
|||
|
<None Update="runtimes\win-x86\native\TWAINDSM.dll">
|
|||
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|||
|
</None>
|
|||
|
</ItemGroup>
|
|||
|
</Project>
|