Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to install Open Type Fonts using Wix

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?

like image 988
essamSALAH Avatar asked May 15 '09 08:05

essamSALAH


1 Answers

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>
like image 52
marklam Avatar answered Oct 19 '22 08:10

marklam