位置:海鸟网 > IT > ASP.NET >

vb.net通过app.config来改变编译路径

问题: 我先把我的意思讲一遍: 假如把一个A工程编译后: 会在Debug目录中生成以下文件: A.Exe A.pdb A.xml 引用的common.dll 我在制作setup文件后,我想 生成一个这样的目录: A目录中: bin\common.dll A.Exe 但现在A.exe 和common.dll不在一级目录上,就出错.
解决: 项目 右键-->追加-->应用配置文件-->添加一个app.config,然后加下以下代码:    

以下为引用的内容:
       <configuration>
        <runtime>
        <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
        <probing privatePath="bin"/>
        </assemblyBinding>
        </runtime>
        </configuration> 

再编译的时候会自动生成A.exe.config.xml文件.再把它添加到安装项目中.