Skip to content

Commit 53315e0

Browse files
committed
Enable CS1591: Missing XML comment for publicly visible type or member
1 parent d2ab2f9 commit 53315e0

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

Directory.Build.props

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
11
<Project>
2+
<PropertyGroup>
3+
<!-- This needs to happen before importing Arcade props. -->
4+
<!-- Otherwise, Arcade would have already included 1591 in NoWarn -->
5+
<SkipArcadeNoWarnCS1591>true</SkipArcadeNoWarnCS1591>
6+
</PropertyGroup>
27

38
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
49
<Import Project="$(RepositoryEngineeringDir)Analyzers.props" />
@@ -18,9 +23,8 @@
1823
not report warnings for missing comments.
1924
2025
CS1573: Parameter 'parameter' has no matching param tag in the XML comment for 'parameter' (but other parameters do)
21-
CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
2226
-->
23-
<NoWarn>$(NoWarn),1573,1591</NoWarn>
27+
<NoWarn>$(NoWarn),1573</NoWarn>
2428
</PropertyGroup>
2529

2630
<!-- The TFMs to build and test against. -->

0 commit comments

Comments
 (0)