I have a custom dll:
C:\Custom Libraries\Custom.dll
I have a c# project that references this library.
I want the reference to be absolute; and for local copies to be false.
I have changed the reference type to local copy false.
When I run my application it will fail to run - this is obvious as my application doesnt know where to look to resolve the missing dll.
How can I get my application to search C:\Custom Libraries for my dll?
So far I have only found ways to change the search path if the directory remains relative to my applications base directory...
As this dll is used in multiple projects - I dont want multiple local versions for each application.