2015-11-17 20:53:49 -08:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
|
|
<?include "Variables.wxi" ?>
|
|
|
|
<Fragment>
|
|
|
|
<ComponentGroup Id="AuthoredRegistryKeys">
|
2016-01-26 22:25:52 -08:00
|
|
|
<Component Id="SetupRegistry_x86" Directory="TARGETDIR" Win64="no">
|
2016-05-02 15:51:31 -07:00
|
|
|
<RegistryKey Root="HKLM" Key="SOFTWARE\dotnet\Setup\InstalledVersions\$(var.Platform)\sdk">
|
|
|
|
<RegistryValue Action="write" Name="$(var.NugetVersion)" Type="integer" Value="1" KeyPath="yes"/>
|
2015-11-20 18:32:58 -08:00
|
|
|
</RegistryKey>
|
2015-11-20 17:44:48 -08:00
|
|
|
</Component>
|
2016-05-03 16:11:32 -07:00
|
|
|
<Component Id="SetupRegistry_x86_RC2_Compat_Key" Directory="TARGETDIR" Win64="no">
|
|
|
|
<RegistryKey Root="HKLM" Key="SOFTWARE\dotnet\Setup\InstalledVersions\$(var.Platform)\sdk">
|
2017-01-12 13:14:57 -08:00
|
|
|
<RegistryValue Action="write" Name="1.0.0-rc4" Type="integer" Value="1" KeyPath="yes"/>
|
2016-05-03 16:11:32 -07:00
|
|
|
</RegistryKey>
|
|
|
|
</Component>
|
2015-11-17 20:53:49 -08:00
|
|
|
</ComponentGroup>
|
|
|
|
</Fragment>
|
|
|
|
</Wix>
|