나는 dll을 가지고있다. 그 dll은 서버에 업로드됩니다. 응용 프로그램이 서버에서 "최신"dll을 가져 오기 시작할 때마다이를 원하므로 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>
예, 가능합니다. 아파치 서버, 나는 거기에 내 웹 사이트 호스팅 – Timotei