Hi All,
I want to install a set of Open Type Fonts as part of my msi istallation, I am using Wix to create the msi.
Any advice?
Hi All,
I want to install a set of Open Type Fonts as part of my msi istallation, I am using Wix to create the msi.
Any advice?
You need to specify the directory FontsFolder, and set the TrueType attribute on the file:
<DirectoryRef Id="FontsFolder">
<Component Id="MyFontsFonts" Guid="...">
<File Id="font1.ttf" Source="font1.ttf" TrueType="yes" />
<File Id="font2.ttf" Source="font2.ttf" TrueType="yes" />
</Component>
</DirectoryRef