I have a vsto outlook that references my library my.dll. This dll reference a 3rd party dummy.dll in C:\Programs Files\company\dummy.dll
The objectif is if dummy.dll is changed, it will be independent with my.dll
In the project of my.dll:
If I set copy local to true, the dummy.dll is copied to the bin, that doesn’t like I expected because my.dll doesn’t know about the newer version of dummy
If I set copy local to false, an exception comes because file not found.
I found this article of Microsoft and others posts in SO, they talks about GAC, .config or AssemblyResolvebut I think it’s not like my situation because it’s a vsto.
How can I use dummy.dll in c:\program files without copying it?