Initial use of VC2012 Results report error:required file Tracker.exe is missing. Search from Baidu, a lot of solutions are not reliable, found that the English version of the reliable
The connection is as follows:
http://connect.microsoft.com/VisualStudio/feedback/details/540902
is actually finding your project file xxxx.vcxproj, using the editor to open, is the XML format definition file, find the keyword PropertyGroup
You will find several such configurations, and then insert the following code near such a key:
<!--For example in the project file-->
<PropertyGroup>
<TrackFileAccess>false</TrackFileAccess>
</PropertyGroup>
After joining, the code for my project file is defined as follows:
</ItemGroup>
<PropertyGroup>
<TrackFileAccess>false</TrackFileAccess>
</PropertyGroup>
<propertygroup label= "Globals" >
<ProjectGuid>{325EC88B-5F85-493D-92C0-E5CEBCA0BB39}</ProjectGuid>
<RootNamespace>MFCQQChat</RootNamespace>
<Keyword>MFCProj</Keyword>
</PropertyGroup>
<import project= "$ (vctargetspath) \microsoft.cpp.default.props"/>
<propertygroup condition= "' $ (Configuration) |$ (Platform) ' = = ' debug| Win32 ' "label=" Configuration ">
<ConfigurationType>Application</ConfigurationType>
<UseDebugLibraries>true</UseDebugLibraries>
<PlatformToolset>v110_xp</PlatformToolset>
<CharacterSet>Unicode</CharacterSet>
<UseOfMfc>Static</UseOfMfc>
</PropertyGroup> save file, compile run, pass ....