¿Cómo encontrar la ruta del archivo app.config activo?

Estoy tratando de terminar este manejador de excepciones:

if (ConfigurationManager.ConnectionStrings["ConnectionString"]==null)
{
    string pathOfActiveConfigFile = ...?
    throw new ConfigurationErrorsException(
       "You either forgot to set the connection string, or " +
       "you're using a unit test framework that looks for  "+
       "the config file in strange places, update this file : " 
       + pathOfActiveConfigFile);
}

ste problema parece que solo me sucede cuando estoy usando nUnit.

Respuestas a la pregunta(8)

Su respuesta a la pregunta