Error:
1> icl: : warning #10210: problem with Microsoft compilation of 'BrowseInfo.cpp'
1>Done building target "ClCompile" in project "BrowseInfo.vcxproj".
1>Target BscMake:
1> BSCMAKE : error BK1506: cannot open file 'Debug\BrowseInfo.sbr': No such file or directory
1>Done building target "BscMake" in project "BrowseInfo.vcxproj" -- FAILED.
1>
1>Done building project "BrowseInfo.vcxproj" -- FAILED.
========== Build: 0 succeeded, 1 failed, 0 up-to-date, 0 skipped ==========
How to reproduce: Create any project and enable Browse Information and include some C++ standard headed file like #include <iostream>
Example:
// BrowseInfo.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <iostream> int main() { return 0; }