熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> .NET編程 >> 正文

vb.net通過app.config來改變編譯路徑

2022-06-13   來源: .NET編程 

  問題: 我先把我的意思講一遍: 假如把一個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文件再把它添加到安裝項目中


From:http://tw.wingwit.com/Article/program/net/201311/14509.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.