0

When i set a break point while debugging in ASP.net VS2012, the entire application restarts.

This was not the behaviour in VS2010.

Please how can i prevent the restart each time i set a breakpoint while debugging.

Thanks.

Charles Okwuagwu
  • 10,538
  • 16
  • 87
  • 157

1 Answers1

0

found the reason:

<system.web>
    <compilation debug="true" explicit="true" strict="true" optimizeCompilations="true" targetFramework="4.0">

just set optimizeCompilations="false"

Charles Okwuagwu
  • 10,538
  • 16
  • 87
  • 157