Another way I found is by adding the app.config file as a linked file to the dependent project, e.g. here you would add a link to Subordinate.exe's app.config into Main.exe's project, and set it to be copied to the output directory when built. You can then change the name of the file that is copied to Main.exe's output directory at build time by editing the <Link> element in your project file, something like:
<None Include="..\Subordinate.ProjectFolder\app.config">
<Link>Subordinate.exe.config</Link>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
This has the same issue that you have to hardcode the name of the generated config file, but that's no worse than the AfterBuild approach, and I find this method a little more transparent, and it removes the build-order dependency issue that you mentioned.