Edit and continue in ASP.NET web projects

后端 未结 5 738
慢半拍i
慢半拍i 2020-12-15 17:13

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 i

5条回答
  •  我在风中等你
    2020-12-15 17:42

    Although you can't edit the code while stepping through with the debugger, Web Site projects allow you to simply edit the source code and then reload the page. This is almost as useful as "Edit and Continue." ASP.NET dynamic compilation allows you to change the source code which triggers the automatic recompile.

    Here is a related article on Understanding ASP.NET Dynamic Compilation

    This page is also useful and has a section called Comparing Web Site Projects and Web Application Projects

提交回复
热议问题