redirecting calls of satellite assemblies
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="<satellite_assy_filename>.resources.dll"
publicKeyToken="<keynumber>"
culture="de"/>
<bindingRedirect oldVersion="1.1.22.0"
newVersion="1.1.27.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
From that file I generate a dll called "Policy.1.1.<satellite_assy_filename>.resources.dll" and install it in the GAC. Unfortunately nothing happens, the old satellite assembly is called everytime. What am I doing wrong? <satellite_assy_filename> uses "." (dots) as part of the filename, could that be a problem? Or do I misunderstand something completely?
Please Help!

