The breakpoint will not currently be hit no symbols have been loaded for this document VS 2012 sharepoint.
I have tried almost all possible method which is mentioned, while googling
(Visited 80 times, 1 visits today)
Hey Praveen
This can be for many reasons, here’re the top ones that come to mind.Â
- The process running your code is not the latest built / debug code. This can be the W3WP.exe or Owstimer.exe (for time jobs). Always recycle the process (IISRESET or Restart service). Once this is done – attach to the correct process.Â
- Your code isn’t built in DEBUG mode.
- You have deployed the assembly to the old GAC – not the new one for .net 4.0. (This is for SP2013).
- You may have the assembly in the BIN and GAC meaning one will take priority.
- You are building against the wrong process architecture.Â
My guess is it’s number 1.
(Visited 1 times, 1 visits today)