2018-11-10 16:34:57 -05:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
2018-11-14 06:04:35 -05:00
|
|
|
<RootNamespace>ConsoleApp</RootNamespace>
|
2018-11-15 18:14:26 -05:00
|
|
|
<LangVersion>7.1</LangVersion>
|
2018-11-10 16:34:57 -05:00
|
|
|
</PropertyGroup>
|
|
|
|
|
2018-11-13 22:03:35 -05:00
|
|
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
|
|
|
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
|
|
|
<Prefer32Bit>true</Prefer32Bit>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2018-11-10 16:34:57 -05:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\..\src\NTwain\NTwain.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
</Project>
|