1

Whenever I get a bluescreen of death or a locally installed program freezes my computer and I have to reset VS does a nice job of recovering the text files I'm editing. Unfortunately it loses all the breakpoints and bookmarks I have saved, they seem to revert make to an early state from weeks before. Is there a way to autosave/autorecover bookmark and breakpoint. Sometimes this results in days of work lost.

Donald Herman
  • 314
  • 1
  • 5
  • 15

1 Answers1

1

Breakpoints (and probably bookmarks) are stored in the .suo file. More info here.

It's not recommended to commit these to a version control repository but you could write a script to copy the file to another directory location, then run that script as a scheduled task.

Community
  • 1
  • 1
zacran
  • 855
  • 6
  • 18