作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个应用程序,它的 app.exe.config 文件中有大量值。该应用程序由少数用户使用,并且设置会定期更改。所以我不得不更改配置文件,并将其发送给所有用户。
我很想将配置文件移动到某个地方的网络并将应用程序指向这个文件。我试过使用;
Imports System.Configuration.ConfigurationManager
OpenExeConfiguration("I:\app config\HelpDeskQuickCallLogger.exe.config")
最佳答案
如果指定了特定的配置文件 (sSpecificConfigurationFile),我们就是这样处理这个需求的:
Dim oConfig As System.Configuration.Configuration
If sSpecificConfigurationFile.EndsWith(".config", StringComparison.InvariantCultureIgnoreCase) Then
Dim oMap As New ExeConfigurationFileMap
oMap.ExeConfigFilename = sSpecificConfigurationFile
oConfig = ConfigurationManager.OpenMappedExeConfiguration(oMap, ConfigurationUserLevel.None)
Else
oConfig = ConfigurationManager.OpenExeConfiguration(sSpecificConfigurationFile)
End If
关于VB.Net 如何将 app.config 文件移动到自定义位置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8285421/
我是一名优秀的程序员,十分优秀!