QUESTION:
I have a small console project in Visual Studio 2010 and I want to build and publish console application as a standalone EXE file or package with a small number of files to be copy-paste deployed if possible.
There is of course an .EXE file with a bunch of .DLL files in ProjDir/bin/Release
but this folder contains multiple files(DLLs, config file, resource etc.), and I would prefer to have just one .EXE file if possible.
If anyone knows a good method of how to package .NET application into one executable file, please share!
Thanks!