I want to install a set of Open Type Fonts as part of my MSI installation. 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>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With