mirror of
https://github.com/soukoku/ntwain.git
synced 2025-07-15 17:19:07 +08:00
Remove netcore builds for now.
This commit is contained in:
parent
a4524299e9
commit
76d659f689
@ -5,6 +5,7 @@ VisualStudioVersion = 16.0.31205.134
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "common", "common", "{4CE0B9ED-2CD1-440F-B4EC-35ECA6D61EFE}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
Build.cmd = Build.cmd
|
||||
src\Directory.Build.props = src\Directory.Build.props
|
||||
LICENSE.txt = LICENSE.txt
|
||||
README.md = README.md
|
||||
|
@ -13,7 +13,7 @@ V4 of this lib has these goals:
|
||||
* Targets latest TWAIN version (2.4 as of this writing).
|
||||
* Supports all the TWAIN functions in the spec (directly or through dotnet wrapper).
|
||||
* Works with both 32 or 64 bit data sources as appropriate for the 32 or 64 bit apps.
|
||||
* Supports full framework (4.5+) and netcore (3.1+) apps.
|
||||
* Supports full framework (4.5+) and netcore apps.
|
||||
|
||||
## Using the lib
|
||||
|
||||
|
@ -25,6 +25,7 @@
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup Condition="'$(Configuration)'=='Release'">
|
||||
<ContinuousIntegrationBuild>true</ContinuousIntegrationBuild>
|
||||
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
||||
<PublishRepositoryUrl>true</PublishRepositoryUrl>
|
||||
<EmbedUntrackedSources>true</EmbedUntrackedSources>
|
||||
|
@ -3,7 +3,7 @@
|
||||
<PropertyGroup>
|
||||
<PackageId>NTwain</PackageId>
|
||||
<Description>Library containing the TWAIN API for dotnet.</Description>
|
||||
<TargetFrameworks>net45;netstandard2.0;netcoreapp3.1;net5.0</TargetFrameworks>
|
||||
<TargetFrameworks>net45;netstandard2.0;</TargetFrameworks>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
@ -11,24 +11,8 @@
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'">
|
||||
<!--<PackageReference Include="System.Drawing.Common">
|
||||
<Version>5.0.2</Version>
|
||||
</PackageReference>-->
|
||||
<PackageReference Include="System.Text.Encoding.CodePages">
|
||||
<Version>5.0.0</Version>
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp3.1'">
|
||||
<PackageReference Include="System.Text.Encoding.CodePages">
|
||||
<Version>5.0.0</Version>
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup Condition="'$(TargetFramework)' == 'net5.0'">
|
||||
<PackageReference Include="System.Text.Encoding.CodePages">
|
||||
<Version>5.0.0</Version>
|
||||
</PackageReference>
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
Loading…
Reference in New Issue
Block a user