Edit and continue in ASP.NET web projects

asp.net

Solution

With a website project edit and continue is disabled by default. To enable it you must go to: Properties->Web->'Servers' section, check 'Enable Edit and Continue'. Then, if you break your code you can edit it and continue. You cannot edit the code if you are not stepping through it. i.e. you have to break before editing.

Problem

I know how to enable Edit and Continue in ASP.NET Web Application projects (see here), however, I found no information as to how to achieve the same thing in ASP.NET Web Site projects. Is this feature available in Web Site projects? If no, it seems that converting our Web Site project to a Web Application is really worth doing.

Original source