2021-04-21 08:18:26 -04:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
|
|
|
|
|
<PropertyGroup>
|
2021-04-21 08:26:19 -04:00
|
|
|
|
<PackageId>NTwain</PackageId>
|
|
|
|
|
<Version>4.0.0</Version>
|
|
|
|
|
<Description>Library containing the TWAIN API for dotnet.</Description>
|
2021-04-21 11:39:37 -04:00
|
|
|
|
<TargetFrameworks>net45;netcoreapp3.1;net5.0-windows</TargetFrameworks>
|
2021-04-21 08:26:19 -04:00
|
|
|
|
<PackageProjectUrl>https://github.com/soukoku/ntwain</PackageProjectUrl>
|
|
|
|
|
<PackageTags>twain scan</PackageTags>
|
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
|
<PackageIconUrl>https://github.com/soukoku/ntwain/blob/master/Scanner-Icon.png?raw=true</PackageIconUrl>
|
|
|
|
|
<RepositoryUrl>https://github.com/soukoku/ntwain</RepositoryUrl>
|
|
|
|
|
<RepositoryType>GIT</RepositoryType>
|
|
|
|
|
<NeutralLanguage>en-US</NeutralLanguage>
|
|
|
|
|
<!--<Copyright>Eugene Wang 2012</Copyright>-->
|
|
|
|
|
<Authors>Eugene Wang</Authors>
|
|
|
|
|
<AssemblyVersion>4.0.0.0</AssemblyVersion>
|
|
|
|
|
<FileVersion>4.0.0.0</FileVersion>
|
|
|
|
|
<LangVersion>7.1</LangVersion>
|
2021-04-21 11:39:37 -04:00
|
|
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
|
|
|
<UseWPF>true</UseWPF>
|
2021-04-21 08:18:26 -04:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2021-04-21 08:26:19 -04:00
|
|
|
|
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
|
|
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
|
|
|
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
|
|
|
|
|
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
|
|
|
|
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
|
|
|
|
<AllowedOutputExtensionsInPackageBuildOutputFolder>$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
|
2021-04-25 09:36:21 -04:00
|
|
|
|
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
|
2021-04-21 08:26:19 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2021-04-21 13:05:25 -04:00
|
|
|
|
<!--<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
2021-04-21 08:18:26 -04:00
|
|
|
|
<PackageReference Include="System.Drawing.Common">
|
|
|
|
|
<Version>5.0.2</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="System.Security.Permissions">
|
|
|
|
|
<Version>5.0.0</Version>
|
|
|
|
|
</PackageReference>
|
2021-04-21 13:05:25 -04:00
|
|
|
|
</ItemGroup>-->
|
|
|
|
|
|
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
|
|
|
|
|
<PackageReference Include="System.Text.Encoding.CodePages">
|
|
|
|
|
<Version>5.0.0</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0-windows'">
|
|
|
|
|
<PackageReference Include="System.Text.Encoding.CodePages">
|
|
|
|
|
<Version>5.0.0</Version>
|
|
|
|
|
</PackageReference>
|
2021-04-21 08:18:26 -04:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|