Visual Studio 2010 中的 Winhelp
我有一个 Visual Studio 2010 项目,它在发布模式下生成 Winhelp 文件。
我想停用它,但我还没有找到方法...
我尝试删除相应的 *.hpj
文件,因此不会创建生成的文件,但我仍然Visual Studio 2010 的输出中有一行“Making help include file...
”。
有人可以告诉我如何在我的项目中停用 WinHelp 吗?
I have a Visual Studio 2010 project which generates Winhelp files in release mode.
I would like to deactivate it but I have not found a way...
I have try to delete the corresponding *.hpj
file, so the creation of the generated file does not occur but I'm still having in the output of Visual Studio 2010 a line "Making help include file...
".
Somebody can tell me how to deactivate WinHelp in my project ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它可能是
自定义构建步骤
或构建事件
。如果您在编辑器中找不到它,也许您可以直接查看项目文件(*.vcproj)并查看它附加到哪个项目。
It is probably a
Custom Build Step
or aBuild Event
.If you can't find it in the editor, maybe you could look at the project file directly (*.vcproj) and see to which item it is attached.
包含 CustomBuildStep 中的 .hm 文件(最初用于旧版 WinHelp),由 makehm.exe Visual Studio 工具,仍可用于新的 HTML 帮助,作为 HTML 的 [MAP] 部分中的输入帮助项目文件 (.hhp)。
Include .hm file from CustomBuildStep (originally for old WinHelp), generated by makehm.exe Visual Studio tool, can be still used for new HTML Help as input in [MAP] section of HTML Help Project file (.hhp).