views:

31

answers:

1

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

+2  A: 

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.

Leom Burke
Thanks for your quick answer!!
pabloide86
http://msdn.microsoft.com/en-us/library/zce12xx2.aspx
Matthew Whited