无法中断执行。尚未实现

VS2010 CAD2010 调试

不支持断点调试,我们还应修改acad.exe.config.xml文件,该文件在c:/Program Files/AutoCAD 2010/下,增加一行 <supportedRuntime version="v2.0.50727"/>内容。修改后的acad.exe.config.xml的内容如下:

<configuration>

   <startup>

<supportedRuntime version="v2.0.50727"/>

   </startup>

<!--All assemblies in AutoCAD are fully trusted so there's no point generating publisher evidence-->

   <runtime>        

<generatePublisherEvidence enabled="false"/>    

   </runtime>

</configuration>

原文地址:https://www.cnblogs.com/houlinbo/p/3348812.html