Is there any way to annotate sections of my code to generate out a ‘Messages’ item when building? There are some spots in my code I want to mark as things to get changed in an upcoming revision.
Any tools or features that would give me something similar to this? I was thinking Bookmarks, but I’ve found them to be kind of clunky in VS2010.

Set comments in your code like this:
The
//TODO:comment is a built-in extension of Visual Studio and the given comment is shown in the “Task List”-Control of the IDE.With a double click on the item in the “Task List” you can jump to the spot in your code where the comment is set.
Read this article for further information: How to: Create Task List Comments