Como encontrar o caminho do arquivo app.config ativ

Estou tentando terminar este manipulador de exceções:

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);
}

Este problema parece acontecer apenas quando estou usando o nUni

questionAnswers(8)

yourAnswerToTheQuestion