como determinar se existe o arquivo app.config
Existe uma maneira de descobrir se existe um arquivo app.config sem usar "File.Exists"? Eu tente
if ( !ConfigurationManager.ConnectionStrings.ElementInformation.IsPresent )
{...}
mas IsPresent é falso, mesmo que exista app.config com uma cadeia de conexã
Edit: Interpretei incorretamente a propriedade IsPresent?