mirror of
https://github.com/soukoku/ntwain.git
synced 2025-09-19 18:27:56 +08:00
17 lines
423 B
XML
17 lines
423 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFrameworks>net462;net7.0</TargetFrameworks>
|
|
<Nullable>enable</Nullable>
|
|
<PlatformTarget>x86</PlatformTarget>
|
|
<RootNamespace>SampleConsole</RootNamespace>
|
|
<LangVersion>11</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\NTwain\NTwain.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|