How to keep MVC application running in IIS Express (in Visual Studio) after stopping the debug?

2

I'm doing a project in ASP.Net MVC. On the company machine I run the project once (F5), stop the debug and continue accessing the application pages normally.

On my personal machine if I stop the debug, the page says that it is not possible to access the site because it was not found, that is, if I want to navigate the application, it always has to be debugging.

I imagine there is a setup in Visual Studio to not stop the application when stopping the debug, what would it be?

I use Visual Studio 2015 on both machines.

    
asked by anonymous 06.03.2017 / 23:57

1 answer

4

You can keep IIS Express running your application even after you stop debugging, so you need to disable the Edit and continue option in Visual Studio.

Walkthrough: On the top menu, click tools > options > debugging , scroll to the end and uncheck the Enable edit and continue checkbox.

    
07.03.2017 / 00:03