Skip to content

Commit 6d23bdb

Browse files
Add nuget fallback for project dependencies
DEVSIX-2138
1 parent 6ef8a3e commit 6d23bdb

File tree

9 files changed

+128
-77
lines changed

9 files changed

+128
-77
lines changed

itext.html2pdf.sln

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 11.00
3+
Project("{28A44613-21BB-46E2-BB98-23808869FDDE}") = "itext.html2pdf", "itext\itext.html2pdf\itext.html2pdf.netstandard.csproj", "{FF6BA09D-3655-466A-8C17-A7BFD3479CA1}"
4+
EndProject
5+
Project("{28A44613-21BB-46E2-BB98-23808869FDDE}") = "itext.html2pdf.tests", "itext.tests\itext.html2pdf.tests\itext.html2pdf.tests.netstandard.csproj", "{AE4E5743-0665-4705-9A33-07EA57CDD269}"
6+
EndProject
7+
Global
8+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
9+
Debug|Any CPU = Debug|Any CPU
10+
Release|Any CPU = Release|Any CPU
11+
EndGlobalSection
12+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13+
{FF6BA09D-3655-466A-8C17-A7BFD3479CA1}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{FF6BA09D-3655-466A-8C17-A7BFD3479CA1}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{FF6BA09D-3655-466A-8C17-A7BFD3479CA1}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{FF6BA09D-3655-466A-8C17-A7BFD3479CA1}.Release|Any CPU.Build.0 = Release|Any CPU
17+
{AE4E5743-0665-4705-9A33-07EA57CDD269}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
18+
{AE4E5743-0665-4705-9A33-07EA57CDD269}.Debug|Any CPU.Build.0 = Debug|Any CPU
19+
{AE4E5743-0665-4705-9A33-07EA57CDD269}.Release|Any CPU.ActiveCfg = Release|Any CPU
20+
{AE4E5743-0665-4705-9A33-07EA57CDD269}.Release|Any CPU.Build.0 = Release|Any CPU
21+
EndGlobalSection
22+
GlobalSection(SolutionProperties) = preSolution
23+
HideSolutionNode = FALSE
24+
EndGlobalSection
25+
EndGlobal

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

Lines changed: 40 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
<ProjectGuid>{AE4E5743-0665-4705-9A33-07EA57CDD269}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>
11-
</RootNamespace>
10+
<RootNamespace></RootNamespace>
1211
<AssemblyName>itext.html2pdf.tests</AssemblyName>
1312
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1413
<FileAlignment>512</FileAlignment>
@@ -45,42 +44,72 @@
4544
<Compile Include="Properties\AssemblyInfo.cs" />
4645
</ItemGroup>
4746
<ItemGroup>
48-
<ProjectReference Include="..\..\..\itextcore\itext\itext.forms\itext.forms.csproj">
47+
<ProjectReference Include="..\..\..\itextcore\itext\itext.forms\itext.forms.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.forms\itext.forms.csproj')">
4948
<Project>{e2828ac4-3c63-4b2a-b5ad-5f98862775be}</Project>
5049
<Name>itext.forms</Name>
5150
</ProjectReference>
52-
<ProjectReference Include="..\..\..\itextcore\itext\itext.hyph\itext.hyph.csproj">
51+
<Reference Include="itext.forms, Version=7.1.4.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.forms\itext.forms.csproj')">
52+
<HintPath>$(SolutionDir)\packages\itext7.7.1.4-SNAPSHOT\lib\net40\itext.forms.dll</HintPath>
53+
</Reference>
54+
<ProjectReference Include="..\..\..\itextcore\itext\itext.hyph\itext.hyph.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.hyph\itext.hyph.csproj')">
5355
<Project>{56137079-541A-425A-AB97-43AF63793C97}</Project>
5456
<Name>itext.hyph</Name>
5557
</ProjectReference>
56-
<ProjectReference Include="..\..\..\itextcore\itext\itext.io\itext.io.csproj">
58+
<Reference Include="itext.hyph, Version=7.1.4.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.hyph\itext.hyph.csproj')">
59+
<HintPath>$(SolutionDir)\packages\itext7.hyph.7.1.4-SNAPSHOT\lib\net40\itext.hyph.dll</HintPath>
60+
</Reference>
61+
<ProjectReference Include="..\..\..\itextcore\itext\itext.io\itext.io.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.io\itext.io.csproj')">
5762
<Project>{cee5e7e1-1bf0-4be1-9941-903262ce2f83}</Project>
5863
<Name>itext.io</Name>
5964
</ProjectReference>
60-
<ProjectReference Include="..\..\..\itextcore\itext\itext.kernel\itext.kernel.csproj">
65+
<Reference Include="itext.io, Version=7.1.4.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.io\itext.io.csproj')">
66+
<HintPath>$(SolutionDir)\packages\itext7.7.1.4-SNAPSHOT\lib\net40\itext.io.dll</HintPath>
67+
</Reference>
68+
<ProjectReference Include="..\..\..\itextcore\itext\itext.kernel\itext.kernel.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.kernel\itext.kernel.csproj')">
6169
<Project>{4e7819e8-7555-4e2e-9a01-d8718a2cfdda}</Project>
6270
<Name>itext.kernel</Name>
6371
</ProjectReference>
64-
<ProjectReference Include="..\..\..\itextcore\itext\itext.layout\itext.layout.csproj">
72+
<Reference Include="BouncyCastle.Crypto, Version=1.8.1.0, Culture=neutral, PublicKeyToken=0e99375e54769942" Condition="!Exists('..\..\..\itextcore\itext\itext.kernel\itext.kernel.csproj')">
73+
<HintPath>$(SolutionDir)\packages\Portable.BouncyCastle.1.8.1.3\lib\net40\BouncyCastle.Crypto.dll</HintPath>
74+
</Reference>
75+
<Reference Include="itext.kernel, Version=7.1.4.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.kernel\itext.kernel.csproj')">
76+
<HintPath>$(SolutionDir)\packages\itext7.7.1.4-SNAPSHOT\lib\net40\itext.kernel.dll</HintPath>
77+
</Reference>
78+
<ProjectReference Include="..\..\..\itextcore\itext\itext.layout\itext.layout.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.layout\itext.layout.csproj')">
6579
<Project>{42173642-db52-44d3-9883-3e34c65c53bc}</Project>
6680
<Name>itext.layout</Name>
6781
</ProjectReference>
68-
<ProjectReference Include="..\..\..\itextcore\itext\itext.pdfa\itext.pdfa.csproj">
82+
<Reference Include="itext.layout, Version=7.1.4.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.layout\itext.layout.csproj')">
83+
<HintPath>$(SolutionDir)\packages\itext7.7.1.4-SNAPSHOT\lib\net40\itext.layout.dll</HintPath>
84+
</Reference>
85+
<ProjectReference Include="..\..\..\itextcore\itext\itext.pdfa\itext.pdfa.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.pdfa\itext.pdfa.csproj')">
6986
<Project>{9fc2f0b3-a8d2-46da-8724-72e00e67a8fa}</Project>
7087
<Name>itext.pdfa</Name>
7188
</ProjectReference>
72-
<ProjectReference Include="..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.csproj">
89+
<Reference Include="itext.pdfa, Version=7.1.4.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.pdfa\itext.pdfa.csproj')">
90+
<HintPath>$(SolutionDir)\packages\itext7.7.1.4-SNAPSHOT\lib\net40\itext.pdfa.dll</HintPath>
91+
</Reference>
92+
<ProjectReference Include="..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.csproj')">
7393
<Project>{f9880dc4-f015-4413-af86-66d0e9512774}</Project>
7494
<Name>itext.pdftest</Name>
7595
</ProjectReference>
76-
<ProjectReference Include="..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.csproj">
96+
<Reference Include="itext.pdftest, Version=7.1.4.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.csproj')">
97+
<HintPath>$(SolutionDir)\packages\itext7.pdftest.7.1.4-SNAPSHOT\lib\net40\itext.pdftest.dll</HintPath>
98+
</Reference>
99+
<ProjectReference Include="..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.csproj')">
77100
<Project>{8636f290-00df-403e-b841-e4bfd6d9ce7a}</Project>
78101
<Name>itext.styledxmlparser</Name>
79102
</ProjectReference>
80-
<ProjectReference Include="..\..\..\itextcore\itext\itext.svg\itext.svg.csproj">
103+
<Reference Include="itext.styledxmlparser, Version=7.1.4.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.csproj')">
104+
<HintPath>$(SolutionDir)\packages\itext7.7.1.4-SNAPSHOT\lib\net40\itext.styledxmlparser.dll</HintPath>
105+
</Reference>
106+
<ProjectReference Include="..\..\..\itextcore\itext\itext.svg\itext.svg.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.svg\itext.svg.csproj')">
81107
<Project>{ddec35d2-5781-471d-5ea1-a6e433eddb11}</Project>
82108
<Name>itext.svg</Name>
83109
</ProjectReference>
110+
<Reference Include="itext.svg, Version=7.1.4.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.svg\itext.svg.csproj')">
111+
<HintPath>$(SolutionDir)\packages\itext7.7.1.4-SNAPSHOT\lib\net40\itext.svg.dll</HintPath>
112+
</Reference>
84113
<ProjectReference Include="..\..\itext\itext.html2pdf\itext.html2pdf.csproj">
85114
<Project>{ff6ba09d-3655-466a-8c17-a7bfd3479ca1}</Project>
86115
<Name>itext.html2pdf</Name>

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

Lines changed: 14 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
23
<PropertyGroup Label="Configuration">
34
<SignAssembly>True</SignAssembly>
45
<DelaySign>False</DelaySign>
@@ -44,15 +45,18 @@
4445
<Reference Include="System.Core" />
4546
</ItemGroup>
4647
<ItemGroup>
47-
<ProjectReference Include="..\..\..\itextcore\itext\itext.io\itext.io.netstandard.csproj" />
48-
<ProjectReference Include="..\..\..\itextcore\itext\itext.kernel\itext.kernel.netstandard.csproj" />
49-
<ProjectReference Include="..\..\..\itextcore\itext\itext.layout\itext.layout.netstandard.csproj" />
50-
<ProjectReference Include="..\..\..\itextcore\itext\itext.forms\itext.forms.netstandard.csproj" />
51-
<ProjectReference Include="..\..\..\itextcore\itext\itext.pdfa\itext.pdfa.netstandard.csproj" />
52-
<ProjectReference Include="..\..\..\itextcore\itext\itext.hyph\itext.hyph.netstandard.csproj" />
53-
<ProjectReference Include="..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.netstandard.csproj" />
54-
<ProjectReference Include="..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.netstandard.csproj" />
55-
<ProjectReference Include="..\..\..\itextcore\itext\itext.svg\itext.svg.netstandard.csproj" />
48+
<ProjectReference Include="..\..\..\itextcore\itext\itext.io\itext.io.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.io\itext.io.netstandard.csproj')" />
49+
<PackageReference Include="itext7" Version="7.1.4-SNAPSHOT" Condition="!Exists('..\..\..\itextcore\itext\itext.io\itext.io.netstandard.csproj')" />
50+
<ProjectReference Include="..\..\..\itextcore\itext\itext.kernel\itext.kernel.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.kernel\itext.kernel.netstandard.csproj')" />
51+
<ProjectReference Include="..\..\..\itextcore\itext\itext.layout\itext.layout.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.layout\itext.layout.netstandard.csproj')" />
52+
<ProjectReference Include="..\..\..\itextcore\itext\itext.forms\itext.forms.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.forms\itext.forms.netstandard.csproj')" />
53+
<ProjectReference Include="..\..\..\itextcore\itext\itext.pdfa\itext.pdfa.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.pdfa\itext.pdfa.netstandard.csproj')" />
54+
<ProjectReference Include="..\..\..\itextcore\itext\itext.hyph\itext.hyph.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.hyph\itext.hyph.netstandard.csproj')" />
55+
<PackageReference Include="itext7.hyph" Version="7.1.4-SNAPSHOT" Condition="!Exists('..\..\..\itextcore\itext\itext.hyph\itext.hyph.netstandard.csproj')" />
56+
<ProjectReference Include="..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.netstandard.csproj')" />
57+
<PackageReference Include="itext7.pdftest" Version="7.1.4-SNAPSHOT" Condition="!Exists('..\..\..\itextcore\itext\itext.pdftest\itext.pdftest.netstandard.csproj')" />
58+
<ProjectReference Include="..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.netstandard.csproj')" />
59+
<ProjectReference Include="..\..\..\itextcore\itext\itext.svg\itext.svg.netstandard.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.svg\itext.svg.netstandard.csproj')" />
5660
<ProjectReference Include="..\..\itext\itext.html2pdf\itext.html2pdf.netstandard.csproj" />
5761
</ItemGroup>
5862
<ItemGroup Condition="'$(TargetFramework)' == 'netcoreapp1.0'">

itext.tests/itext.html2pdf.tests/packages.config

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22
<packages>
33
<package id="NUnit" version="3.7.1" targetFramework="net4" />
44
<package id="itext7.pdftest" version="7.1.4-SNAPSHOT" targetFramework="net40" />
5-
</packages>
5+
<package id="itext7" version="7.1.4-SNAPSHOT" targetFramework="net40" />
6+
<package id="itext7.hyph" version="7.1.4-SNAPSHOT" targetFramework="net40" />
7+
<package id="Portable.BouncyCastle" version="1.8.1.3" targetFramework="net40" />
8+
</packages>

itext/itext.html2pdf/itext.html2pdf.csproj

Lines changed: 28 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@
77
<ProjectGuid>{FF6BA09D-3655-466A-8C17-A7BFD3479CA1}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
10-
<RootNamespace>
11-
</RootNamespace>
10+
<RootNamespace></RootNamespace>
1211
<AssemblyName>itext.html2pdf</AssemblyName>
1312
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1413
<FileAlignment>512</FileAlignment>
@@ -51,30 +50,51 @@
5150
<Compile Include="Html2PdfExtensions.cs" />
5251
</ItemGroup>
5352
<ItemGroup>
54-
<ProjectReference Include="..\..\..\itextcore\itext\itext.forms\itext.forms.csproj">
53+
<ProjectReference Include="..\..\..\itextcore\itext\itext.forms\itext.forms.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.forms\itext.forms.csproj')">
5554
<Project>{e2828ac4-3c63-4b2a-b5ad-5f98862775be}</Project>
5655
<Name>itext.forms</Name>
5756
</ProjectReference>
58-
<ProjectReference Include="..\..\..\itextcore\itext\itext.io\itext.io.csproj">
57+
<Reference Include="itext.forms, Version=7.1.4.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.forms\itext.forms.csproj')">
58+
<HintPath>$(SolutionDir)\packages\itext7.7.1.4-SNAPSHOT\lib\net40\itext.forms.dll</HintPath>
59+
</Reference>
60+
<ProjectReference Include="..\..\..\itextcore\itext\itext.io\itext.io.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.io\itext.io.csproj')">
5961
<Project>{cee5e7e1-1bf0-4be1-9941-903262ce2f83}</Project>
6062
<Name>itext.io</Name>
6163
</ProjectReference>
62-
<ProjectReference Include="..\..\..\itextcore\itext\itext.kernel\itext.kernel.csproj">
64+
<Reference Include="itext.io, Version=7.1.4.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.io\itext.io.csproj')">
65+
<HintPath>$(SolutionDir)\packages\itext7.7.1.4-SNAPSHOT\lib\net40\itext.io.dll</HintPath>
66+
</Reference>
67+
<ProjectReference Include="..\..\..\itextcore\itext\itext.kernel\itext.kernel.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.kernel\itext.kernel.csproj')">
6368
<Project>{4e7819e8-7555-4e2e-9a01-d8718a2cfdda}</Project>
6469
<Name>itext.kernel</Name>
6570
</ProjectReference>
66-
<ProjectReference Include="..\..\..\itextcore\itext\itext.layout\itext.layout.csproj">
71+
<Reference Include="BouncyCastle.Crypto, Version=1.8.1.0, Culture=neutral, PublicKeyToken=0e99375e54769942" Condition="!Exists('..\..\..\itextcore\itext\itext.kernel\itext.kernel.csproj')">
72+
<HintPath>$(SolutionDir)\packages\Portable.BouncyCastle.1.8.1.3\lib\net40\BouncyCastle.Crypto.dll</HintPath>
73+
</Reference>
74+
<Reference Include="itext.kernel, Version=7.1.4.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.kernel\itext.kernel.csproj')">
75+
<HintPath>$(SolutionDir)\packages\itext7.7.1.4-SNAPSHOT\lib\net40\itext.kernel.dll</HintPath>
76+
</Reference>
77+
<ProjectReference Include="..\..\..\itextcore\itext\itext.layout\itext.layout.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.layout\itext.layout.csproj')">
6778
<Project>{42173642-db52-44d3-9883-3e34c65c53bc}</Project>
6879
<Name>itext.layout</Name>
6980
</ProjectReference>
70-
<ProjectReference Include="..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.csproj">
81+
<Reference Include="itext.layout, Version=7.1.4.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.layout\itext.layout.csproj')">
82+
<HintPath>$(SolutionDir)\packages\itext7.7.1.4-SNAPSHOT\lib\net40\itext.layout.dll</HintPath>
83+
</Reference>
84+
<ProjectReference Include="..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.csproj')">
7185
<Project>{8636f290-00df-403e-b841-e4bfd6d9ce7a}</Project>
7286
<Name>itext.styledxmlparser</Name>
7387
</ProjectReference>
74-
<ProjectReference Include="..\..\..\itextcore\itext\itext.svg\itext.svg.csproj">
88+
<Reference Include="itext.styledxmlparser, Version=7.1.4.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.styledxmlparser\itext.styledxmlparser.csproj')">
89+
<HintPath>$(SolutionDir)\packages\itext7.7.1.4-SNAPSHOT\lib\net40\itext.styledxmlparser.dll</HintPath>
90+
</Reference>
91+
<ProjectReference Include="..\..\..\itextcore\itext\itext.svg\itext.svg.csproj" Condition="Exists('..\..\..\itextcore\itext\itext.svg\itext.svg.csproj')">
7592
<Project>{ddec35d2-5781-471d-5ea1-a6e433eddb11}</Project>
7693
<Name>itext.svg</Name>
7794
</ProjectReference>
95+
<Reference Include="itext.svg, Version=7.1.4.0, Culture=neutral, PublicKeyToken=8354ae6d2174ddca" Condition="!Exists('..\..\..\itextcore\itext\itext.svg\itext.svg.csproj')">
96+
<HintPath>$(SolutionDir)\packages\itext7.7.1.4-SNAPSHOT\lib\net40\itext.svg.dll</HintPath>
97+
</Reference>
7898
</ItemGroup>
7999
<ItemGroup>
80100
<None Include="itext.snk" />

0 commit comments

Comments
 (0)