i have a silverlight project
it references other dlls
in the bin folder it looks like this
myproject.dll
otherproject.dll
otherdll.dll
If I want to reference my project from another project what dlls do i need to copy over?
Can i just copy over the myproject.dll or will it break?
Your project will need all the libraries. I think the other DLLs will be automatically copied to your bin directory if you add the reference to myproject.dll through Visual Studio, but don’t hold me to that.