I am running Visual Studio 2013.
When I stop debugging my MVC application, IIS Express stops automatically. How can I stop this happening?
I am running Visual Studio 2013.
When I stop debugging my MVC application, IIS Express stops automatically. How can I stop this happening?
The trick is to right click on your website and View -> View in Browser
(or just View in Browser
for Visual Studio 2012).
This will start the website in IIS Express and keep it running, not dependent on a debugging session being run.
One option would be to launch IIS Express manually. I believe you can also just detach from process in visual studio instead of stopping the debug session.
In Visual Studio 2013, Go to Tools
> Options
In Debugging
menu in side list find Edit and Continue
Uncheck the Enable Edit and Continue
check box
This will solve your problem