Reputation: 289
So, I asked this question before and as suggested, I need to set my dll's "Copy Local" property to "True". However, I am not able to find that in the "Property" section of the dll. I can set the "Copy Local" property of the "References" per se, like "System.Web" etc. But how to set the "Copy Local" property of the dll file which I have referenced, and which I can see in the Bin folder. Thanks so much.
Upvotes: 1
Views: 3735
Reputation: 12619
"Copy Local" is not a setting for dlls but for reference to dll as you have noticed. And this is exactly the property that needs to be changed. Setting it to true will force dll to be copied to bin folder.
Upvotes: 2