Task list in VS2012?

Since there are no pages in 2012 and 2010, I used these instructions

I wrote below, but I see an empty task list. How to do it right? Note: "Enumate Comment Tasks" is true.

void myfunc() { ... // TODO Fix this function. ... 
+4
source share
2 answers

VS 2012, 2010, 2008: When you switch to the task list window, the topmost control is the drop-down list. Switch it from Custom Tasks to Comments. Your TODOs should appear in your comments. In the case of C ++, there are some limitations, look at my specific C ++ answer.

+7
source

For C ++, enumeration is disabled by default for performance reasons: link . See Also: link . But if I turn on the switch mentioned in another StackOverflow topic, I still haven't seen all the TODOs. I have to actually open the file with TODO, and then I see only TODO in open files.

+1
source

All Articles