微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何找到活动 app.config 文件的路径?

如何解决如何找到活动 app.config 文件的路径?

尝试这个

AppDomain.CurrentDomain.Setupinformation.ConfigurationFile

解决方法

我正在尝试完成这个异常处理程序:

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

这个问题似乎只发生在我使用 nUnit 时。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。