我想通过传递命令行参数来覆盖标准app.config的使用。如何更改默认应用程序配置文件,以便在访问ConfigurationManager.AppSettings时访问命令行中指定的配置文件?
编辑:
事实证明,加载与EXE加上.config名称不同的配置文件的正确方法是使用OpenMappedExeConfiguration。例如。
ExeConfigurationFileMap configFile = new ExeConfigurationFileMap();
configFile.ExeConfigFilename = Path.Combine(Environment.CurrentDirectory, "Shell2.exe.config");
currentConfiguration = ConfigurationManager.OpenMappedExeConfiguration(configFile,ConfigurationUserLevel.None);
这部分有效。我可以在appSettings部分看到所有键,但所有值都为空。
答案 0 :(得分:14)
所以这里的代码实际上允许我实际访问默认配置文件中的appSettings部分。
ExeConfigurationFileMap configFile = new ExeConfigurationFileMap();
configFile.ExeConfigFilename = Path.Combine(Environment.CurrentDirectory, "Alternate.config");
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(configFile,ConfigurationUserLevel.None);
AppSettingsSection section = (AppSettingsSection)config.GetSection("appSettings");
string MySetting = section.Settings["MySetting"].Value;
答案 1 :(得分:3)
批处理文件,用于将所需的配置文件复制到appname.exe.config,然后运行appname.exe。
答案 2 :(得分:1)
我也需要为我的应用程序执行此操作,处理标准配置对象变成了这样一个简单的概念的麻烦'我走这条路:
然后我可以在命令行传递我需要的任何配置文件名,如果不存在 - 只需将app.config加载到 DataSet 。
Jeezus之后那么简单得多了。 : - )
罗恩
答案 3 :(得分:1)
这是使用默认配置并通过命令行接受覆盖的应用程序源的相关部分:
将当前或用户配置导入Config对象
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
string defCfgName = Environment.GetCommandLineArgs()[0] + ".config";
if (arg.Length != 0)
{
string ConfigFileName = arg[0];
if (!File.Exists(ConfigFileName))
Fatal("File doesn't exist: " + ConfigFileName, -1);
config = ConfigurationManager.OpenMappedExeConfiguration(new ExeConfigurationFileMap { ExeConfigFilename = ConfigFileName }, ConfigurationUserLevel.None);
}
else if (!File.Exists(defCfgName)) Fatal("Default configuration file doesn't exist and no override is set." , -1);
使用配置对象
AppSettingsSection s = (AppSettingsSection)config.GetSection("appSettings");
KeyValueConfigurationCollection a = s.Settings;
ConnectionString = a["ConnectionString"].Value;
答案 4 :(得分:0)
这并不是您想要的......将实际的ConfigurationManager
静态对象重定向到指向不同的路径。但我认为这是解决问题的正确方法。查看OpenExeConfiguration
课程中的ConfigurationManager
方法。
如果上述方法不符合您的要求,我认为使用企业库框架的Configuration capabilities(由Microsoft Patterns& Practices团队开发和维护)也是值得的。
具体来看看FileConfigurationSource
类。
以下是一些代码,其中重点介绍了Enterprise Library FileConfigurationSource
的用法,我相信这完全符合您的目标。为此,您需要从Ent Lib获得的唯一程序集是Microsoft.Practices.EnterpriseLibrary.Common.dll
。
static void Main(string[] args)
{
//read from current app.config as default
AppSettingsSection ass = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None).AppSettings;
//if args[0] is a valid file path assume it's a config for this example and attempt to load
if (args.Length > 0 && File.Exists(args[0]))
{
//using FileConfigurationSource from Enterprise Library
FileConfigurationSource fcs = new FileConfigurationSource(args[0]);
ass = (AppSettingsSection) fcs.GetSection("appSettings");
}
//print value from configuration
Console.WriteLine(ass.Settings["test"].Value);
Console.ReadLine(); //pause
}