Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio 2008/2010 Code Bookmarks Backup

How can I backup my code bookmarks? (Visual Studio 2008/2010) I would like to share them with my team...

like image 362
pabloide86 Avatar asked Jun 14 '10 16:06

pabloide86


People also ask

How do I export bookmarks in Visual Studio?

The bookmarks are stored in the solution's SUO file. So in theory you can import/export them by copying that file around, or placing it in source control.

Does Visual Studio code have bookmarks?

Bookmarks is an extension created for Visual Studio Code.

How do I see all bookmarks in Visual Studio?

Open the bookmark window in Visual Studio The default keyboard shortcut for this is Ctrl+ K, Ctrl+W and can be used to quickly launch the Bookmark window.


1 Answers

Bookmarks are stored in your .suo file and as such are designed to be user specific. The suo is hidden by default for a reason :-). It is also not plain text so cant simply be read in notepad or even notepad++.

EDIT

If you need to share locations in the code can you not create a custom token for the task list and use comments instead - this is a bit of a fudge and not the intended use for the task list but it would work.

like image 178
Leom Burke Avatar answered Oct 06 '22 22:10

Leom Burke