views:

144

answers:

1

How do I configure a web service put in a IIS folder to reference a DLL that is not in the GAC?

+3  A: 

You can add the DLL as a dependency to the web service project. Then deploy the DLL alongside the rest of your web service DLL's.

Justin Ethier
Managed to get it to work. Thanks for the help :)