How can I open a Visual Studio Web Site in another PC without losing all my breakpoints? -


at office pc working on web site using visual studio 2012. created several breakpoints (using f9) in code-behind of several pages.

i made copy of whole web site folder , opened again in pc (using same version of vs2012).

now breakpoints gone.

how can open visual studio web site in pc without losing breakpoints?

thanks in advance.

cd

the project's .suo file has breakpoint information. try copying .suo , replacing other pc's .suo file.

if you're unfamiliar it, project solution file (e.g. "myproject.sln") has associated file, solution user options file (e.g. "myproject.suo"), stores various information, including breakpoints.


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -