gpt4 book ai didi

c# - .NET 自定义配置部分 : Configuration. GetSection 引发 'unable to locate assembly' 异常

转载 作者:可可西里 更新时间:2023-11-01 07:58:37 24 4
gpt4 key购买 nike

我已经为一个插件 DLL 创建了一个自定义配置部分,它将 .config XML 存储在一个单独的(与主可执行应用程序不同的)文件中。

这是自定义部分类的示例:

using System;   
using System.Configuration;

namespace PluginFramework.MyConfiguration
{

public class MyConfigurationSettings : ConfigurationSection
{
private Configuration _Config = null;

#region ConfigurationProperties
/// <summary>
/// A custom XML section for an application's configuration file.
/// </summary>
[ConfigurationProperty("MyProjects", IsDefaultCollection = true)]
public MyProjectConfigurationCollection MyProjects
{
get { return (MyProjectConfigurationCollection) base["MyProjects"]; }
}

// ...
#endregion

/// <summary>
/// Private Constructor used by our factory method.
/// </summary>
private MyConfigurationSettings () : base () {
// Allow this section to be stored in user.app. By default this is forbidden.
this.SectionInformation.AllowExeDefinition =
ConfigurationAllowExeDefinition.MachineToLocalUser;
}

// ...

#region Static Members
/// <summary>
/// Gets the current applications &lt;MyConfigurationSettings&gt; section.
/// </summary>
/// <param name="ConfigLevel">
/// The &lt;ConfigurationUserLevel&gt; that the config file
/// is retrieved from.
/// </param>
/// <returns>
/// The configuration file's &lt;MyConfigurationSettings&gt; section.
/// </returns>
public static MyConfigurationSettings GetSection (ConfigurationUserLevel ConfigLevel)
{
string appDataPath = System.Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData);
string localDataPath = System.Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData);
System.Configuration.ExeConfigurationFileMap exeMap = new ExeConfigurationFileMap();
exeMap.ExeConfigFilename = System.IO.Path.Combine(appDataPath, @"MyCompany\MyPluginApp\Default.config");
exeMap.RoamingUserConfigFilename = System.IO.Path.Combine(appDataPath, @"MyCompany\MyPluginApp\Roaming.config");
exeMap.LocalUserConfigFilename = System.IO.Path.Combine(localDataPath, @"MyCompany\MyPluginApp\Local.config");

System.Configuration.Configuration Config = ConfigurationManager.OpenMappedExeConfiguration(exeMap,ConfigLevel);
MyConfigurationSettings myConfigurationSettings = null;

try {
myConfigurationSettings = (MyConfigurationSettings)Config.GetSection("MyConfigurationSettings");
}
catch (System.Exception ex) {
// ConfigurationErrorsException caught here ...
}
if (myConfigurationSettings == null) {
myConfigurationSettings = new MyConfigurationSettings();
Config.Sections.Add("MyConfigurationSettings", myConfigurationSettings); }
}
if(myConfigurationSettings != null) {
myConfigurationSettings._Config = Config;
}

return myConfigurationSettings;
}
#endregion
}
} // PluginFramework.MyConfiguration

第一次保存时生成的 .config XML 如下所示:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- The exception complains about the following line (assembly attributes are compliant): -->
<section name="MyConfigurationSettings" type="PluginFramework.MyConfiguration.MyConfigurationSettings, PluginFramework, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" allowDefinition="Everywhere" allowExeDefinition="MachineToLocalUser" />
</configSections>
<MyConfigurationSettings>
<!-- Config properties are serialized fine according MyConfigurationSettings
properties marked with the ConfigurationProperty attribute ... -->
<MyProjects>
<MyProjectConfiguration GUID="{4307AC92-8180-4686-9322-830312ED59AB}">
<!-- ... more complex configuration elements -->
</MyProjectConfiguration>
</MyProjects>
</MyConfigurationSettings>
</configuration>

当尝试在后续运行中使用 Config.GetSection() 加载此 XML 时,我在 XML 示例中标记的行中捕获了一个 ConfigurationErrorsException,指出无法找到程序集 MyPlugin 或其依赖项之一(请原谅我没有发布原始异常消息,但我只有德文版本,怀疑此文本在这里是否有帮助).内部异常来自 System.IO,同时尝试加载程序集并获取反射以解析“MyConfigurationSettings”类类型。

准确地说,上面的代码放在框架 DLL(程序集)中,而框架 DLL 又被从主应用程序加载的实际插件 DLL 引用。

下面的 UML 图说明了几个组件的关系: Main App plugin and framework components

在仔细研究了这个问题之后,我觉得有必要强命名(签名)导出 MyConfigurationSettings 类(即 PluginFramework)的程序集并注册它与 GAC。我还没有尝试这个,并且出于几个原因想避免这个步骤(在知道它是否有帮助并且它是解决问题的唯一选择之前)。

所以这里是问题(抱歉,我实际上在这里放置了 4 个问题,但它们之间的关系非常密切,因此为它们创建单独的 SO 问题是没有意义的)。

  1. 我能否通过强命名相关程序集并将其注册到 GAC 来解决定位失败问题?

  2. 愚蠢的是,配置管理提示的程序集保证被加载(因为它调用 Configuration.GetSection() 本身)。
    是否可以通过 ConfigurationManagerConfguration 类显式注册程序集或适当的配置类型反序列化器?

  3. 我也对有关 Hans Passant's comment 的更多信息感兴趣提到这可能是从主应用程序加载(主)程序集的方式引起的问题。我无法控制这种机制,如果这本身就导致了这种行为,我想知道是否有合理的解决方法?

  4. 另一个想法(如果以上任何方法都无法显示方法)是在本地完全管理配置 XML 格式(使用 XML 反/序列化支持)以及从哪里加载和合并配置文件。如果这是最合适的选择,任何人都可以给出如何有效地执行此操作的良好指示(管理路径和合并所需的最少代码)吗?

更新:
由于似乎没有人能够对这个问题提供更多见解(2 个答案并没有真正让我更进一步),我正在从 4. 更改为选项,全部手动完成。

最佳答案

我也试过了,但我从来没有让它像那样工作。我只是认为自动加载 .config 不适用于 .dll,仅适用于 .exe。然后我放弃了,决定手动加载 .config 文件会更容易。您可以在此处查看完整代码:https://github.com/GeertBellekens/Enterprise-Architect-Toolpack/blob/master/EANavigator/NavigatorSettings.cs这是最相关的部分:

public NavigatorSettings() {
Configuration roamingConfig = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.PerUserRoaming);

// the roamingConfig now get a path such as C:\Users\<user>\AppData\Roaming\Sparx_Systems_Pty_Ltd\DefaultDomain_Path_2epjiwj3etsq5yyljkyqqi2yc4elkrkf\9,_2,_0,_921\user.config
// which I don't like. So we move up three directories and then add a directory for the EA Navigator so that we get
// C:\Users\<user>\AppData\Roaming\GeertBellekens\EANavigator\user.config
string configFileName = System.IO.Path.GetFileName(roamingConfig.FilePath);
string configDirectory = System.IO.Directory.GetParent(roamingConfig.FilePath).Parent.Parent.Parent.FullName;

string newConfigFilePath = configDirectory + @"\Geert Bellekens\EANavigator\" + configFileName;
// Map the roaming configuration file. This
// enables the application to access
// the configuration file using the
// System.Configuration.Configuration class
ExeConfigurationFileMap configFileMap = new ExeConfigurationFileMap();
configFileMap.ExeConfigFilename = newConfigFilePath;

// Get the mapped configuration file.
currentConfig = ConfigurationManager.OpenMappedExeConfiguration(configFileMap, ConfigurationUserLevel.None);
// merge the default settings
this.mergeDefaultSettings();
}

访问配置属性:

public bool trackSelectedElement
{
get {
bool result;
if(bool.TryParse(this.currentConfig.AppSettings.Settings["trackSelectedElement"].Value, out result)) {
return result;
}
else {
return true;
}
}
set {
this.currentConfig.AppSettings.Settings["trackSelectedElement"].Value = value.ToString();
}
}

关于c# - .NET 自定义配置部分 : Configuration. GetSection 引发 'unable to locate assembly' 异常,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14718262/

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