NUnit projects and config files
NUnit project files (*.nunit) are an easy way to specify test assemblies you want tested during the build or continuous integration. Unfortunately, if you use app.configs in your test assemblies, you will quickly realize that NUnit isn’t loading them. For a test project, a single AppDomain is used (by default). Today, I figured out how to change the default behavior quite by accident. In NUnit GUI, go to Tools -> Settings then Assembly Isolation. »