diff options
Diffstat (limited to 'src/wixlib/NetCoreShared.wxs')
-rw-r--r-- | src/wixlib/NetCoreShared.wxs | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/src/wixlib/NetCoreShared.wxs b/src/wixlib/NetCoreShared.wxs index 540eae6a..0332041a 100644 --- a/src/wixlib/NetCoreShared.wxs +++ b/src/wixlib/NetCoreShared.wxs | |||
@@ -1,20 +1,11 @@ | |||
1 | <?xml version="1.0"?> | 1 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> |
2 | <!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the Microsoft Reciprocal License. See LICENSE.TXT file in the project root for full license information. --> | ||
3 | 2 | ||
4 | 3 | ||
5 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" | 4 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs" xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> |
6 | xmlns:util="http://wixtoolset.org/schemas/v4/wxs/util"> | ||
7 | 5 | ||
8 | <?foreach PLATFORM in x86;x64?> | 6 | <?foreach PLATFORM in x86;x64?> |
9 | <Fragment> | 7 | <Fragment> |
10 | <util:RegistrySearch | 8 | <util:RegistrySearch Id="DOTNETHOME_$(var.PLATFORM)" Variable="DOTNETHOME_$(var.PLATFORM)" Root="HKLM" Key="SOFTWARE\dotnet\Setup\InstalledVersions\$(var.PLATFORM)" Value="InstallLocation" Result="value" Bitness="always32" /> |
11 | Id="DOTNETHOME_$(var.PLATFORM)" | ||
12 | Variable="DOTNETHOME_$(var.PLATFORM)" | ||
13 | Root="HKLM" | ||
14 | Key="SOFTWARE\dotnet\Setup\InstalledVersions\$(var.PLATFORM)" | ||
15 | Value="InstallLocation" | ||
16 | Result="value" | ||
17 | Bitness="always32" /> | ||
18 | </Fragment> | 9 | </Fragment> |
19 | <?endforeach?> | 10 | <?endforeach?> |
20 | </Wix> | 11 | </Wix> |