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
Add CS1591 to the WarningsNotAsErrors list in src/Projections/Directory.Build.props so missing XML comment warnings (e.g. for CoreDragDropManager) are not treated as build errors. Also update the nearby comment block to document the CS1591 entry.
Copy file name to clipboardExpand all lines: src/Projections/Directory.Build.props
+2-1Lines changed: 2 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -7,13 +7,14 @@
7
7
"CS0109: The member 'IChatMessage2.Status' does not hide an accessible member. The new keyword is not required."
8
8
"CS0114: 'IUnSealedCustomEquals.GetHashCode()' hides inherited member 'object.GetHashCode()'. To make the current member
9
9
override that implementation, add the override keyword. Otherwise add the new keyword."
10
+
"CS1591: Missing XML comment for publicly visible type or member 'CoreDragDropManager'."
10
11
"CS0219: The variable '__retval' is assigned but its value is never used."
11
12
"CS0628: 'ToggleSwitch.OnToggled()': new protected member declared in sealed type"
12
13
"CS0660: 'CustomEquals2' defines operator == or operator != but does not override Object.Equals(object o)"
13
14
"CA2257: The 'ABI.Windows.Foundation.Collections.IMapChangedEventArgs<K>.Vftbl' member on the 'ABI.Windows.Foundation.Collections.IMapChangedEventArgs<K>'
14
15
type should be marked 'static' as 'ABI.Windows.Foundation.Collections.IMapChangedEventArgs<K>' has the 'DynamicInterfaceImplementationAttribute' applied"
0 commit comments