2
MEFでPrivateBinPathを設定するにはどうすればよいですか?MEFでPrivateBinPathを設定するにはどうすればよいですか?
これは私がやろうとしているものです:How to change the loading path of references in .NET?
MEFでPrivateBinPathを設定するにはどうすればよいですか?MEFでPrivateBinPathを設定するにはどうすればよいですか?
これは私がやろうとしているものです:How to change the loading path of references in .NET?
あなたはアプリケーションの設定ファイルを介してこれを行うことができます。より正確assemblyBinding要素、 - probing:
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="bin;bin2\subbin;bin3"/>
</assemblyBinding>
</runtime>
</configuration>
これは、探すためにランタイムを強制しますアセンブリは、bin
、bin2
、bin2\subbin
およびbin3
ディレクトリにあります。これらのディレクトリはすべて、アプリケーションのベースディレクトリのサブディレクトリです。
ありがとう、これで私の髪を引き裂いている! –