I want to change the Output path that a DLL in my MS Visual Web Developer 2010 Solution Imports but I’m wondering whether I need (and how) to tell it where that DLL has moved to.
Or does it know to look in a \bin\ sub-directory? (which is how it’s organized now).
I looked in the .vb page and just see “Imports MyLibrary” but not reference to it’s location.
(Sorry for the basic question, I’ve just taken this over from an ASPX programmer and I’m not very familiar w/ MS VWD)
This can be set by making modifications to the web.config file in the root of your web application. See the MSDN article on the
<probing>element.Additionally, the GAC can of course be used as a common source of DLLs.