I\'m creating a console app in Visual Studio 2010 with c#. I want this app to be stand alone, in that all you need is the exe, and you can run it from anywhere. I also want
You mean you need to add it to the exe as a resource? Well, first of all you cannot, app.config is file based not resource based.
On the other hand, the only point of config file is that you can change it. Otherwise just hard-code or use constants.