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
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.
According to Hans Passants comment:
Thank's!