Merge pull request #3516 from brthor/brthor/fix-msi-reg

fix reg key in cli msi
This commit is contained in:
Eric Erhardt 2016-06-11 15:47:33 -05:00 committed by GitHub
commit d386ca2c23

View file

@ -2,7 +2,7 @@
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:dep="http://schemas.microsoft.com/wix/DependencyExtension">
<?include "Variables.wxi" ?>
<Fragment>
<Component Id="$(var.DependencyKeyId)" Directory="TARGETDIR" Win64="no" Guid="3B7DF8C8-9BB9-3F4C-8CBF-E393E4D7FF43">
<Component Id="$(var.DependencyKeyId)" Directory="TARGETDIR" Win64="no" Guid="*">
<dep:Provides Key="$(var.DependencyKey)" />
</Component>
</Fragment>