How to edit and continue in Visual Studio 2008 and ASP.Net MVC?

后端 未结 5 1448
予麋鹿
予麋鹿 2021-02-04 06:01

I\'m trying to get edit-and-continue working with Visual Studio 2008 with an ASP.Net MVC project. I\'m running 64-bit, so that adds to the problem.

In Configuration Mana

5条回答
  •  无人及你
    2021-02-04 06:40

    You can't 'edit and continue' when the program is running. You must break to edit and continue, and if you have many threads you must break all. If when breaking, some threads continue to run, it not a problem with 'edit and continue' but a problem with the break options.

    Note: You don't need to stop the program, but you must break, and then you can continue.

提交回复
热议问题