1
"Document file" ignores "<exclude /> for class definition
Problem reported by dnd82077 - 9/2/2019 at 4:34 AM
Resolved
If a class has been marked with "<exclude />", a "<summary>" and a "TODO" will still be created when "Document file" is executed. This should not be the case, especially since it works with methods.

4 Replies

Reply to Thread
0
Misha Zhutov Replied
Employee Post
Please explain that. It is not clear. Now if the class contains <exclude /> it cannot be documented. 
If you could document the class with "<exclude />" please provide us with its declaration.
0
dnd82077 Replied
Before:

''' <exclude />
Public Class Class1

    'Other stuff

End Class
After "Document File":

''' <exclude />
''' <summary>Class <see cref="Class1" />.</summary>
''' TODO Edit XML Comment Template for Class1
Public Class Class1

    'Other stuff

End Class
0
Misha Zhutov Replied
Employee Post Marked As Resolution
We have fixed it in VB.NET as well. Please let us know if you need an interim build.
0
dnd82077 Replied
Thank you so much!
It now works as expected.

Reply to Thread