Visual studio task list
-
is there any way to have it show all
// TODO
comments in the solution instead of only those in files currently open?Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall
-
is there any way to have it show all
// TODO
comments in the solution instead of only those in files currently open?Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall
:confused: using VS2008C# express I see all TODO comments, even with all source files closed.
Luc Pattyn [Forum Guidelines] [My Articles]
- before you ask a question here, search CodeProject, then Google - the quality and detail of your question reflects on the effectiveness of the help you are likely to get - use the code block button (PRE tags) to preserve formatting when showing multi-line code snippets
-
:confused: using VS2008C# express I see all TODO comments, even with all source files closed.
Luc Pattyn [Forum Guidelines] [My Articles]
- before you ask a question here, search CodeProject, then Google - the quality and detail of your question reflects on the effectiveness of the help you are likely to get - use the code block button (PRE tags) to preserve formatting when showing multi-line code snippets
2k8pro I don't. I created a dummy solution and it had the same behavior; so it's probably not solution specific. There doesn't appear to be anything relevant on the appropriate options page either.
Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall
-
2k8pro I don't. I created a dummy solution and it had the same behavior; so it's probably not solution specific. There doesn't appear to be anything relevant on the appropriate options page either.
Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall
I am unaware of anything besides Tools/Options/Environment/TaskList. To get the list updated, I suspect you need the relevant files recompiled; you did try a Rebuild All? :)
Luc Pattyn [Forum Guidelines] [My Articles]
- before you ask a question here, search CodeProject, then Google - the quality and detail of your question reflects on the effectiveness of the help you are likely to get - use the code block button (PRE tags) to preserve formatting when showing multi-line code snippets
-
I am unaware of anything besides Tools/Options/Environment/TaskList. To get the list updated, I suspect you need the relevant files recompiled; you did try a Rebuild All? :)
Luc Pattyn [Forum Guidelines] [My Articles]
- before you ask a question here, search CodeProject, then Google - the quality and detail of your question reflects on the effectiveness of the help you are likely to get - use the code block button (PRE tags) to preserve formatting when showing multi-line code snippets
Just tried that. No joy. The comments appear/disappear as the containing .cs files are opened/closed. As a semi-related question: is there a way to display both comments and user tasks at the same time?
Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall
-
Just tried that. No joy. The comments appear/disappear as the containing .cs files are opened/closed. As a semi-related question: is there a way to display both comments and user tasks at the same time?
Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall
NAFAIK :)
Luc Pattyn [Forum Guidelines] [My Articles]
- before you ask a question here, search CodeProject, then Google - the quality and detail of your question reflects on the effectiveness of the help you are likely to get - use the code block button (PRE tags) to preserve formatting when showing multi-line code snippets
-
2k8pro I don't. I created a dummy solution and it had the same behavior; so it's probably not solution specific. There doesn't appear to be anything relevant on the appropriate options page either.
Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall
this[^] confirms TODO may or may not apply only to open source files, but does not really help. Seems like MS is protecting you against too many TODO: big project = many TODOs = VS Pro = only for open files FWIW: you can always search the solution for TODO :)
Luc Pattyn [Forum Guidelines] [My Articles]
- before you ask a question here, search CodeProject, then Google - the quality and detail of your question reflects on the effectiveness of the help you are likely to get - use the code block button (PRE tags) to preserve formatting when showing multi-line code snippets
-
is there any way to have it show all
// TODO
comments in the solution instead of only those in files currently open?Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall
-
I always use #warning for these kind of things. It forces a warning at compile time. And no code goes into production until all warnings are removed.
I might have to do that. I don't leave warnings other than bogomessages from autogenerated code alive at the production level either. I'm doing a vs2k3 to vs2k8 conversion/revision of a project I haven't looked at in about 2 years. I'm putting down lots of
//TODO replace ArrayList with List
or//TODO see if there's a better way
type comments as I review things while working on the revisions design doc.Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall
-
this[^] confirms TODO may or may not apply only to open source files, but does not really help. Seems like MS is protecting you against too many TODO: big project = many TODOs = VS Pro = only for open files FWIW: you can always search the solution for TODO :)
Luc Pattyn [Forum Guidelines] [My Articles]
- before you ask a question here, search CodeProject, then Google - the quality and detail of your question reflects on the effectiveness of the help you are likely to get - use the code block button (PRE tags) to preserve formatting when showing multi-line code snippets
GAH!!!!! WTF can't they make stuff like that user configurable with different defaults if it'll make the C#/VB/C++ PM's feed good to have theirs work differently.
Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall
-
I might have to do that. I don't leave warnings other than bogomessages from autogenerated code alive at the production level either. I'm doing a vs2k3 to vs2k8 conversion/revision of a project I haven't looked at in about 2 years. I'm putting down lots of
//TODO replace ArrayList with List
or//TODO see if there's a better way
type comments as I review things while working on the revisions design doc.Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall
I'm on 2k8Std. All Comment Tasks show, whether file open or not.
Henry Minute Do not read medical books! You could die of a misprint. - Mark Twain Girl: (staring) "Why do you need an icy cucumber?" “I want to report a fraud. The government is lying to us all.”
-
I always use #warning for these kind of things. It forces a warning at compile time. And no code goes into production until all warnings are removed.
Is there a way to keep "#warning" out of the error list itself?
#warning Old mockup. Remove from release app.
I this example I'd like to only see "Old mockup. Remove from release app.".Today's lesson is brought to you by the word "niggardly". Remember kids, don't attribute to racism what can be explained by Scandinavian language roots. -- Robert Royall