vote up 3 vote down star

I've enabled Enable Edit and Continue on the Web Properties page and it's also enabled in my configuration, yet Visual Web Developer 2008 Express Edition refuses to allow me to edit source files of an ASP.NET MVC project. I can edit the aspx file with no problem though.

Any ideas what's wrong or what's missing?

flag

77% accept rate
Now I'm getting another message: Changes are not allowed if the assembly has not been loaded. – J. Pablo Fernández May 25 at 18:38

4 Answers

vote up 2 vote down

If you are targeting x64 or Any CPU on a 64 bit machine you cannot use edit and continue. It only works when you are targeting x32.

I set my Platform target to x32 for the Debug configuration for this reason.

link|flag
Interesting point. When I was having the trouble initially I was in a fully 32bit system, so I suppose I was targeting 32bit; but now I'm on 64bit so I'm going to check it out. Thanks for the pointer. – J. Pablo Fernández May 25 at 18:20
Wow! Didn't know that... Cool tip, thanks! – Gerardo Contijoch May 31 at 20:33
vote up 0 vote down

You have to enable this on two places. See this blog post about Edit and continue for Web Application Projects (WAP)

link|flag
I did enable it in two places: Enable Edit and Continue on the Web Properties page and my global Visual Studio configuration. Nevertheless I'll read the post when I get home and see if it adds something I was missing. Thanks. – J. Pablo Fernández May 27 at 11:15
I already had those two enabled, still not working. – J. Pablo Fernández May 30 at 17:50
vote up 0 vote down check

My conclusion is that it just doesn't work.

link|flag
vote up 0 vote down

To anyone running Vista 64 bit...

It may be that the IDE is not ready for Edit and Continue (EnC) web apps on Vista 64 bit without a tweek.

My situation: Migrated Web App to Vista 64 bit. Set platform to x86, set EnC in Tools/Options & Web properties, Debug flag in Web.Config, Debug mode set in Build configuration, etc, etc.

No joy - Could hit break points, inspect variables, etc, but could not EnC.

There were 7 Google hits on Msg "Changes are not allowed if the assembly has not been loaded". No new advice there for this situation though.

After trying numerous things finally tried changing the Build output path from "bin\x86\debug" to "bin\".

There was great joy across the land - Debug with EnC works now.

link|flag

Your Answer

Get an OpenID
or

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