Hi, I'm using vs2012.
I added a couple of dll to my project and these 2 dlls resides on my local PC's C drive. It runs fine from my local VS however, after publishing to server it doesn't work when it reaches code area where these 2 dlls are needed. How do I configure the Publish or build manager to make sure these 2 dlls are included when published using Web Deply?
Also, one of the dll requires the 2nd dll to even run on my pc that's why I added reference to the 2nd dll. In general, if you create a class library, shouldn't you include all the dependency dll that you need so user like me wouldn't have to download and include those dependent dll? The error message I got is the application cannot find and load the 2nd dll(MS Sharepoint.client dll) that is needed by the 1st dll(this is a class library built by co-worker).
Thank you.