2015-11-18 04:53:49 +00:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi">
|
|
|
|
<?include "Variables.wxi" ?>
|
|
|
|
<Fragment>
|
|
|
|
<ComponentGroup Id="AuthoredRegistryKeys">
|
2016-01-27 06:25:52 +00:00
|
|
|
<Component Id="SetupRegistry_x86" Directory="TARGETDIR" Win64="no">
|
2016-05-02 22:51:31 +00: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-21 02:32:58 +00:00
|
|
|
</RegistryKey>
|
2015-11-21 01:44:48 +00:00
|
|
|
</Component>
|
2016-05-03 23:11:32 +00: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-09 21:59:03 +00:00
|
|
|
<RegistryValue Action="write" Name="1.0.0-rc3" Type="integer" Value="1" KeyPath="yes"/>
|
2016-05-03 23:11:32 +00:00
|
|
|
</RegistryKey>
|
|
|
|
</Component>
|
2015-11-18 04:53:49 +00:00
|
|
|
</ComponentGroup>
|
|
|
|
</Fragment>
|
|
|
|
</Wix>
|