1

我正在将 VC++ 06 项目迁移到 Visual Studio 2012。编译时出现错误。

在此处输入图像描述

1>  Copying contents file...
1>  the specified file is not found
1>  Making help include file...
1>  Making help file...
1>  The system cannot find the file hcw.
1>hlp\MyProject.hpj(1): error : 
1>  the specified file is not found

我删除了文件夹 hlp(它得到了 .hpj 文件)、Makefile (.mak),但它仍然想访问它。

为什么?如何在没有 HTML 帮助项目的情况下构建我的项目?

我遵循这个,但它不起作用。

4

2 回答 2

2

我找到了解决方案。

我编辑 .dsp 文件(VC++ 6 项目)并删除 HTML 帮助行声明。当我从 .dsp 添加现有项目时,它会自动加载该配置。即使我删除了 Makefile 或 hlp 文件夹。

于 2014-10-20T14:09:25.177 回答
1

你应该用新版本的visual studio打开.dsw文件,在构建项目之前,打开vxcproj并找到custom-build寻求帮助(搜索“hjp”字)

从 vxcproj 中删除这部分并编译项目。

于 2016-07-21T09:27:08.767 回答