I have the annoying problem, that since I changed to my new development machine (Win 7, VS 2013), the edit and continue feature in a WPF application (.net 4.0) is not working anymore. If I try to edit some code file while debugging, I always get the message
Edits were made which cannot be compiled. Execution cannot continue until compile errors are fixed.
but no error is shown in the "Error List".
To make matters even worse (speaking strictly of finding the cause of this issue) in some projects it's working fine. It's also not every WPF application that's affected with this issue...
After huge amounts of research and trial and error I found that when I replace the GeneratedInternalTypeHelper.g.i.cs in the obj directory with an empty one, everything seems to work just fine. But I'm not quite sure, if that's such a great idea to meddle with these files.
Has anyone an inkling what GeneratedInternalTypeHelper.g.i.cs does and what it's used for? Or any ideas on why edit and continue is not working properly?