I would like to run executable files of my WinForms application on other Windows machines.
However Visual Studio seems to build multiple executables for the same project in my workspace.
There is one executable in Visual Studio 2015\Projects\AmazonImport\AmazonImport\bin\Debug
and another one in Visual Studio 2015\Projects\AmazonImport\AmazonImport\obj\Debug
I have heard some people using executables stored in their ProjectName\ProjectName\bin\Release
folder but my Release
folder is empty.
What is the difference between these executable files? is one compiled with debugger flags and the other isn't?
Both executables work fine and they are the same size, what is the difference?
What is the proper way of distributing my application?