SyncMaster
SyncMaster

Reputation: 9936

How can I exit my current project in Visual Studio?

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.

Upvotes: 5

Views: 16109

Answers (4)

M4N
M4N

Reputation: 96571

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

Upvotes: 0

ljs
ljs

Reputation: 37817

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.

Upvotes: 2

Adam Nuttall
Adam Nuttall

Reputation: 477

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

Upvotes: 12

JaredPar
JaredPar

Reputation: 754823

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"

Upvotes: 0

Related Questions