I have a problem with .NET assembly redirection. 3rd party assembly A references another 3rd party assembly B. B is not signed so it doesn't have public key token. Manifest of A:
....
.assembly extern B
{
.ver 1:0:0:0
}
....
How can I make binding redirection to the next version of B that became signed? If I don't specify publicKeyToken in assemblyBinding/dependentAssembly/assemblyIdentity, runtime can't find assembly "B, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null". If I specify than redirection rule doesn't match dependent assembly reference in metadata.