我在签名的 .NET 程序集地狱中。
我有一个针对签名程序集 A 版本 1.1 ( SA 1.1.1 ) 编译的应用程序。在某些系统上,我已经拥有SA 1.1.2
是否可以在重定向中表达这一点?
SA 1.1.1 binds to
SA 1.1.1 OR
SA 1.1.2
只是为了提醒你这样的事情是怎样的:
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="myAssembly"
publicKeyToken="32ab4ba45e0a69a1"
culture="neutral" />
<bindingRedirect oldVersion="1.0.0.0"
newVersion="2.0.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>