1. ホーム
  2. c#

[解決済み] アクティブなapp.configファイルのパスを見つけるには?

2022-04-20 10:21:39

質問

この例外ハンドラを完成させようとしています。

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を使用しているときだけ発生するようです。

どうすればいいですか?

これを試してみてください

AppDomain.CurrentDomain.SetupInformation.ConfigurationFile