Skip to content

Commit bee6a50

Browse files
committed
[RELEASE] iText 7 pdfHTML - 3.0.3
https://github.com/itext/i7n-pdfhtml/releases/tag/3.0.3 * release/3.0.3: [RELEASE] 3.0.3-SNAPSHOT -> 3.0.3 Remove fixed todo Fix wrong todos number Update Portable.BouncyCastle version to 1.8.9 [RELEASE] Update dependency versions Add support to utf-8 image format in svg Update cmp Support word-break property Update cmp-s Update cmp-s after span wrapping support Fix test accroding to new log message in case of problems with data image Add test for collaboration between radiobuttons and page-counter Update ToDo remarks Add missing copyright headers Add support of pages target-counter(s). Finalize whole target-counter logic Add missing copyright headers Implement non-page(s) target-counter(s) and fix counter bad perfomance Add LinkedList.getLast method analog to extensions class Remove unused references Update netstandard version to 2.0 Update autoported files Update cmp-s Support overflow-wrap Update CONTRIBUTING.md with latest information and links Divide the CssUtils class into several classes Remove "free" word from method name Get rid of using "LicenseKeyProductFeature" in ReflectionUtils class Add new test for descender/ascender calculations Add new test for absolute positioning Make mutable final sets unmodifable Add BatchConversionTest Add missing copyright headers Implement target-counter for page Link tests with the jira issue Fix body background size Add TODO references to the tests in com.itextpdf.html2pdf.css.w3c.css_backgrounds.bg_size.vector Test cmp update and new test added Add supporting SvgCssContext and add minor improvements Add new tests illustrating problem of text-decoration-color effect on nested elements Add test to show that negative paddings processed incorrectly Update port-hash Update port-hash after release [RELEASE] Update licensekey dependency Update ToDo remark in CssOpacityTest#innerOpacityTest Update port-hash after release [RELEASE] Update dependency versions Add some minor improvements to w3c tests
2 parents 5fb1b0f + 66519a3 commit bee6a50

File tree

609 files changed

+13844
-1055
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

609 files changed

+13844
-1055
lines changed

CONTRIBUTING.md

+12-16
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,7 @@ Before you submit your pull request consider the following guidelines:
6868
* Verify that your proposed change hasn't already been addressed in the develop branch.
6969
* Don't send a separate pull request for every single file you change.
7070
* Please sign the [iText Contributor License Agreement (iCLA)](#cla) before sending pull
71-
requests for any change of more than 20 significant lines of code (we're not counting curly braces and other syntactical sugar).
72-
We cannot accept code without this agreement.
71+
requests. We cannot accept code without this agreement.
7372
* Fork the iText repository on GitHub.
7473
* Clone your iText fork to your local machine.
7574
* Make your changes, **including appropriate test cases**.
@@ -100,8 +99,7 @@ To ensure consistency throughout the source code, keep these rules in mind as yo
10099

101100
* We develop in Java first, and then port to .NET, so code submissions in Java are preferred.
102101
Nevertheless this shouldn't stop you from making a good pull request to the .NET port.
103-
* All Java code **must** be Java 7. Sorry, no lambda expressions or other Java 8 language features.
104-
* All features or bug fixes **must be tested** by one or more [unit tests][unit-testing].
102+
* All features or bug fixes **must be tested** by one or more unit tests.
105103
* All public API methods **must be documented** with JavaDoc. To see how we document our APIs, please check
106104
out the existing [javadocs][javadocs].
107105
* We follow the rules contained in
@@ -151,8 +149,7 @@ reference JIRA or GitHub issues that this commit **Closes**.
151149

152150
## <a name="cla">Signing the iCLA</a>
153151

154-
Please sign the **iText Contributor License Agreement (iCLA)** before sending pull requests. For any larger code
155-
changes (more than 20 lines of significant code) to be accepted, the iCLA must be signed. It's a quick process, we promise!
152+
Please sign the [**iText Contributor License Agreement (iCLA)**][cla] before sending pull requests. For any code changes to be accepted, the iCLA must be signed. It's a quick process, we promise!
156153

157154
We'll need you to [(digitally) sign and then email, fax or mail the form][cla].
158155

@@ -165,18 +162,17 @@ We use the [Stack Exchange][stackoverflow] network for free support and [GitHub]
165162
* StackExchange: [http://stackexchange.com/legal](http://stackexchange.com/legal)
166163
* Github: [https://help.github.com/articles/github-terms-of-service/](https://help.github.com/articles/github-terms-of-service/)
167164

168-
[cla]: http://itextpdf.com/policy
165+
[cla]: https://itextpdf.com/en/how-buy/legal/itext-contributor-license-agreement
169166
[coc]: CODE_OF_CONDUCT.md
170-
[github]: https://github.com/itext/itext7
171-
[java-style-guide]: http://www.oracle.com/technetwork/java/codeconvtoc-136057.html
172-
[javadocs]: http://itextpdf.com/api
173-
[pull]: https://github.com/itext/itext7/pulls
167+
[github]: https://github.com/itext/i7n-pdfhtml
168+
[java-style-guide]: https://www.oracle.com/technetwork/java/codeconvtoc-136057.html
169+
[javadocs]: https://itextpdf.com/api
170+
[pull]: https://github.com/itext/i7n-pdfhtml/pulls
174171
[sscce]: http://sscce.org/
175-
[stackoverflow]: http://stackoverflow.com/questions/tagged/itext7
176-
[good-questions]: http://stackoverflow.com/help/how-to-ask
177-
[mcve]: http://stackoverflow.com/help/mcve
178-
[support]: http://itextpdf.com/support
179-
[unit-testing]: http://junit.org/
172+
[stackoverflow]: https://stackoverflow.com/questions/tagged/itext7
173+
[good-questions]: https://stackoverflow.com/help/how-to-ask
174+
[mcve]: https://stackoverflow.com/help/mcve
175+
[support]: https://itextpdf.com/support
180176
[git-commit]: https://chris.beams.io/posts/git-commit/
181177
[git-commit-separate]: https://chris.beams.io/posts/git-commit/#separate
182178
[git-commit-limit-50]: https://chris.beams.io/posts/git-commit/#limit-50

Jenkinsfile

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@
44
def repoName = "pdfHtml"
55
def dependencyRegex = "itextcore"
66
def solutionFile = "itext.html2pdf.sln"
7+
def csprojFramework = "netcoreapp2.0"
78

8-
automaticDotnetBuild(repoName, dependencyRegex, solutionFile)
9+
automaticDotnetBuild(repoName, dependencyRegex, solutionFile, csprojFramework)

doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ DOXYFILE_ENCODING = UTF-8
3232
# title of most generated pages and in a few other places.
3333
# The default value is: My Project.
3434

35-
PROJECT_NAME = "pdfHTML 3.0.2 API"
35+
PROJECT_NAME = "pdfHTML 3.0.3 API"
3636

3737
# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
3838
# could be handy for archiving the generated documentation or if some version

itext.tests/itext.html2pdf.tests/Properties/AssemblyInfo.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515

1616
[assembly: Guid("ae4e5743-0665-4705-9a33-07ea57cdd269")]
1717

18-
[assembly: AssemblyVersion("3.0.2.0")]
19-
[assembly: AssemblyFileVersion("3.0.2.0")]
20-
[assembly: AssemblyInformationalVersion("3.0.2")]
18+
[assembly: AssemblyVersion("3.0.3.0")]
19+
[assembly: AssemblyFileVersion("3.0.3.0")]
20+
[assembly: AssemblyInformationalVersion("3.0.3")]
2121

22-
#if !NETSTANDARD1_6
22+
#if !NETSTANDARD2_0
2323
[assembly: NUnit.Framework.Timeout(300000)]
2424
#endif

itext.tests/itext.html2pdf.tests/itext.html2pdf.tests.csproj

+21-21
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4-
<Import Project="$(SolutionDir)\packages\itext7.pdftest.7.1.13\build\itext7.pdftest.props" Condition="Exists('$(SolutionDir)\packages\itext7.pdftest.7.1.13\build\itext7.pdftest.props')" />
4+
<Import Project="$(SolutionDir)\packages\itext7.pdftest.7.1.14\build\itext7.pdftest.props" Condition="Exists('$(SolutionDir)\packages\itext7.pdftest.7.1.14\build\itext7.pdftest.props')" />
55
<PropertyGroup>
66
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
77
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
@@ -51,67 +51,67 @@
5151
<Project>{e2828ac4-3c63-4b2a-b5ad-5f98862775be}</Project>
5252
<Name>itext.forms</Name>
5353
</ProjectReference>
54-
<Reference Include="itext.forms, Version=7.1.13.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.forms\itext.forms.csproj')">
55-
<HintPath>$(SolutionDir)\packages\itext7.7.1.13\lib\net40\itext.forms.dll</HintPath>
54+
<Reference Include="itext.forms, Version=7.1.14.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.forms\itext.forms.csproj')">
55+
<HintPath>$(SolutionDir)\packages\itext7.7.1.14\lib\net40\itext.forms.dll</HintPath>
5656
</Reference>
5757
<ProjectReference Include="..\..\..\itextcore\itext\itext.hyph\itext.hyph.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.hyph\itext.hyph.csproj')">
5858
<Project>{56137079-541A-425A-AB97-43AF63793C97}</Project>
5959
<Name>itext.hyph</Name>
6060
</ProjectReference>
61-
<Reference Include="itext.hyph, Version=7.1.13.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.hyph\itext.hyph.csproj')">
62-
<HintPath>$(SolutionDir)\packages\itext7.hyph.7.1.13\lib\net40\itext.hyph.dll</HintPath>
61+
<Reference Include="itext.hyph, Version=7.1.14.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.hyph\itext.hyph.csproj')">
62+
<HintPath>$(SolutionDir)\packages\itext7.hyph.7.1.14\lib\net40\itext.hyph.dll</HintPath>
6363
</Reference>
6464
<ProjectReference Include="..\..\..\itextcore\itext\itext.io\itext.io.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.io\itext.io.csproj')">
6565
<Project>{cee5e7e1-1bf0-4be1-9941-903262ce2f83}</Project>
6666
<Name>itext.io</Name>
6767
</ProjectReference>
68-
<Reference Include="itext.io, Version=7.1.13.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.io\itext.io.csproj')">
69-
<HintPath>$(SolutionDir)\packages\itext7.7.1.13\lib\net40\itext.io.dll</HintPath>
68+
<Reference Include="itext.io, Version=7.1.14.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.io\itext.io.csproj')">
69+
<HintPath>$(SolutionDir)\packages\itext7.7.1.14\lib\net40\itext.io.dll</HintPath>
7070
</Reference>
7171
<ProjectReference Include="..\..\..\itextcore\itext\itext.kernel\itext.kernel.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.kernel\itext.kernel.csproj')">
7272
<Project>{4e7819e8-7555-4e2e-9a01-d8718a2cfdda}</Project>
7373
<Name>itext.kernel</Name>
7474
</ProjectReference>
75-
<Reference Include="BouncyCastle.Crypto, Version=1.8.5.0, Culture=neutral, PublicKeyToken=0e99375e54769942" Condition="!Exists('..\..\..\itextcore\itext\itext.kernel\itext.kernel.csproj')">
76-
<HintPath>$(SolutionDir)\packages\Portable.BouncyCastle.1.8.5\lib\net40\BouncyCastle.Crypto.dll</HintPath>
75+
<Reference Include="BouncyCastle.Crypto, Version=1.8.9.0, Culture=neutral, PublicKeyToken=0e99375e54769942" Condition="!Exists('..\..\..\itextcore\itext\itext.kernel\itext.kernel.csproj')">
76+
<HintPath>$(SolutionDir)\packages\Portable.BouncyCastle.1.8.9\lib\net40\BouncyCastle.Crypto.dll</HintPath>
7777
</Reference>
78-
<Reference Include="itext.kernel, Version=7.1.13.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.kernel\itext.kernel.csproj')">
79-
<HintPath>$(SolutionDir)\packages\itext7.7.1.13\lib\net40\itext.kernel.dll</HintPath>
78+
<Reference Include="itext.kernel, Version=7.1.14.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.kernel\itext.kernel.csproj')">
79+
<HintPath>$(SolutionDir)\packages\itext7.7.1.14\lib\net40\itext.kernel.dll</HintPath>
8080
</Reference>
8181
<ProjectReference Include="..\..\..\itextcore\itext\itext.layout\itext.layout.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.layout\itext.layout.csproj')">
8282
<Project>{42173642-db52-44d3-9883-3e34c65c53bc}</Project>
8383
<Name>itext.layout</Name>
8484
</ProjectReference>
85-
<Reference Include="itext.layout, Version=7.1.13.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.layout\itext.layout.csproj')">
86-
<HintPath>$(SolutionDir)\packages\itext7.7.1.13\lib\net40\itext.layout.dll</HintPath>
85+
<Reference Include="itext.layout, Version=7.1.14.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.layout\itext.layout.csproj')">
86+
<HintPath>$(SolutionDir)\packages\itext7.7.1.14\lib\net40\itext.layout.dll</HintPath>
8787
</Reference>
8888
<ProjectReference Include="..\..\..\itextcore\itext\itext.pdfa\itext.pdfa.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.pdfa\itext.pdfa.csproj')">
8989
<Project>{9fc2f0b3-a8d2-46da-8724-72e00e67a8fa}</Project>
9090
<Name>itext.pdfa</Name>
9191
</ProjectReference>
92-
<Reference Include="itext.pdfa, Version=7.1.13.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.pdfa\itext.pdfa.csproj')">
93-
<HintPath>$(SolutionDir)\packages\itext7.7.1.13\lib\net40\itext.pdfa.dll</HintPath>
92+
<Reference Include="itext.pdfa, Version=7.1.14.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.pdfa\itext.pdfa.csproj')">
93+
<HintPath>$(SolutionDir)\packages\itext7.7.1.14\lib\net40\itext.pdfa.dll</HintPath>
9494
</Reference>
9595
<ProjectReference Include="..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.csproj')">
9696
<Project>{f9880dc4-f015-4413-af86-66d0e9512774}</Project>
9797
<Name>itext.pdftest</Name>
9898
</ProjectReference>
99-
<Reference Include="itext.pdftest, Version=7.1.13.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.csproj')">
100-
<HintPath>$(SolutionDir)\packages\itext7.pdftest.7.1.13\lib\net40\itext.pdftest.dll</HintPath>
99+
<Reference Include="itext.pdftest, Version=7.1.14.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.csproj')">
100+
<HintPath>$(SolutionDir)\packages\itext7.pdftest.7.1.14\lib\net40\itext.pdftest.dll</HintPath>
101101
</Reference>
102102
<ProjectReference Include="..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.csproj')">
103103
<Project>{8636f290-00df-403e-b841-e4bfd6d9ce7a}</Project>
104104
<Name>itext.styledxmlparser</Name>
105105
</ProjectReference>
106-
<Reference Include="itext.styledxmlparser, Version=7.1.13.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.csproj')">
107-
<HintPath>$(SolutionDir)\packages\itext7.7.1.13\lib\net40\itext.styledxmlparser.dll</HintPath>
106+
<Reference Include="itext.styledxmlparser, Version=7.1.14.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.csproj')">
107+
<HintPath>$(SolutionDir)\packages\itext7.7.1.14\lib\net40\itext.styledxmlparser.dll</HintPath>
108108
</Reference>
109109
<ProjectReference Include="..\..\..\itextcore\itext\itext.svg\itext.svg.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.svg\itext.svg.csproj')">
110110
<Project>{ddec35d2-5781-471d-5ea1-a6e433eddb11}</Project>
111111
<Name>itext.svg</Name>
112112
</ProjectReference>
113-
<Reference Include="itext.svg, Version=7.1.13.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.svg\itext.svg.csproj')">
114-
<HintPath>$(SolutionDir)\packages\itext7.7.1.13\lib\net40\itext.svg.dll</HintPath>
113+
<Reference Include="itext.svg, Version=7.1.14.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.svg\itext.svg.csproj')">
114+
<HintPath>$(SolutionDir)\packages\itext7.7.1.14\lib\net40\itext.svg.dll</HintPath>
115115
</Reference>
116116
<ProjectReference Include="..\..\itext\itext.html2pdf\itext.html2pdf.csproj">
117117
<Project>{ff6ba09d-3655-466a-8c17-a7bfd3479ca1}</Project>

itext.tests/itext.html2pdf.tests/itext.html2pdf.tests.netstandard.csproj

+7-7
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@
66
<RootNamespace></RootNamespace>
77
</PropertyGroup>
88
<PropertyGroup>
9-
<TargetFrameworks>netcoreapp1.0;net40</TargetFrameworks>
9+
<TargetFrameworks>netcoreapp2.0;net40</TargetFrameworks>
1010
</PropertyGroup>
1111
<PropertyGroup Condition=" '$(TargetFramework)' == 'net40' ">
1212
<OutputType>library</OutputType>
1313
</PropertyGroup>
14-
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">
14+
<PropertyGroup Condition=" '$(TargetFramework)' == 'netcoreapp2.0' ">
1515
<OutputType>Library</OutputType>
16-
<DefineConstants>NETSTANDARD1_6</DefineConstants>
16+
<DefineConstants>NETSTANDARD2_0</DefineConstants>
1717
</PropertyGroup>
1818
<PropertyGroup>
1919
<AssemblyOriginatorKeyFile>itext.snk</AssemblyOriginatorKeyFile>
@@ -44,20 +44,20 @@
4444
</ItemGroup>
4545
<ItemGroup>
4646
<ProjectReference Include="..\..\..\itextcore\itext\itext.io\itext.io.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.io\itext.io.netstandard.csproj')" />
47-
<PackageReference Include="itext7" Version="7.1.13" Condition="!Exists('..\..\..\itextcore\itext\itext.io\itext.io.netstandard.csproj')" />
47+
<PackageReference Include="itext7" Version="7.1.14" Condition="!Exists('..\..\..\itextcore\itext\itext.io\itext.io.netstandard.csproj')" />
4848
<ProjectReference Include="..\..\..\itextcore\itext\itext.kernel\itext.kernel.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.kernel\itext.kernel.netstandard.csproj')" />
4949
<ProjectReference Include="..\..\..\itextcore\itext\itext.layout\itext.layout.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.layout\itext.layout.netstandard.csproj')" />
5050
<ProjectReference Include="..\..\..\itextcore\itext\itext.forms\itext.forms.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.forms\itext.forms.netstandard.csproj')" />
5151
<ProjectReference Include="..\..\..\itextcore\itext\itext.pdfa\itext.pdfa.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.pdfa\itext.pdfa.netstandard.csproj')" />
5252
<ProjectReference Include="..\..\..\itextcore\itext\itext.hyph\itext.hyph.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.hyph\itext.hyph.netstandard.csproj')" />
53-
<PackageReference Include="itext7.hyph" Version="7.1.13" Condition="!Exists('..\..\..\itextcore\itext\itext.hyph\itext.hyph.netstandard.csproj')" />
53+
<PackageReference Include="itext7.hyph" Version="7.1.14" Condition="!Exists('..\..\..\itextcore\itext\itext.hyph\itext.hyph.netstandard.csproj')" />
5454
<ProjectReference Include="..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.netstandard.csproj')" />
55-
<PackageReference Include="itext7.pdftest" Version="7.1.13" Condition="!Exists('..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.netstandard.csproj')" />
55+
<PackageReference Include="itext7.pdftest" Version="7.1.14" Condition="!Exists('..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.netstandard.csproj')" />
5656
<ProjectReference Include="..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.netstandard.csproj')" />
5757
<ProjectReference Include="..\..\..\itextcore\itext\itext.svg\itext.svg.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.svg\itext.svg.netstandard.csproj')" />
5858
<ProjectReference Include="..\..\itext\itext.html2pdf\itext.html2pdf.netstandard.csproj" />
5959
</ItemGroup>
60-
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp1.0'">
60+
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp2.0'">
6161
<PackageReference Include="Microsoft.NET.Test.Sdk">
6262
<Version>15.0.0</Version>
6363
</PackageReference>

0 commit comments

Comments
 (0)