gpt4 book ai didi

c# - 如何将 dll 配置文件添加到将 dll 作为引用添加的项目中?

转载 作者:行者123 更新时间:2023-11-30 21:50:02 25 4
gpt4 key购买 nike

我写了一个 UserLogin dll。该 dll 使用带有一些默认参数的 App.Config 文件。我已将配置文件重命名为 UserLogin.Config 以提高文件系统的可读性。

我编写了一个需要用户登录的新应用程序。我添加了 UserLogin.dll 作为对新应用程序的引用。问题是配置文件没有添加引用。我必须手动将它添加到 bin\debug 文件夹中才能通过 Visual Studio 运行应用程序。

我在部署它时没有这样的问题,因为我将配置文件添加为设置的一部分。

将配置文件添加到新应用程序以便我可以在开发环境中运行它的正确方法是什么?

以下是 UserLogin.config 文件:

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<appSettings>
<add key="IsTestEnvironment" value="false" />
<add key="AllowedUserForTestEnvironment" value="ehh" />
<add key="EnableLogging" value="false" />
</appSettings>
</configuration>

从UserLogin.config文件中读取的类:

public static class ConfigurationReader
{
private static AppSettingsSection _appSettings;

public static AppSettingsSection AppSettings
{
get
{
if (_appSettings == null)
{
var userPreferencesConfigFileMap = new ExeConfigurationFileMap();
userPreferencesConfigFileMap.ExeConfigFilename = "UserLogin.config";
var userPreferencesConfig = ConfigurationManager.OpenMappedExeConfiguration(userPreferencesConfigFileMap, ConfigurationUserLevel.None);
_appSettings = (AppSettingsSection)userPreferencesConfig.GetSection("appSettings");
}

return _appSettings;
}
}

public static bool IsTestEnvironment
{
get
{
return bool.Parse(AppSettings.Settings["IsTestEnvironment"].Value);
}
}

public static string AllowedUserForTestEnvironment
{
get
{
return AppSettings.Settings["AllowedUserForTestEnvironment"].Value;
}
}

public static string EnableLogging
{
get
{
return AppSettings.Settings["EnableLogging"].Value;
}
}
}

使用 UserLogin.dll 的新应用程序:

enter image description here

最佳答案

问题是您已将配置文件名重命名为自定义名称。

理想情况下,任何 DLL 都可以使用来自父 Exes App.config 的配置,您只需将您的应用程序设置添加到使用该 dll 的应用程序 (exe) 的 App.config 文件中。

为什么要这样分开。这不是一个好的做法。

既然你把它分开了,它就像拥有一个自定义的 xml 配置文件一样。

在这种情况下,您可以尝试使用 XCOPY 添加 Post-Build 或 Pre-Build 命令,将配置文件复制到正确的输出目录,以便 DLL 获取它。

右键单击项目属性,转到预构建事件,添加如下命令

xcopy/y "$(SolutionDir)MyProject\myFile.xxx""$(OutputDir)"

请注意,您可能需要更改路径和文件名以满足您的需要。

关于c# - 如何将 dll 配置文件添加到将 dll 作为引用添加的项目中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36549076/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com