views:

1012

answers:

4

I'm using Visual Studio 2008 to develop ASP.NET applications. Currently I'm debugging with running on IIS. I would like to switch to the development web server (Cassini) for debugging, so that I can use features like edit and continue. The reason that I'm not, is because the development web server only starts up when you are in debug mode. Is there any way to keep it running all the time, and just have Visual Studio attach to the existing server process like it does with IIS?

+2  A: 

Once started, the built-in web server continues executing even when you stop debugging, as long as your VS2008 project is still open. Just start up the debugger when you want to start debugging again. I typically have another browser window open and interact with the built-in web server from there instead of the browser window that it opens so I can keep working with the application in the same state even after turning off the debugger (which closes the opened browser window).

I'm running VS2008 on Windows XP SP3.

tvanfosson
+1  A: 

The simplest way I have found to acheive that is by launching the debugger as normal. Then in Visual Studio goto the Debug menu, and select detach all. It detaches from the Cassini web engine, but it does not shut it down, as it does when stopping debugging.

I am quite sure you are know that there is command line swithces that you can you use to launch the cassini engine, but my guess is you are looking for something slightly easier.

Detaching does not close the browser window that visual studio launched, and if you do close that spesific web window then it will stop debugging.

I am running VS 2008 SP1 on Vista 64x SP1 without IIS.

Hope it helps Rihan Meij

Rihan Meij
+3  A: 

You can also start your cassini server from the command line which takes alot of pain out of the whole "debug" effort...

Check out a good snippet here on how to do this: http://thoughtjelly.blogspot.com/2009/05/launch-cassini-from-command-line.html

Mark Cooper
+2  A: 

Rihan is partially correct...

In your Project Property page, Web tab: Enable Edit and Continue

If checked - The Development server will close when the app (not VS) stops.

If unchecked - Development server keeps running