We have a product that uses a Reference from a 3rd party supplier. With the release of their new product they have renamed this Reference to a new name.
What we want to do is have the one version of our application compiled so that it can run against both the old and new names of the library.
There is basically no change, only 1 method rename, between the parts of the library we use, but I have no idea how to develop our application to handle both.
If I have to we can branch the code to work with both, but I’d really like to have some sort of adapter that all calls go through that then dispatches to either the old or new.
Once I install the new application, it removes the old library, so the old code won’t compile.
Any pointers on what I can try or how I can work around this issue?
Also, the application is developed in C# using Visual Studio 2005.
Look at Assembly Binding Redirection… You can redirect the old DLL references to the new one. You will need to write a wrapper method for the renamed method.. That’s a real pain in the butt. I’m gonna spitball this off the top of my head, so I don’t guarantee name accuracy or compilability, but you can consider it pseudo code…
Something like that. It’s not ideal in any case.
I am curious, why can’t you just always use the new reference? Just distribute the new reference DLL with your code, and you’ll never have an issue…