I understand the difference in SL and .net CLR and the class library, and I donβt want to execute any code (just request some attributes and check if some types implement the interface declared in the general assembly).
But I can not load the SL dll from Assembly.LoadFrom because it did not find the dependencies (for example, System.Windows.dll, etc.). I tried Assembly.ReflectionOnlyLoadFrom, but it gives me almost the same error (cannot load dependencies) with just a different wording ...
Is there any way to reflect the SL assembly from outside the SL?
source
share