Force Documentation in VS(2010)

后端 未结 2 1926
眼角桃花
眼角桃花 2021-01-16 08:54

I am simply searching how to obtain errors/warning for each function/member that isnt documented.

Im pretty sure I managed to do this on one of my proj

2条回答
  •  时光说笑
    2021-01-16 09:16

    I don't believe this is possible for VB.NET projects.

    StyleCop, a code analyzer that integrates with Visual Studio, is capable to detecting missing documentation, as well as very many unrelated things. You'll have to configure the settings yourself to keep only the necessary rules on. The project's .chm contains all of the rules; SA1600 is the rule you're looking for, but there may be other handy ones.

    You can also use Sandcastle to find missing documentation by looking through outputted errors when building documentation.

提交回复
热议问题