Skip to content

Commit 0f65897

Browse files
authored
feat: show license (#28)
1 parent d7fa7af commit 0f65897

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

src/JetBrainsMono.wixproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,6 @@
1818
</ItemGroup>
1919
<ItemGroup>
2020
<PackageReference Include="WixToolset.Heat" Version="4.0.3" />
21+
<PackageReference Include="WixToolset.UI.wixext" Version="4.0.3" />
2122
</ItemGroup>
2223
</Project>

src/License.rtf

5.16 KB
Binary file not shown.

src/Package.xml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1-
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
2-
<Package Name="JetBrainsMono Nerd Font" Manufacturer="DEVCOM" Version="1.0.0.0" UpgradeCode="c0958d9a-1772-4444-82fc-1149c850d6ae" Scope="perMachine">
1+
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"
2+
xmlns:ui="http://wixtoolset.org/schemas/v4/wxs/ui">
3+
<Package Name="JetBrainsMono Nerd Font" Manufacturer="DEVCOM" Version="1.0.0.0"
4+
UpgradeCode="c0958d9a-1772-4444-82fc-1149c850d6ae" Scope="perMachine">
35
<MajorUpgrade DowngradeErrorMessage="!(loc.DowngradeError)" />
46

57
<Feature Id="Main">
68
<ComponentGroupRef Id="FontComponents" />
79
</Feature>
810

911
<MediaTemplate EmbedCab="yes" />
12+
13+
<ui:WixUI Id="WixUI_Minimal" />
14+
<WixVariable Id="WixUILicenseRtf" Value="License.rtf" />
1015
</Package>
1116
</Wix>

0 commit comments

Comments
 (0)