我在文件夹中有几个控制台应用程序和一个MVC Web API应用程序。所有这些应用程序是否可以引用驻留在父文件夹中的constants.config文件? 在所有应用程序的每个Web.config文件中,我已将config部分声明如下:
<configSections>
<section name="Constants" type="System.Configuration.NameValueFileSectionHandler, System, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
</configSections>
<Constants file="~/Constants.config">
但是应用程序不会读取Constants.config。如何正确地给出路径?