複数の実行可能ファイルを含むフォルダがあります。現在、アセンブリバインディングリダイレクトは、各executable.exe.config
ファイルで構成されています。これを一度だけ設定する方法はありますか?そのフォルダ内のすべての実行可能ファイルは自動的にこれを選択しますか?私はmachine.configを避けたいのですが、これはコンピュータ全体に適用されるためです。複数の実行ファイルに対してassemblyBindingを1回設定する
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<publisherPolicy apply="yes" />
<dependentAssembly>
<assemblyIdentity name="SomeAssembly" publicKeyToken="10addddbec4aebba" />
<publisherPolicy apply="yes" />
<bindingRedirect oldVersion="0.0.0.0-7.9.999.0" newVersion="5.8.11.5" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="SomeOtherAssembly" publicKeyToken="23adeddbac4ae12a" />
<publisherPolicy apply="yes" />
<bindingRedirect oldVersion="0.0.0.0-7.9.999.0" newVersion="5.8.11.5" />
</dependentAssembly>
</assemblyBinding>