1

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 ?

Cedekasme
  • 2,027
  • 1
  • 16
  • 16

2 Answers2

1

It is probably a Custom Build Step or a Build 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.

f4.
  • 3,814
  • 1
  • 23
  • 30
  • @f4 Thank you for your answer. I have done what you said me and thanks to that I have found the tag in the vcxproj file where the help file was generated. So I could delete this tag. – Cedekasme Aug 05 '11 at 10:34
0

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).

tibx
  • 840
  • 13
  • 20