如何在.NET应用程序中使用自定义配置文件或app.config

时间:2016-04-28 10:53:27

标签: c# .net configuration app-config configuration-files

我有MVC5 .NET 4.6.1 C#Web应用程序 我想创建一个与web.config分开的自定义配置文件,以存储我的应用程序使用的一些设置。

我试图关注这篇文章https://support.microsoft.com/en-us/kb/815786

但我在app.config中设置的项目:

<?xml version="1.0"?>
<configuration>

    <system.web>
      <compilation debug="true" targetFramework="4.6.1" />
      <httpRuntime targetFramework="4.6.1" />
    </system.web>
  <appSettings>
      <add key="Key0" value="0" />
      <add key="Key1" value="1" />
      <add key="Key2" value="2" />
   </appSettings>

</configuration>
在我的应用程序中看不到

,例如。他们是空的:

string attr = ConfigurationManager.AppSettings["Key0"];

为什么它不起作用?我错过了什么吗?

或者我想创建一个自定义配置文件,例如。 mycustom.config用于定义我的全局应用程序设置。

修改

我使用的解决方案

发表这篇文章https://social.msdn.microsoft.com/Forums/vstudio/en-US/11e6d326-c32c-46b1-a9a2-1fbef96f33ee/howto-custom-configuration-files?forum=netfxbcl

在web.config中:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
       <configSections>
              <section name="newAppSettings" type="System.Configuration.AppSettingsSection, System.Configuration, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
       </configSections>
       <newAppSettings file="C:\mycustom.config"/>
</configuration>

然后是mycustom.config

<?xml version="1.0" encoding="utf-8" ?>
<newAppSettings>
       <add key="OurKey" value="OurValue"/>
</newAppSettings>

阅读价值:

System.Collections.Specialized.NameValueCollection newAppSettings = (System.Collections.Specialized.NameValueCollection)System.Configuration.ConfigurationManager.GetSection("newAppSettings");
string key = Convert.ToDateTime(newAppSettings["OurKey"]);

2 个答案:

答案 0 :(得分:1)

您可以为连接字符串和应用设置使用单独的配置文件:

<appSettings configSource="appSettings.config" />
<connectionStrings configSource="connectionStrings.config"/>

appSettings.config文件

<?xml version="1.0" encoding="utf-8" ?>
<appSettings>
    <add key="Setting1" value="App setting 1" />
</appSettings>

connectionStrings.config文件

<?xml version="1.0" encoding="utf-8"?>
<connectionStrings>
    <add name="MyConnStr1" connectionString="My connection string" />
</connectionStrings>

用法与以前相同:

var setting1 = ConfigurationManager.AppSettings["Setting1"];
var connString1 = ConfigurationManager.ConnectionStrings["MyConnStr1"].ConnectionString;

答案 1 :(得分:-1)

            //Helps to open the Root level web.config file.
            Configuration webConfigApp = WebConfigurationManager.OpenWebConfiguration("~");

            //Modifying the AppKey from AppValue to AppValue1
            webConfigApp.AppSettings.Settings["AppKey"].Value = "AppValue1";



<appSettings>
    <add key="AppKey" value="AppValue"/>
  </appSettings>