Home > Software engineering >  Where can I find the bin/debug folder in visual studio 2019
Where can I find the bin/debug folder in visual studio 2019

Time:10-31

I am looking for the bin/debug folder in visual studio 2019 so that I can find the .exe file for my visual studio application. I have looked all over in the solotion explorer. Help please!

CodePudding user response:

Use the Open Folder in File Explorer option under the project and/or solution context menu.

fig1

fig2

CodePudding user response:

I have looked all over in the solotion explorer

The bin folder only shows up in solution explorer if you turn on Show All Files using this button at the top:

enter image description here

No need to "look all over" by the way; right under it is a search box you can type into..

If you're tying to find the bin folder so you can get your exe and put it somewhere to run it independently of visual studio, consider using the Publish option on the Build menu instead

  • Related