1. Task manager, -> find the process for the program which crashed. 2. Right click the process -> select "Create dump file". 3. Dump file will be saved in "C:\Users\<UserName>\appdata\local\Temp" 4. Debug with VS 2013 参考:ht…
dump file is a snapshot of the processs memeory. to debug it, we need use its corresponding executive to help restore the scenariopdb and source file are also needed to help analyze it. create dump file // header file, to generate a dll that will cau…
fatal error C1083: Cannot open precompiled header file: 'Debug/xxoo.pch': No such file or directory 相信很多童鞋都遇到过这种问题,找不到pch文件,看这个描述肯定是与预编译头有问关系.(预编译头有神马作用就不说了,可以自己了解下).一般遇到上面的问题很有可能是拷贝工程的时候,把stdafx.h stdafx.cpp文件删除了,而此时你即使把这两个文件再加入工程还是会报上面的错误.要重现这个错误也很…
1. Project->Properties->Build->Advance, Debug Info : Full/pdb-only . set to [none] will not generate pdb file. 2.when new version release , rebuild whole solution , copy all files to server. what's the difference between C# compilation setting…