I am having a windows application developed in C# language,Its a simple one form one button application with no logic running in Visual studio 2005 in debug mode.What i want to know is,whether there is a way to free the process from visual studio debug mode and make it run as though launched from exe (double click).This is not any requirement of project this is sheer out of my curiosity. Just clarifying things I am very sure about running the exe from the debug /release folder.My question is to free the process after it is launched from visual studio.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
If you have attached the debugger, and now want to release it, use the Debug->Detach All command. |
|||
|
|
Press Ctrl+F5 or select Start Without Debugging from the Debug menu. |
|||
|
|
|
Well... If you want to run your app without attaching a Debugger to it, just press Ctrl+F5 from within Visual Studio. Hope that's what you asked for. |
|||
|
|