15 lines
No EOL
706 B
XML
15 lines
No EOL
706 B
XML
<?xml version="1.0"?>
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
<?include "Variables.wxi" ?>
|
|
<Fragment>
|
|
<ComponentGroup Id="AuthoredRegistryKeys">
|
|
<Component Directory="TARGETDIR" Guid="*" Win64="$(var.Win64AttributeValue)">
|
|
<RegistryKey Root="HKLM" Key="SOFTWARE\Microsoft\Dotnet CLI\Setup">
|
|
<RegistryValue Action="write" Name="Install" Type="integer" Value="1" />
|
|
<RegistryValue Action="write" Name="InstallDir" Type="string" Value="[DOTNETHOME]" />
|
|
<RegistryValue Action="write" Name="Version" Type="string" Value="$(var.Dotnet_ProductVersion)" />
|
|
</RegistryKey>
|
|
</Component>
|
|
</ComponentGroup>
|
|
</Fragment>
|
|
</Wix> |