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
Create a well-formed XML file in C# documents to avoid complier warning and error
If we want to add description in docs for modules' properties and methods, we need generate a well-formed XML file per dll file and provide them to docs team.
Some of public visible properties and methods have no comments: Suppress warning1591
Bad format
The space in tag < see> should be removed.
/// A < see cref = "global::System.Threading.Tasks.Task" /> that will be complete when validation is completed.
->
/// A <see cref = "global::System.Threading.Tasks.Task" /> that will be complete when validation is completed.
Fill in the documentation comments (great, but time-consuming)
Turn off the comment generation (in project properties)
Disable the warning in project properties
The text was updated successfully, but these errors were encountered:
BethanyZhou
changed the title
[WIP]Create a well-formed XML file in C# documents to avoid complier warning and error
Create a well-formed XML file in C# documents to avoid complier warning and error
Sep 28, 2021
Create a well-formed XML file in C# documents to avoid complier warning and error
If we want to add description in docs for modules' properties and methods, we need generate a well-formed XML file per dll file and provide them to docs team.
There are few issues in our current c# code detected by referring https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/xmldoc/recommended-tags.
Bad format
The space in tag < see> should be removed.
Existing bugs
See #842
Inappropriate usage of tags
See #843
Many methods have no comments for them.
Error
Solution:
The text was updated successfully, but these errors were encountered: