Reputation: 639
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?
Upvotes: 1
Views: 1470
Reputation: 66
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.
Upvotes: 2