Mercurial > hg
view contrib/packaging/wix/dist.wxs @ 43376:b27cf9f52194 stable
histedit: restore hex nodeids to be 12 digits long
I accidentally switched from 12 digits to 40 digits while making the
code py3-compatible. Thanks to Yuya for noticing.
Differential Revision: https://phab.mercurial-scm.org/D7200
author | Martin von Zweigbergk <martinvonz@google.com> |
---|---|
date | Fri, 01 Nov 2019 21:46:34 -0700 |
parents | 131d0b7c3940 |
children |
line wrap: on
line source
<?xml version="1.0" encoding="utf-8"?> <Wix xmlns="http://schemas.microsoft.com/wix/2006/wi"> <?include guids.wxi ?> <?include defines.wxi ?> <Fragment> <DirectoryRef Id="INSTALLDIR" FileSource="$(var.SourceDir)"> <Component Id="distOutput" Guid="$(var.dist.guid)" Win64='$(var.IsX64)'> <File Name="python27.dll" KeyPath="yes" /> </Component> </DirectoryRef> </Fragment> </Wix>