How can you tell the application to look for assemblies at the locations other than its own install?

Q

How can you tell the application to look for assemblies at the locations other than its own install?

✍: Guest

A

Use the
directive in the XML .config file for a given application.

<probing privatePath=”c:\mylibs; bin\debug” />
should do the trick. Or you can add additional search paths in the Properties box of the deployed application.

2014-12-17, 1939👍, 0💬