How to change application config file name (AppName.exe.config)?
I use My.Settings object in VB.NET, which automatically gets application setting from AppName.exe.config file. How can I store config in file with other name, not AppName.exe.config? I have several programs, all of them now use开发者_如何学编程s their own .config file, but in fact they all are clones, and if I change some setting I need to edit several configs.
This will work with <appSettings>
, not sure if it works with the Settings
Design time
Put the app.config file in the solution folder so one level up from a project. For each of your projects in the solution explorer do the following
- Add > Existing Item
- Browse to app.config in solution root > Add As Link (small arrow near to the Add button)
Run time
You can use this code to load config (C#)
var fileMap = new ConfigurationFileMap(pathToConfig);
var configuration = ConfigurationManager.OpenMappedMachineConfiguration(fileMap);
精彩评论