I'm building a SharePoint custom web part. I need to add a reference in my project to a DLL file. That file doesn't have a strong name and since it's a third party assembly,I can't generate the strong name.
I've been advised to copy the DLL directly to the SharePoint bin folder.
So, where can i find that folder, and after I copy the DLL to that destination, I just need to add as a reference (just like any other file)?
I have done this before for some sharepoint 2010 webparts projects and when googling I found this article, there it is explained how to sign third party assemblies with strong name. Basically you disassemble the dll first with ILDASM.exe and then you reassemble with ILASM.exe providing a *.snk file previously done with sn.exe. All this is explained in detail in the given article.
Hope it helps