1. hg clone代码回来后,还要下载对应的cef dll . 从http://xilium.bitbucket.org/cefglue/ 选择对应的.
然后把dll和resource目录里的内容都考到debug目录里才能运行.
2.不能使用 Enable the Visual Studio hosting process 来运行. 因为还会启动2个进程. 这两个进程是相同的exe只是命令行不同, 如果使用了 hosting process ,那么就不能启动另外两个进程.
调试的时候把所有的项目类型从framework 2.0 3.5 统一到4.0 调试断点才管用.
由于chrome是多进程运行, 有时候分不清楚代码是在哪个进程中运行, 所以断点很难下.
建议用Windbg 打开exe 并且 Debug child processes also ,来调试. 代码里用Console.WriteLine message的形式来看是否执行到.