How to get rid of “BSCMAKE : error BK1500: Internal error” compile errors

前端 未结 2 1704
广开言路
广开言路 2020-12-17 19:41

I use msbuild to compile a Visual Studio 2010 solution and need a successful build without any errors.

But each time I run msbuild, or rebuild, or c

相关标签:
2条回答
  • 2020-12-17 20:04

    One cause of this is to have a .cpp file compiled with /clr in a project with an output of a static lib. Either remove the /clr from the file or change the project to output a dll.

    0 讨论(0)
  • 2020-12-17 20:10

    According to Hans Passants comment:

    enter image description here

    Thank's!

    0 讨论(0)
提交回复
热议问题