vote up 1 vote down star

I get the error

changes not allowed when unmanaged debugging is enabled

Actually I get the below message but Google doesn't return many results

changes are not allowed when unmanaged debugging is enabled

What does this mean? How do I fix it? Note this is an ASP.NET project. Checkmarking Edit and Continue does not make this error go away.

flag

38% accept rate
I updated my answert for ASP .Net – SLaks Aug 26 at 11:20

2 Answers

vote up 1 vote down check

Go to Project Properties and uncheck Native Code in the Debuggers section of the Web tab.

EDIT: Changed for ASP .Net

link|flag
There is no debug section in (C#) ASP.NET projects – acidzombie24 Aug 26 at 8:10
1  
THANK YOU! – acidzombie24 Aug 26 at 12:49
vote up 1 vote down

The Mixed Mode debugger in Visual Studio is a completely different debugger than either the native code debugger or managed code debugger. The primary purpose is to tie into both the very complicated managed debugging API and the very complicated native debugging API at the same time to provide a reliable, usable debugger when working with native and managed code simultaneously. Due to how the debuggers are written, the Visual Studio mixed-mode debugging team would have had to completely re-implement edit-and-continue (which happens to be the most technically challenging debugging feature) to include it. I imagine this was cut because:

  • It is an extremely challenging feature to re-implement.
  • The implementation would cause significant additional coupling to internal changes in the CLR debugging API (and probably the internals) and the native debugging API.
  • The performance of the mixed-mode debugger lags the managed code debugger significantly, leading the majority of users to use the latter for general purpose debugging even without considering the ENC feature. As such, implementing the feature would attract a minimal number of users.

The benefits weighted against the practical challenges leads to an overwhelming vote of leaving this feature out.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.