VB.Net 如何将 app.config 文件移动到自定义位置

发布于 2024-12-18 17:03:22 字数 322 浏览 0 评论 0原文

我有一个应用程序,其 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

送你一个梦 2024-12-25 17:03:22

我不确定这是否是您正在寻找的内容,但看看此代码项目是否 文章有帮助。

上面文章的描述:

本文演示了如何编写自定义设置提供程序
允许您将 My.Settings 保存到您自己的存储系统。

I am not sure if this is what you are looking for but see if this Code Project Article helps.

Description from above article:

This article demonstrates how to write a custom Settings Provider to
allow you to persist your My.Settings to your own storage system.

轮廓§ 2024-12-25 17:03:22

如果指定了特定配置文件 (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

This is how we handle this requirement if a specific configuration file (sSpecificConfigurationFile) is specified:

    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
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文