Is <bindingRedirect / "> supported in Silverlight, Windows Phone, and Metro?
Is it <bindingRedirect />supported outside of the full .NET Framework? For example, a regular .NET application is supported (in app.configor web.config):
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="PostSharp" publicKeyToken="b13fd38b8f9c99d7" culture="neutral" />
<bindingRedirect oldVersion="3.0.0.0-3.1.1.1" newVersion="3.1.1.1"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
If this is not supported, how is the indirect assembly reference issue handled? That is, if component A refers to components B and C, and B refers to D v1.0, CD v1.1, how do we guarantee that B finds its dependence if we send only D v1.1?
+5