Skip to content

Commit 2824b40

Browse files
committed
suppress warning 1591 about missing xmldoc comment
1 parent 123377c commit 2824b40

File tree

16 files changed

+45
-9
lines changed

16 files changed

+45
-9
lines changed

Rubberduck.CodeAnalysis/Rubberduck.CodeAnalysis.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
<PropertyGroup>
1212
<DocumentationFile>Rubberduck.CodeAnalysis.xml</DocumentationFile>
1313
</PropertyGroup>
14+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
15+
<WarningsAsErrors>NU1605</WarningsAsErrors>
16+
<NoWarn>1701;1702;;4011;1001;7035;1053;1591</NoWarn>
17+
</PropertyGroup>
1418
<Import Project="..\RubberduckBaseProject.csproj" />
1519

1620
<ItemGroup>

Rubberduck.Core/Rubberduck.Core.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@
2323
<DocumentationFile>bin\Debug\Rubberduck.XML</DocumentationFile>
2424
<DebugType>full</DebugType>
2525
</PropertyGroup>
26+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
27+
<WarningsAsErrors>NU1605; CS1591</WarningsAsErrors>
28+
<NoWarn>1701;1702;;1591;4011;1001;1591</NoWarn>
29+
</PropertyGroup>
2630
<ItemGroup>
2731
<Reference Include="Infralution.Localization.Wpf">
2832
<HintPath>..\libs\Infralution.Localization.Wpf.dll</HintPath>

Rubberduck.Deployment/Rubberduck.Deployment.csproj

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,9 @@
1010
<!-- Installer references depend on the unified output path -->
1111
<UnifyOutputPath>true</UnifyOutputPath>
1212
</PropertyGroup>
13+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
14+
<NoWarn>1701;1702;;4011;1001;7035;1053;;4011;1001;7035;1053;1591</NoWarn>
15+
</PropertyGroup>
1316
<Import Project="..\RubberduckBaseProject.csproj" />
1417

1518
<ItemGroup>
@@ -54,15 +57,7 @@
5457
<CreateProperty Value="$(ProjectDir)$(OutputPath)$(TargetFileName)">
5558
<Output TaskParameter="Value" PropertyName="TargetAssembly" />
5659
</CreateProperty>
57-
<RubberduckPostBuildTask
58-
Config="$(ConfigurationName)"
59-
NetToolsDir="$(SdkPath)bin\NETFX 4.6.1 Tools\"
60-
WixToolsDir="$(ProjectDir)WixToolset\"
61-
SourceDir="$(TargetDir)"
62-
TargetDir="$(TargetDir)"
63-
ProjectDir="$(ProjectDir)"
64-
IncludeDir="$(ProjectDir)InnoSetup\Includes\"
65-
FilesToExtract="Rubberduck.dll" />
60+
<RubberduckPostBuildTask Config="$(ConfigurationName)" NetToolsDir="$(SdkPath)bin\NETFX 4.6.1 Tools\" WixToolsDir="$(ProjectDir)WixToolset\" SourceDir="$(TargetDir)" TargetDir="$(TargetDir)" ProjectDir="$(ProjectDir)" IncludeDir="$(ProjectDir)InnoSetup\Includes\" FilesToExtract="Rubberduck.dll" />
6661
<Message Text="Ran Rubberduck postbuild task" Importance="normal" />
6762
</Target>
6863
</Project>

Rubberduck.Interaction/Rubberduck.Interaction.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
<Title>Rubberduck.Interaction</Title>
77
<ProjectGuid>{AC54B7FB-170D-4DA6-A30B-8CAD182F0E6B}</ProjectGuid>
88
</PropertyGroup>
9+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
10+
<NoWarn>1701;1702;;4011;1001;7035;1053;1591</NoWarn>
11+
</PropertyGroup>
912
<Import Project="..\RubberduckBaseProject.csproj" />
1013

1114
<ItemGroup>

Rubberduck.JunkDrawer/Rubberduck.JunkDrawer.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,8 @@
88
<RootNamespace>Rubberduck.JunkDrawer</RootNamespace>
99
<TargetFramework>net46</TargetFramework>
1010
</PropertyGroup>
11+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
12+
<NoWarn>1701;1702;;4011;1001;7035;1053;1591</NoWarn>
13+
</PropertyGroup>
1114
<Import Project="..\RubberduckBaseProject.csproj" />
1215
</Project>

Rubberduck.Parsing/Rubberduck.Parsing.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@
1212
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1313
<WarningLevel>1</WarningLevel>
1414
<UseVSHostingProcess>true</UseVSHostingProcess>
15+
<NoWarn>1701;1702;1591;4011;1001;7035;1053</NoWarn>
1516
</PropertyGroup>
1617
<PropertyGroup>
1718
<Antlr4UseCSharpGenerator>True</Antlr4UseCSharpGenerator>

Rubberduck.Refactorings/Rubberduck.Refactorings.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
<AssemblyName>Rubberduck.Refactorings</AssemblyName>
77
<Copyright>Copyright © 2018-2019</Copyright>
88
</PropertyGroup>
9+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
10+
<NoWarn>1701;1702;1591;4011;1001;7035;1053</NoWarn>
11+
</PropertyGroup>
912
<Import Project="..\RubberduckBaseProject.csproj" />
1013

1114
<ItemGroup>

Rubberduck.RegexAssistant/Rubberduck.RegexAssistant.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
<Copyright>Copyright © 2016-2019</Copyright>
77
<ProjectGuid>{40CC03E3-756C-4674-AF07-384115DEAEE2}</ProjectGuid>
88
</PropertyGroup>
9+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
10+
<NoWarn>1701;1702;1591;4011;1001;7035;1053</NoWarn>
11+
</PropertyGroup>
912
<Import Project="..\RubberduckBaseProject.csproj" />
1013

1114
<ItemGroup>

Rubberduck.Resources/Rubberduck.Resources.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
<Copyright>Copyright © 2018-2019</Copyright>
77
<ProjectGuid>{1B84B387-F7C4-4876-9BDF-C644C365359A}</ProjectGuid>
88
</PropertyGroup>
9+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
10+
<NoWarn>1701;1702;1591;4011;1001;7035;1053</NoWarn>
11+
</PropertyGroup>
912
<Import Project="..\RubberduckBaseProject.csproj" />
1013
<ItemGroup>
1114
<Resource Include="**\*.png" Exclude="$(IntermediateOutputPath)\**" />

Rubberduck.SettingsProvider/Rubberduck.SettingsProvider.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
<Copyright>Copyright © 2016-2019</Copyright>
77
<ProjectGuid>{E85E1253-86D6-45EE-968B-F37348D44132}</ProjectGuid>
88
</PropertyGroup>
9+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
10+
<NoWarn>1701;1702;1591;4011;1001;7035;1053</NoWarn>
11+
</PropertyGroup>
912
<Import Project="..\RubberduckBaseProject.csproj" />
1013

1114
<ItemGroup>

0 commit comments

Comments
 (0)