Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2015 - User tasks gone?

I've recently switched from Visual Studio 2013 to 2015 and converted all of my old projects. However, now I can't seem to find my user tasks anymore? There used to be a drop-down menu in the task list, but it looks like that's gone in the new version, unless I'm missing something.

Have user tasks been removed? If so, is there a way I can still retrieve them from my project?

like image 903
Silverlan Avatar asked Jul 31 '15 17:07

Silverlan


People also ask

How do I see all Todos in Visual Studio?

From within Visual Studio Go to View -> Task List. This will display the Task List window and show you any area of your open Solution that has existing comments that start with // TODO . You can filter down to your Current Project, Current Document, or Open Documents.

How do I add a task list in Visual Studio?

Comments TODO is one of the identifiers that is in Visual Studio by default. We can create an identifier of our own. Click "Tools" -> "Options". In the Options dialog, select "Environment" -> "Task List".

Where is Task Manager in VS code?

Manages tasks in Visual Studio Code in a custom activity view.

What is task list in Visual Studio?

Use Task List to track code comments that use tokens such as TODO and HACK , or custom tokens, and to manage shortcuts that take you directly to a predefined location in code. Click on the item in the list to go to its location in the source code. Note. This topic applies to Visual Studio on Windows.


2 Answers

The documentation on MSDN has been updated with this paragraph:

The user task feature has been removed in Visual Studio 2015. When you open a solution which has user task data from Visual Studio 2013 and earlier in Visual Studio 2015, the user task data in your .suo file will not be affected, but the user tasks will not be displayed in the task list.

If you wish to continue to access and update your user task data, you should open the project in Visual Studio 2013 and copy the content of any user tasks into your preferred project management tool (such as Team Foundation Server).

like image 78
Dai Avatar answered Oct 05 '22 11:10

Dai


Checked with MSDN:

Using the Task List

It doesn't work for me either, but you likely have more practice with Visual Studio than I do...

like image 21
AmishJohn81 Avatar answered Oct 05 '22 10:10

AmishJohn81