SharpDoc
SharpDoc copied to clipboard
Check for doc inheritance
Just a reminder on a feature I don't remember if it was correctly implemented:
- Support for inheritdoc tag
- Automatic inheritance of doc from members overrides
- Check inheritance from interface members is also working
Yea... I suspect this currently doesn't work, but i'll test it tonight.
Automatic inheritance of doc from members overrides
So this works right now... no need for <inheritdoc> tag.
Actually, /// <inheritdoc/> is still handful when you don't want to have any warning when building documentation. Good, if it is only inheritdoc to fix, that will be quick.
when you don't want to have any warning when building documentation.
True.
We disable that warning during building right now because we have a ton of undocumented classes still. So that will come in very handy once we restore the warning to keep track of missing docs.
Check inheritance from interface members is also working
Just checked... that is working as well.