我在尝试使用Visual Studio 2008构建所有项目(包括全新的空模板)时都会收到此错误消息:
Unexpected debug information initialization error -- Failed to find a required export in the runtime.
翻译:针对编译器错误CS0040的错误帮助 不太有用。
This error can occur when using the /debug compiler option and indicates that the compiler was unable to write to the .pdb file. Possible resolutions to this error include reinstalling Visual Studio, ensuring that the compiler has write access to a file or directory, or not compiling with /debug.
我可以手动在预定的{bin,obj}Debug目录中创建文件,以管理员身份运行Studio没有帮助,卸载3.5框架和Visual Studio 2008,然后重新安装它们及其相应的服务包,但我仍然收到错误。
从命令行中删除所有/debug
开关显然会删除错误消息,但这不是进一步开发的选择。
我该如何进一步进行调试?