私はdllを持っています。そのdllはサーバーにアップロードされます。アプリケーションがサーバーから「最新の」dllの取得を開始するたびに必要なので、app.configで次のコードを使用しました。なぜ機能しないのですか?
これがapp.configファイルです:
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="ReflectionTest"
publicKeyToken="f94c9b9f0707ee96"
culture="neutral" />
<codeBase version="1.0.0.0"
href="http://127.0.0.1/ReflectionTest.dll"/>
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>