I have a project like this:
Test Solution
Project TestApplication
References: TestFunctions.dll(ver 1.0.0.0),Project TestDLL
Project TestDLL
References: TestFunctions.dll(ver 1.0.0.1)
In the application when i make a call to TestDLL.Methodx() inside it calls TestFunctions.HelloWorld() but it gives a MissingMethodException because TestFunctions.HelloWorld() only exists in TestFunctions.dll(ver 1.0.0.1) and it tries to call the function in the ver 1.0.0.0 dll...
How can I force it to call to the correct version?
I tried using "extern alias" to no avail...