Can anybody give an example of WIX script to register custom help in visual studio help? I,ve searched for some tutorial, but the only thing that I found was VS schema reference. Everything I tried to do did not work. I use WIX 3.0.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I hope this answer is not too late.
You’re going to need:
First thing you want to do is create the Wix code that will hold your help collection.
Next, you want to make a copy of the MSHelp2_RegTables_RTL_—_—.msm merge module. (It can be found at C:\Program Files\Microsoft Visual Studio 2008 SDK\HelpIntegrationWizard\MSHelp2) and open it with Orca.
Here you want to edit the HelpNamespace table in the merge module. You’re going to want to fill a record with the following information:
Now you want to edit the HelpFile table:
Next you want to edit the HelpFileToNamespace table:
Finally, you want to edit the HelpPlugin table:
You can now save your copy of the MSHelp2_RegTables_RTL_—_—.msm merge module. It’s probably a good idea to rename it to something like MyHelpCollection.msm.
Now you just have to include this merge module in your wix project, in addition to the VSIP merge module for the version of VS you’re targeting:
Adapted from MSDN Walkthrough