Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

stop project that started without debugging

It's easy to stop a program that is being debugged(Debug -> Start Debugging) in visual studio, but is there a way to stop a program that was started without debugging(Debug -> Start Without Debugging)?

Update: From within visual studio.

like image 955
Jesse Avatar asked May 30 '13 20:05

Jesse


People also ask

What does start without debugging do?

"Start without debugging" just tells Windows to launch the app as it would normally run. "Start with debugging" starts the VS debugger and has it run the app within the debugger.

How do I force stop debugging in Visual Studio?

To end a debugging session in Microsoft Visual Studio, from the Debug menu, choose Stop Debugging.

How do I stop Visual Studio from running?

Select the left margin or press F9 next to the line of code you would like to stop at. Run your code or hit Continue (F5) and your program will pause prior to execution at the location you marked.


2 Answers

You can find iisexpress icon in tray, and stop site: enter image description here

like image 168
Vlad Avatar answered Oct 24 '22 08:10

Vlad


No. "Start Without Debugging" spawns a new, independent process. Even shutting down Visual Studio won't terminate it.

Unless your project is a web project and uses the ASP.NET Development Server. That one VS actually shuts down on exit.

like image 39
Max Avatar answered Oct 24 '22 10:10

Max