.NET:加载同一 DLL 的两个版本

发布于 2024-08-17 08:37:14 字数 70 浏览 5 评论 0原文

我需要加载同一 DLL 的两个版本才能比较它们的输出。我假设我可以使用 AppDomains 来实现此目的,但我需要一些指导。

I need to load two versions of the same DLL in order to compare their outputs. I assume that I can use AppDomains for this, but I need some guidence.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(3

尴尬癌患者 2024-08-24 08:37:14

好吧,实际上比我想象的要容易得多。

    m_Assembly1 = Reflection.Assembly.LoadFile(IO.Path.Combine(System.Environment.CurrentDirectory, "Old Version\Some.dll"))
    m_Assembly2 = Reflection.Assembly.LoadFile(IO.Path.Combine(System.Environment.CurrentDirectory, "New Version\Some.dll"))

    Console.WriteLine("Old Version: " & m_Assembly1.GetName.Version.ToString)
    Console.WriteLine("New Version: " & m_Assembly2.GetName.Version.ToString)

    m_OldObject = m_Assembly1.CreateInstance("FullClassName")
    m_NewObject = m_Assembly2.CreateInstance("FullClassName")

从现在开始,我使用后期绑定和/或反射来运行我的测试。

Ok, it was actually a lot easier than I imagined.

    m_Assembly1 = Reflection.Assembly.LoadFile(IO.Path.Combine(System.Environment.CurrentDirectory, "Old Version\Some.dll"))
    m_Assembly2 = Reflection.Assembly.LoadFile(IO.Path.Combine(System.Environment.CurrentDirectory, "New Version\Some.dll"))

    Console.WriteLine("Old Version: " & m_Assembly1.GetName.Version.ToString)
    Console.WriteLine("New Version: " & m_Assembly2.GetName.Version.ToString)

    m_OldObject = m_Assembly1.CreateInstance("FullClassName")
    m_NewObject = m_Assembly2.CreateInstance("FullClassName")

From here on out I used late binding and/or reflection to run my tests.

空城之時有危險 2024-08-24 08:37:14

查看 MSDN 上的 Activator.CreateInstance()。内的代码示例。

http://msdn.microsoft.com/en-us/library/ms224132。 ASPX

Check out Activator.CreateInstance() on MSDN. Code samples within.

http://msdn.microsoft.com/en-us/library/ms224132.aspx

零度℉ 2024-08-24 08:37:14

这里是执行此操作的指南:

extern alias oldVer;
extern alias newVer;

以及何时您编译:

csc /r:oldVer=Somepath\ClassLibrary.dll /r:newVer=AnotherPath\ClassLibrary.dll program.cs

或在 Visual Studio 中更改项目引用的属性选项卡中的“别名”字段
替代文本

Here is a guide to do that:

extern alias oldVer;
extern alias newVer;

and when you compile:

csc /r:oldVer=Somepath\ClassLibrary.dll /r:newVer=AnotherPath\ClassLibrary.dll program.cs

or in Visual Studio change the "aliases" field in the property tab of your project references
alt text

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