Please see the documentation installed with V5.1. The topic is Deploying to a BizTalk Server Group\Packaging an Application for Deployment, subsection Customizing the Default WiX Template.
Here is a snippet:
To customize the Start menu shortcuts:
1) Copy the file RedistComponentGroup.xslt from the Deployment Framework for BizTalk install folder, Developer subfolder into your deployment project folder (where the .btdfproj is located). If you wish, rename the file but keep the .xslt extension.
2) In your .btdfproj, set the WixHeatTransformFile property to RedistComponentGroup.xslt or your custom name. The property may be included in any PropertyGroup, but is commonly placed in the PropertyGroup that includes ProductId and ProductVersion.
<PropertyGroup>
...
<WixHeatTransformFile>RedistComponentGroup.xslt</WixHeatTransformFile>
...
</PropertyGroup>
3) Modify the XSLT file as desired. Your local copy of the XSLT will be used when generating an MSI for server deployment.
Thanks,
Tom
Here is a snippet:
To customize the Start menu shortcuts:
1) Copy the file RedistComponentGroup.xslt from the Deployment Framework for BizTalk install folder, Developer subfolder into your deployment project folder (where the .btdfproj is located). If you wish, rename the file but keep the .xslt extension.
2) In your .btdfproj, set the WixHeatTransformFile property to RedistComponentGroup.xslt or your custom name. The property may be included in any PropertyGroup, but is commonly placed in the PropertyGroup that includes ProductId and ProductVersion.
<PropertyGroup>
...
<WixHeatTransformFile>RedistComponentGroup.xslt</WixHeatTransformFile>
...
</PropertyGroup>
3) Modify the XSLT file as desired. Your local copy of the XSLT will be used when generating an MSI for server deployment.
Thanks,
Tom