码迷,mamicode.com
首页 > 其他好文 > 详细

C#解决exe和dll必须在同一目录的问题

时间:2014-09-04 14:34:20      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   ar   文件   art   div   

双击打开解决方案资源管理器列表下的“App.config”,出现如下代码:

1 <?xml version="1.0" encoding="utf-8" ?>
2 <configuration>
3     <startup> 
4         <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
5     </startup>
6 </configuration>

在</configuration>上方加入红色标注的这段代码:

 1 <?xml version="1.0" encoding="utf-8" ?>
 2 <configuration>
 3     <startup> 
 4         <supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
 5     </startup>
 6     <runtime>
 7       <gcConcurrent enabled="true" />
 8       <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
 9         <publisherPolicy apply="yes" />
10         <probing privatePath=".\bin\" />//bin为存放dll文件的目录
11       </assemblyBinding>
12     </runtime>
13 </configuration>

 重新编译一下即可。

C#解决exe和dll必须在同一目录的问题

标签:style   blog   color   os   io   ar   文件   art   div   

原文地址:http://www.cnblogs.com/shenbimanong/p/3955879.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!