so I made this app, there is DLLs, conf files and 1 conf file that need to be modified by the user.
After doing some research I learned that an ready exe file was in bin/debug.
However in bin/debug I have :
debug
---conf.ini
---stuff.xml
---dll1.dll
---dll2.dll
---myExe.exe
---myExe.exe.config
---myExe.pdb
---myExe.vshost.exe
---myExe.vshost.exe.config
---myExe.vshost.exe.manifest
---etc
I'd like to end up with something like :
debug
---conf.ini
---myExe.exe
---Depandancies
------stuff.xml
------dll1.dll
------dll2.dll
------myExe.exe.config
------myExe.pdb
------myExe.vshost.exe
------myExe.vshost.exe.config
------myExe.vshost.exe.manifest
------etc
Is this possible?
Thanks.
Ps : I'm using VS2013 and coding in .net 4.5.1