NServiceBus 依存関係をダウングレードしようとしているので、4.0.0.0 を使用する代わりに 2.5.0.0 を使用します
私は次の方法で試していますが、どれもうまくいかないようです。
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="NServiceBus"
publicKeyToken="9fc386479f8a226c" culture="neutral"/>
<bindingRedirect oldVersion="4.0.0.0" newVersion="2.5.0.0"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
コードベースでも試しました:
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="NServiceBus"
publicKeyToken="9fc386479f8a226c"
culture="neutral"/>
<codeBase version="2.5.0.0" href="NServiceBus.dll"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
それにしても、なだ。私は msdn のドキュメントを調べましたが、この機能を逆方向に使用することについては言及されていません。これは可能ですか?