You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<!-- Implement standard exception constructors - not all of the exception constructors (e.g., parameterless) are desired in our system. -->
6
6
<RuleId="CA1032"Action="None" />
7
+
<!-- Use ArgumentNullException.ThrowIfNull instead of if/throw - netstandard2.0 and netstandard2.1 don't have ArgumentNullException.ThrowIfNull. -->
8
+
<RuleId="CA1510"Action="None" />
7
9
<!-- Change names to avoid reserved word overlaps (e.g., Delegate, GetType, etc.) - too many of these in the public API, we'd break if we fixed it. -->
8
10
<RuleId="CA1716"Action="None" />
9
11
<!-- Implement serialization constructors - false positive when building .NET Core -->
0 commit comments