我使用msbuild编译 Visual Studio 2010 解决方案,需要成功构建而不会出现任何错误。
但是每次我运行msbuild / rebuild(或直接使用Visual Studio清理和编译我的解决方案)时,我会得到几个像这样的bscmake错误(有时候错误会在没有清理的情况下再次编译时消失,但它不是一个好的解决方案我两次运行msbuild):
[...]
10> Generating Code...
11> xxxxxxxx\mshtml.tlh(63588): warning BK4504: file contains too many references; ignoring further references from this source
11>
11>BSCMAKE : error BK1500: Internal error
11>
11> Version 10.00.30319.01
11>
11> ExceptionCode = C0000005
11> ExceptionFlags = 00000000
11> ExceptionAddress = 001343DA (00130000) "c:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\bin\bscmake.exe"
11> NumberParameters = 00000002
11> ExceptionInformation[ 0] = 00000000
11> ExceptionInformation[ 1] = 00000000
11>
11> CONTEXT:
11> Eax = 00141B30 Esp = 003CF1C0
11> Ebx = 04B142C6 Ebp = 003CF770
11> Ecx = 04BB621C Esi = 00000006
11> Edx = 00000000 Edi = 00000001
11> Eip = 001343DA EFlags = 00010293
11> SegCs = 00000023 SegDs = 0000002B
11> SegSs = 0000002B SegEs = 0000002B
11> SegFs = 00000053 SegGs = 0000002B
11> Dr0 = 00000000 Dr3 = 00000000
11> Dr1 = 00000000 Dr6 = 00000000
11> Dr2 = 00000000 Dr7 = 00000000
[...]
重点是,我不需要浏览器信息以供我发布,我不希望出现此错误消息(有可能使用visual stuido 2008隐藏这些错误,但我认为编译器param已不再可用。)
如何隐藏bscmake错误?
我可以停用bscmake(针对发布版本)吗?
答案 0 :(得分:14)
根据Hans Passants的评论:
感谢的!
答案 1 :(得分:0)
这样做的一个原因是在具有静态lib输出的项目中使用/ clr编译.cpp文件。从文件中删除/ clr或更改项目以输出dll。