如何更改应用程序配置文件名(AppName.exe.config)?
我在 VB.NET 中使用 My.Settings 对象,它自动从 AppName.exe.config 文件获取应用程序设置。 如何将配置存储在其他名称的文件中,而不是 AppName.exe.config 中? 我有几个程序,它们现在都使用自己的 .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 uses their own .config file, but in fact they all are clones, and if I change some setting I need to edit several configs.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这适用于
,不确定它是否适用于“设置”设计时间
将 app.config 文件放在解决方案文件夹中,以便从项目上一级。对于解决方案资源管理器中的每个项目,执行以下操作
- 添加>现有项目
- 浏览到解决方案根目录中的 app.config >添加为链接(“添加”按钮附近的小箭头)
运行时
您可以使用此代码加载配置(C#)
This will work with
<appSettings>
, not sure if it works with the SettingsDesign 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#)