Doxygen with C# internal access modifier

前端 未结 6 1710
故里飘歌
故里飘歌 2021-02-19 10:27

I am using Doxygen to generate some API docs for a C# project I am working on. I have quite a bit of \"internal\" functionality in this project and don\'t want Doxygen producing

6条回答
  •  小鲜肉
    小鲜肉 (楼主)
    2021-02-19 11:04

    Setting

    HIDE_UNDOC_CLASSES = YES
    

    works for me, even with EXTRACT_PRIVATE and PREDEFINED on default values. Not sure about the reason. I would expect they are required to be set on NO (so there is no documentation available for private members) and internal=private (so documentation is removed from internal classes as well), but that is not the case. internal and private classes are not mentioned anymore anywhere in the generated documentation.

提交回复
热议问题