使用TFS2010构建VS2008解决方案时出现以下错误。
error MSB4019: The imported project "C:\Program Files\MSBuild\Microsoft\AssemblyInfoTask\Microsoft.VersionNumber.Targets" was not found.
Confirm that the path in the <Import> declaration is correct, and that the file exists on disk.
有人可以帮我吗?
感谢。
答案 0 :(得分:1)
看起来MSBuild无法找到AssemblyInfoTask \ Microsoft.VersionNumber.Targets,一个可能的问题是构建服务不会对自定义任务进行递归搜索以下载它们。看看您的问题是否与此类似:
http://social.msdn.microsoft.com/forums/en-US/tfsbuild/thread/dfefb86a-a969-4545-9f0d-7e764fd49861
Aaron Hallberg描述了如何配置构建服务以在此递归搜索自定义任务:
祝你好运!