Skip to content

Commit ba8effb

Browse files
committed
Suppress XML doc related warnings
DEVSIX-2685
1 parent f60cc94 commit ba8effb

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
<DefineConstants>DEBUG;TRACE</DefineConstants>
2323
<ErrorReport>prompt</ErrorReport>
2424
<WarningLevel>4</WarningLevel>
25+
<NoWarn>CS1591;CS1570;CS1572;CS1573;CS1574;CS1580;CS1584;CS1658</NoWarn>
2526
</PropertyGroup>
2627
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2728
<DebugType>pdbonly</DebugType>
@@ -30,6 +31,7 @@
3031
<DefineConstants>TRACE</DefineConstants>
3132
<ErrorReport>prompt</ErrorReport>
3233
<WarningLevel>4</WarningLevel>
34+
<NoWarn>CS1591;CS1570;CS1572;CS1573;CS1574;CS1580;CS1584;CS1658</NoWarn>
3335
</PropertyGroup>
3436
<ItemGroup>
3537
<Reference Include="nunit.framework, Version=3.7.1.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
<None Include="itext.snk" />
3636
<None Include="packages.config" />
3737
</ItemGroup>
38+
<PropertyGroup>
39+
<NoWarn>1701;1702;1591;1570;1572;1573;1574;1580;1584;1658</NoWarn>
40+
</PropertyGroup>
3841
<ItemGroup Condition=" '$(TargetFramework)' == 'net40' ">
3942
<Reference Include="System" />
4043
<Reference Include="System.Core" />

itext/itext.html2pdf/itext.html2pdf.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
<DefineConstants>DEBUG;TRACE</DefineConstants>
2323
<ErrorReport>prompt</ErrorReport>
2424
<WarningLevel>4</WarningLevel>
25+
<NoWarn>CS1591;CS1570;CS1572;CS1573;CS1574;CS1580;CS1584;CS1658</NoWarn>
2526
<DocumentationFile>bin\Debug\itext.html2pdf.xml</DocumentationFile>
2627
</PropertyGroup>
2728
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
@@ -31,6 +32,7 @@
3132
<DefineConstants>TRACE</DefineConstants>
3233
<ErrorReport>prompt</ErrorReport>
3334
<WarningLevel>4</WarningLevel>
35+
<NoWarn>CS1591;CS1570;CS1572;CS1573;CS1574;CS1580;CS1584;CS1658</NoWarn>
3436
<DocumentationFile>bin\Release\itext.html2pdf.xml</DocumentationFile>
3537
</PropertyGroup>
3638
<ItemGroup>

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
<AssemblyName>itext.html2pdf</AssemblyName>
2121
<RootNamespace />
2222
</PropertyGroup>
23+
<PropertyGroup>
24+
<NoWarn>1701;1702;1591;1570;1572;1573;1574;1580;1584;1658</NoWarn>
25+
</PropertyGroup>
2326
<ItemGroup Condition=" '$(TargetFramework)' == 'net40' ">
2427
<Reference Include="System" />
2528
<Reference Include="System.Core" />

0 commit comments

Comments
 (0)