Skip to content

Commit

Permalink
#491 Removed support for .net framework 2.0, please use version 3.3 (…
Browse files Browse the repository at this point in the history
…tesseract 3.05.02) if required.
  • Loading branch information
charlesw committed Oct 12, 2019
1 parent 88dc349 commit 6a3a9eb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 8 deletions.
5 changes: 3 additions & 2 deletions ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
### Version 4.1.0

* Updated to Tesseract 4.1.0
* Updated to Tesseract 4.1.0 [Issue 321](https://github.com/charlesw/tesseract/issues/321)
* Requires VC++ 2019 runtime
* Removed support for .net framework 2.0 [491](https://github.com/charlesw/tesseract/issues/491)

#### Known issues

Expand All @@ -10,7 +11,7 @@

### Version 4.0.0 (never officially released)

* Updated to Tesseract 4.0.0
* Updated to Tesseract 4.0.0 [Issue 321](https://github.com/charlesw/tesseract/issues/321)
* Requires VC++ 2017 runtime

### Version 3.2.0
Expand Down
7 changes: 1 addition & 6 deletions src/Tesseract/Tesseract.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net45;net40;net20</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net45;net40</TargetFrameworks>
</PropertyGroup>
<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
Expand All @@ -21,11 +21,6 @@
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
</PropertyGroup>

<!-- .NET 2.0 references, compilation flags and build options -->
<PropertyGroup Condition=" '$(TargetFramework)' == 'net20'">
<DefineConstants>NET20;NETFULL</DefineConstants>
</PropertyGroup>

<!-- .NET 4.0 references, compilation flags and build options -->
<PropertyGroup Condition=" '$(TargetFramework)' == 'net40'">
<DefineConstants>NET40;NETFULL</DefineConstants>
Expand Down

0 comments on commit 6a3a9eb

Please sign in to comment.