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
Copy file name to clipboardExpand all lines: docs/fundamentals/apicompat/diagnostic-ids.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -61,7 +61,7 @@ This reference article lists all the error codes generated by package validation
61
61
| CP0009 | A type that was unsealed on one side was annotated as `sealed` on the other compared side. | Remove the `sealed` annotation from the type. |
62
62
| CP0010 | The underlying type of an enum changed from one side to the other. | Change the underlying type back to what it was previously. |
63
63
| CP0011 | The value of a member in an enum changed from one side to the other. | Change the value of the member back to what it was previously. |
64
-
| CP0012 |The `virtual` keyword was removed from a member that was previously virtual. |Add the `virtual` keyword back to the member. |
64
+
| CP0012 |Either the `virtual`or `abstract`keyword was removed from a member that was previously virtual or abstract. |If the member was previously virtual, add the `virtual` keyword back. If the member was previously abstract, add either the `virtual` or `abstract` keyword to the member. |
65
65
| CP0013 | The `virtual` keyword was added to a member that was previously not virtual. | Remove the `virtual` keyword from the member. |
66
66
| CP0014 | An attribute was removed from a member that previously had it. | Add the attribute back to the member. |
67
67
| CP0015 | The arguments passed to an attribute changed from one side to the other. | Change the arguments to the attribute back to what they were previously. |
0 commit comments