mirror of
https://github.com/soukoku/ntwain.git
synced 2025-11-24 08:47:06 +08:00
22 lines
557 B
XML
22 lines
557 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net472</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<Nullable>enable</Nullable>
|
|
<LangVersion>12</LangVersion>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Magick.NET-Q8-AnyCPU" Version="14.9.1" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\NTwain\NTwain.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|