VB.Net 如何将 app.config 文件移动到自定义位置
我有一个应用程序,其 app.exe.config 文件中有大量值。该应用程序由少数用户使用,并且设置会定期更改。所以我必须更改配置文件,并将其发送给所有用户。
我很想将配置文件移动到网络上的某个位置,并将应用程序指向该文件。我尝试过使用;
Imports System.Configuration.ConfigurationManager
OpenExeConfiguration("I:\app config\HelpDeskQuickCallLogger.exe.config")
但我无法让它读取值。
有人有什么想法吗?
I have an application that has a load of values in its app.exe.config file. The application is used by a few users, and the settings would change on a regular basis. so im having to change the config file, and send it out to all users.
I'd love to move the config file to the network somewhere and point the app to this file. ive tried to use;
Imports System.Configuration.ConfigurationManager
OpenExeConfiguration("I:\app config\HelpDeskQuickCallLogger.exe.config")
But i cant get it to read in the values.
Anyone any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定这是否是您正在寻找的内容,但看看此代码项目是否 文章有帮助。
上面文章的描述:
I am not sure if this is what you are looking for but see if this Code Project Article helps.
Description from above article:
如果指定了特定配置文件 (sSpecificConfigurationFile),这就是我们处理此要求的方式:
This is how we handle this requirement if a specific configuration file (sSpecificConfigurationFile) is specified: