VS2012 error : Required file tracker.exe is missing 解决办法

来源:互联网 发布:酒店网络监控设计方案 编辑:程序博客网 时间:2024/05/13 21:11

初次使用VC2012 ,结果报告error : Required file tracker.exe is missing 。从百度上搜索一遍,很多解决办法不靠谱,搜到靠谱的是英文版

连接如下:

http://connect.microsoft.com/VisualStudio/feedback/details/540902

 

其实就是找到你的项目文件xxxx.vcxproj,使用编辑器打开,是xml格式的定义文件,查找关键字PropertyGroup

会发现有几个这样的配置,然后在这样的关键附近插入如下代码:

<!-- for example in the project file -->
     <PropertyGroup>
         <TrackFileAccess>false</TrackFileAccess>
     </PropertyGroup>

 

加入后,我的项目文件的代码定义像下面这个样子:

</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>

保存文件后,编译运行,通过!!!!
0 0
原创粉丝点击