如果找不到文件,如何重定向程序集绑定

时间:2019-05-14 13:15:28

标签: c# .net

我尝试使用app.Config文件中的程序集绑定为DLL提供自定义位置。如果错误地错过了将该dll替换到该位置,则意味着它抛出了文件未找到异常。如何通过重定向编译器以从bin文件夹获取DLL来克服此问题

<runtime>
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
      <dependentAssembly>
        <assemblyIdentity name="MyAssembly1"  culture="neutral" 
                          publicKeyToken="4fa4847a62640ab8"/>
        <codeBase version="1.0.0.0" href="FILE:G:/DLL/MyAssembly1.dll"/>
      </dependentAssembly>
    </assemblyBinding>
  </runtime>

这是我用来重定向编译器以从自定义位置获取DLL的代码

0 个答案:

没有答案