VS2010进行autocad无法调试的解决办法

来源:互联网 发布:c语言如何清屏 编辑:程序博客网 时间:2024/05/16 07:24
根据ObjectARX编程站论坛中版主lzx838的帖子:
http://www.objectarx.net/forum.php?mod=viewthread&tid=4771&page=1&extra=#pid20537
问题圆满解决。

 

我使用的是VS2010+AutoCAD2008,按照该帖子中的第一个方法,我把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.
                <supportedRuntime version="v2.0.50727"/>
-->
<supportedRuntime version="v2.0.50727" />
   </startup>
</configuration>
------------------------------------------------------------------------------------
便搞定了。