At the moment, the breakpoint will not be deleted. Unexpected error reading characters while processing <file> (server-side characters)

Sometimes when debugging in Visual Studio 2013 I get hollow breakpoints and this message is for them:

At the moment, the breakpoint will not be deleted. Unexpected error reading characters while processing App_Web_i5dbbmvv.dll (server-side characters).

When this happens, breakpoints will not be deleted (obviously). In addition, if I get an exception while working in this state, I get the message "The source file is different from when the module was created. Would you like the debugger to use it?"

The building does not correct it again. Sometimes a clean-and-rebuild will do the trick, in other cases I have to clean -> exit VS -> open VS again -> build.

This is the same error as post post debugging VS 2012 Unexpected error reading characters while processing <file.exe>

, but the published solution is for C ++, and this parameter does not exist when developing C #.

+4
source share
1 answer

If you are using ASP.NET, try deleting the created temp files .

clean% windir% \ Microsoft.NET \ Framework \ VERSION \ Temporary ASP.NET files

+3
source

Source: https://habr.com/ru/post/1540244/


All Articles