I have a C# solution in Visual Studio 2008. I have added a configuration file (called configuration.xml) to the “Solution Items” of the solution.
The idea is to have this file copied to each Project’s debug/release directory upon build.
How can I achieve this?
In the post build step for each of your projects add the following line
If your configuration file is in a solution subdirectory you have to add that to the source path of course.