main
wxs 30 lines 1.26 KB
Raw
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
3
4 <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
5
6 <!--
7 .NET Framework installation state properties
8
9 Official documentation can be found at the following location:
10
11 .NET Framework 1.0 - http://msdn.microsoft.com/library/ms994349.aspx
12 -->
13
14 <!-- set to 3321-3705 if the .NET Framework 1.0 is installed (not set otherwise) -->
15 <Fragment>
16 <Property Id="NETFRAMEWORK10" Secure="yes">
17 <RegistrySearch Id="NetFramework10" Root="HKLM" Key="SOFTWARE\Microsoft\.NETFramework\policy\v1.0" Name="3705" Type="raw" />
18 </Property>
19 </Fragment>
20
21 <!-- Location of .NET Framework 1.0 redistributable install root directory -->
22 <Fragment>
23 <Property Id="NETFRAMEWORK10INSTALLROOTDIR" Secure="yes">
24 <RegistrySearch Id="NetFxInstallRootForNetfx10Search" Type="raw" Root="HKLM" Key="Software\Microsoft\.NETFramework" Name="InstallRoot">
25 <DirectorySearch Id="NetFx10InstallRootSearch" Path="v1.0.3705" Depth="0" />
26 </RegistrySearch>
27 </Property>
28 </Fragment>
29
30 </Wix>