解决方法:找到项目.vcxproj配置文件,添加以下代码
<PropertyGroup>
<TrackFileAccess>false</TrackFileAccess>
</PropertyGroup>
保存后,重新加载文件问题可解
C:\WINDOWS\Microsoft.NET\Framework\v4.0.30319\Microsoft.Common.targets(1835, 9):
error MSB3454: Tracker.exe is required to correctly incrementally generate resources
in some circumstances, such as when building on a 64-bit OS using 32-bit MSBuild.
This build requires Tracker.exe, but it could not be found. The task is looking for
Tracker.exe beneath the InstallationFolder value of the registry key
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Microsoft SDKs\Windows\v7.0A. To solve the
problem, either: 1) Install the Microsoft Windows SDK v7.0A or later. 2) Install
Microsoft Visual Studio 2010. 3) Manually set the above registry key to the correct
location. Alternatively, you can turn off incremental resource generation by setting
the "TrackFileAccess" property to "false".
|
http://vvkevin.blog.163.com/blog/static/18849058020141131464364/
本文介绍了解决项目构建时遇到的MSB3454错误的方法,通过修改项目的.vcxproj配置文件,设置TrackFileAccess属性为false来禁用增量资源生成,从而避免因找不到Tracker.exe导致的问题。
924

被折叠的 条评论
为什么被折叠?



