Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How to use non-Silverlight DLL's in Silverlight applications? I cannot reference them in my Silverlight application, but I can in the Web projects which runs the Silverlight app. Is there a way for my Silverlight app to somehow use the DLL in the Web project?

share|improve this question

1 Answer

up vote 2 down vote accepted

Silverlight uses a subset of the CLR called the CoreCLR. You will need to recompile your CLR assemblies against the CoreCLR to use them in Silverlight.

share|improve this answer
Yes, that worked. Thanks! – Val Jun 1 '12 at 19:37
@Val - and how you did that ? In Visual Studio ? – Jasper Jun 3 '12 at 7:33
1  
@Jasper Yes, in VS 2010, create a new Silverlight Component project, add all .CS files of the non-Silverlight DLL and compile. – Val Jun 4 '12 at 18:08
@Val - After reading you comment people start thinking that just any project could be recompiled for SL (for example: Log4Net, NUnit, etc..). But I understand what you trying to say – Jasper Jun 5 '12 at 6:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.