I have a project where I would want to use some specific version of a dll.
The GAC contains couple of versions of that dll (new & old), I would want to use the old when running the program.
Issue is that the newest dll is always picked-up from the GAC.
Would you know if there is a way to either:
- Force the usage the dll that is in the run folder (the one I'm referencing in my solution, working fine in debug).
- Force the usage of the old version of the dll from the GAC.
Thank you!