私は IntegrationClient\SampleClient\Client.Exe というフォルダー構造を持っています。多くのサードパーティ製アセンブリを含むフォルダー DrawingClient を作成しました。client.exeが実行時にアセンブリを見つけるために、以下のようにプローブパスを使用しましたが、動作します。
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<probing privatePath="bin;DrawingClient;"/>
</assemblyBinding>
しかし、親ディレクトリ、つまり IntegrationClient\DrawingClient から DrawingClient フォルダーを見つけるために client.exe が必要な場合は、どうにかしてそれを達成できますか? ..\DrawingClient を使用してみましたが、失敗しました。