I wonder if there is a way or a workaround to have the config files in the following structure:
App.Config
<configuration>
<appSettings configSource="AppSett.config">
<add key="test1" value="test2"/>
</appSettings>
</configuration>
and my AppSett.config will look like:
<appSettings>
<add key="test3" value="test3"></add>
</appSettings>