EaBIM一直以来积极响应国家“十二五”推进建筑业信息化的号召,对建筑领域的信息技术开展深入技术交流和探讨!致力于打造“BIM-建筑师-生态技术”三位一体综合资源交流共享平台,希望为BIM与可持续设计理念及技术的普及做出微小的贡献!!!

萧闫子 发表于 2014-1-8 14:11:11

[资料] AutoCAD:使用VS2012调试AutoCAD 2010中.Net DLL类库



本帖最后由 LEE 于 2013-5-7 18:10 编辑

问题描述:使用VS2012新建.Net DLL类库,进行在AutoCAD中进行调试,断点无响应原因揣测:AutoCAD始终使用最计算机中最新版本的.Net Framework,如果遇到问题可尝试使用指定版的.Net Framework解决方案:修改acad.exe.config,如下<configuration>   <startup>
< !--We always use the latest version of the framework installed on the computer. If you are having problems then explicitly specify .NET 2.0 by uncommenting the following line.-->      <supportedRuntimeversion="v2.0.50727"/>   </startup>< !--All assemblies in AutoCAD are fully trusted so there's no point generating publisher evidence-->   <runtime>            <generatePublisherEvidenceenabled="false"/>   </runtime>< /configuration>
其中:<supportedRuntime version="v2.0.50727"/>可尝试v3.5、v4.0.30319等具体看 C:\windows\Microsoft.NET\Framework 或 C:\windows\Microsoft.NET\Framework64 中已安装的版本。
http://www.cnblogs.com/junqilian/archive/2010/04/29/1724403.html

页: [1]
查看完整版本: [资料] AutoCAD:使用VS2012调试AutoCAD 2010中.Net DLL类库