Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio XML summaries not working

When I used to use Visual Studio I could use /// to declare a summary of my method at the and it would autogenerate all the tags and add a line for any params however after installing Visual Studio 2015 I no longer seem able to do this by default. Is there something I need to enable in the settings? I'm coding in C++ however if I don't think that is the problem.

Thanks

like image 218
Antonio Gravano Avatar asked Oct 16 '25 22:10

Antonio Gravano


1 Answers

This is a Visual Studio setting. For C#, you turn it on by going to Tools -> Options and ensuring that the Generate XML documentation comments for /// is enabled.

There is a similar setting under Basic for VB, but I can't see a similar setting for C++ (I don't have the full C++ feature installed though so that may be why). Hopefully you can find a similar setting.

like image 69
adrianbanks Avatar answered Oct 19 '25 20:10

adrianbanks