-
Notifications
You must be signed in to change notification settings - Fork 1.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CA1200: Avoid using cref tags with a prefix #7194
Conversation
Co-authored-by: Sam Harwell <[email protected]>
Co-authored-by: Sam Harwell <[email protected]>
Co-authored-by: Sam Harwell <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This would currently break MSBuild if merged alongisde ghogen's PR, but hopefully that one will be fixed soon.
@@ -434,7 +434,7 @@ public static ProjectCollection GlobalProjectCollection | |||
/// This is the Windows file version (specifically the value of the FileVersion | |||
/// resource), not necessarily the assembly version. | |||
/// If you want the assembly version, use Constants.AssemblyVersion. | |||
/// This is not the <see cref="P:Microsoft.Build.BuildEngine.ToolsetCollection.ToolsVersions*">ToolsetCollection.ToolsVersions</see>. | |||
/// This is not a <see cref="Toolset"/>. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is the modern equivalent:
/// This is not a <see cref="Toolset"/>. | |
/// This is not the <see cref="Toolset.ToolsVersion"/>. |
Co-authored-by: Rainer Sigwald <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Failure looks like it's from one of the other analyzers: documentation beginning with a space.
Is there anything waiting to be done in this? |
Related to #7174
https://docs.microsoft.com/en-us/dotnet/fundamentals/code-analysis/quality-rules/CA1200