Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

.NET: Load two version of the same DLL

Tags:

.net

appdomain

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.

like image 647
Jonathan Allen Avatar asked Jan 06 '10 22:01

Jonathan Allen


3 Answers

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.

like image 57
Jonathan Allen Avatar answered Oct 11 '22 22:10

Jonathan Allen


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

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

like image 3
No Refunds No Returns Avatar answered Oct 11 '22 21:10

No Refunds No Returns


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

like image 2
Kristian Damian Avatar answered Oct 11 '22 21:10

Kristian Damian