gpt4 book ai didi

c# - Visual Studio 在哪里寻找程序集?

转载 作者:太空狗 更新时间:2023-10-29 21:36:04 25 4
gpt4 key购买 nike

我有一个由许多基类组成的框架,可以派生这些基类来开发许多应用程序。在这些类中有一个 System.Windows.Forms.Panel 的子类,我为其编写了自己的设计器。在 Visual Studio 2005 中一切正常,但当我尝试迁移到 VS2010 时出现问题。这是我正在做的事情的简化版本:

我有一个名为 CoreClasse 的项目,它包含一个接口(interface)和两个类:

public interface IConf
{
string foo { get; set; }
void InitFoo();
}

public class SimpleClass
{
public string foo;
}

public class ConfLoader
{
public static IConf LoadConf()
{
AssemblyName anAssemblyName = new AssemblyName("ConfClasses");
Assembly anAssembly = Assembly.Load(anAssemblyName);
IConf result = (IConf)anAssembly.CreateInstance("ConfClasses.ConfClass");
result.InitFoo();
return result;
}
}

然后有一个引用 CoreClasses 的项目 ConfClasses 并且只包含一个实现 IConf 的类:

public class ConfClass : IConf
{
public SimpleClass confVal;

public string foo
{
get { return confVal.foo; }
set { confVal.foo = value; }
}

public void InitFoo()
{
confVal = new SimpleClass();
confVal.foo = "bar";
}
}

最后还有一个控件项目,它仅引用 CoreClasses 并包含 Panel 的子类和关联的设计器:

[Designer("MyControls.Design.SimplePanelDesigner", typeof(IRootDesigner))]
public class SimplePanel : Panel
{
public SimpleClass dummy = new SimpleClass();
}

public class SimplePanelDesigner : DocumentDesigner
{
public IConf DesignerConf;

public SimplePanelDesigner()
: base()
{
DesignerConf = ConfLoader.LoadConf();
}
}

现在我创建另一个解决方案,它引用所有这些 dll 并包含 SimplePanel 的一个空子类。当我在 SolutionExplorer 中双击此类时,将执行 SimplePanelDesigner 的构造函数并调用 ConfLoader 的 LoadConf 方法。这意味着 ConfClasses.dll 被动态加载并创建了一个 ConfClass 实例。到目前为止一切都很好,但是当调用 InitFoo 时会引发此异常:

无法加载文件或程序集“CoreClasses,Version=1.0.0.0,Culture=neutral,PublicKeyToken=null”或其依赖项之一。系统找不到指定的文件。

让事情变得更难的是,在这个例子中实际上并没有引发异常,但这正是我的真实应用程序正在执行的那种指令,以及我得到的异常。我不知道这里发生了什么。 VS 正在执行 CoreClasses 中的方法。为什么它试图再次加载它?它在哪里寻找它?我也检查了当前的 AppDomain,但它在加载的程序集中有 CoreClasses,而且它似乎没有改变。

只是添加更多细节,每个项目都构建在一个公共(public)文件夹中(不是项目文件夹中通常的 obj/debug 文件夹),并且在我开始我的那一刻,PC 上没有我的 dll 的其他副本测试。然后在我的用户配置文件的 AppData\Local\Microsoft\VisualStudio\10.0\ProjectAssemblies 文件夹中的一系列文件夹中完成所有引用的 dll 的副本,这似乎是 VS 在 Assembly.Load 时寻找程序集的地方被执行,我可以在那里找到 CoreClasses 的副本。我尝试清理所有文件夹,重建所有内容,并在每个组合中保持打开/关闭不同的解决方案,但没有任何改进。

编辑:

正如 GranMasterFlush 所建议的,这是异常生成的 FusionLog:

=== Pre-bind state information ===
LOG: User = FCDB\fc0107
LOG: DisplayName = XEngine.Core, Version=1.0.0.1, Culture=neutral, PublicKeyToken=null (Fully-specified)
LOG: Appbase = file:///C:/Program Files (x86)/Microsoft Visual Studio 10.0/Common7/IDE/
LOG: Initial PrivatePath = NULL
Calling assembly : (Unknown).
===
LOG: This bind starts in default load context.
LOG: Using application configuration file: C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe.Config
LOG: Using host configuration file:
LOG: Using machine configuration file from C:\Windows\Microsoft.NET\Framework\v4.0.30319\config\machine.config.
LOG: Policy not being applied to reference at this time (private, custom, partial, or location-based assembly bind).
LOG: The same bind was seen before, and was failed with hr = 0x80070002.
ERR: Unrecoverable error occurred during pre-download check (hr = 0x80070002).

编辑 2

只是为了添加一些信息,我查看了我的简单示例生成的融合日志,发现在尝试加载 CoreClasses 时生成了完全相同的日志,但 VisualStudio 以某种方式找到了处理它的方法。

最佳答案

我刚刚发现发生了什么。简单示例与真实示例之间的区别在于涉及到一个 AddIn。这是一个完整的日志故事,但仅此而已。
从代码示例中可以看出,我通过反射加载 ConfClasses dll,以避免添加对它的引用。这在运行时很好,但设计者提示说它无法将 IConf 转换为 IConf。发生这种情况是因为 CoreClasses.dll 是在设计器启动时从 AppData\Local\Microsoft\VisualStudio\10.0\ProjectAssemblies 加载的,但是 ConfClasses.dll 是从我的 bin 文件夹加载的,它的引用也是如此,所以有两个版本的 CoreClasses.dll和不同版本的 IConf。
为了绕过这个问题,我开发了一个 AddIn,当一个程序集在设计时使用 Assembly.Load 加载时,添加对该程序集的引用,然后在最后一个设计器窗口关闭时清除引用。
VS2005 一切正常,但使用 ProcMon.exe 我发现 VS2010 添加了一个新文件夹,插件在其中查找程序集:Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\CommonExtensions\DataDesign
我在那里复制了我的程序集,一切都重新开始了。现在只需要找到一种方法来手动添加内容即可。

关于c# - Visual Studio 在哪里寻找程序集?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6952460/

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