views:

92

answers:

4

In Visual Studio, how can I exit the current project and load another? Something like reloading?

i.e when i'm executiing my project(window application) i need to close the current exe and load another instance of the exe file.

A: 

Simply open another project. Visual Studio will automatically close the current project when opening a new one.

I'm still not entirely sure that's what you're asking for though. Here are a couple of related actions and the way to achieve them

  • Unload project: Right Click and select "Unload"
  • Remove project from solution: Right click and select "Remove"
  • Close Solution: Right click on the solution and select "Close"
JaredPar
i.e when i'm executiing my project(window application) i need to close the current exe and load another instance of the exe file.
pragadheesh
sorry for not being clear.
pragadheesh
+2  A: 

File --> Close Project... File --> Open Project

ginozola
i.e when i'm executiing my project(window application) i need to close the current exe and load another instance of the exe file.
pragadheesh
Stop debugging and start debugging?
meandmycode
+2  A: 

I think you're looking for the restart action.

View|Toolbars|Debug will show you the toolbar; the square blue icon with an arrow pointing left is what you're after.

On my system the keyboard shortcut is Ctrl+Shift+F5.

kronoz
A: 

If you mean how to restart the program currently being debugged, then use the command "Debug -> Restart" or press "Ctrl+Shift+F5".

M4N