vb.net

位置:IT落伍者 >> vb.net >> 浏览文章

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


发布日期:2023年08月07日
 
vb.net通过app.config来改变编译路径

问题: 我先把我的意思讲一遍: 假如把一个A工程编译后: 会在Debug目录中生成以下文件: AExe Apdb Axml 引用的commondll 我在制作setup文件后我想 生成一个这样的目录: A目录中: bin\commondll AExe 但现在Aexe 和commondll不在一级目录上就出错

解决: 项目 右键>追加>应用配置文件>添加一个appconfig然后加下以下代码:

<configuration>

<runtime>

<assemblyBinding xmlns=urn:schemasmicrosoftcom:asmv>

<probing privatePath=bin/>

</assemblyBinding>

</runtime>

</configuration>

再编译的时候会自动生成Aexeconfigxml文件再把它添加到安装项目中

上一篇:VB.net2008精彩实例,窗体应用技巧[2]

下一篇:如何轻松调整VB.NET控件