eyal
eyal

Reputation: 379

how to support multiple third-party dll versions?

My .NET app referencing com object. My task is to be able to build my app without changing my code with different dll which is referenced on it.

How can i reference 2 versions of the same com reference? Is configuration manager can help here?

thanks

Upvotes: 1

Views: 313

Answers (1)

Beth
Beth

Reputation: 9607

If the other version is backward compatible, you can just replace the existing reference with the new one. If it's not backward compatible, you may need to change some of your code. If you want to use some of the functions in the new version, you may also need to change some code.

Upvotes: 1

Related Questions