C# 程序修改dll引用路径

要修改程序引用的DLL路径,在配置文件 app.config 上添加 runtime 内的配置,将项目的 dll 文件都放到  privatePath 配置的目录即可

 

<?xml version="1.0" encoding="utf-8" ?>
<configuration>

  <appSettings>
    <add key ="" value=""/>
  </appSettings>
  
  <runtime>  
    <gcConcurrent enabled="true" />  
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">  
      <publisherPolicy apply="yes" />  
      <probing privatePath="DLL" />  
    </assemblyBinding>  
  </runtime>  
  
</configuration>

  

 

posted @ 2024-08-16 14:01  Nine_Jason  阅读(58)  评论(0编辑  收藏  举报