diff options
Diffstat (limited to 'src/wixlib/NetFx1.wxs')
-rw-r--r-- | src/wixlib/NetFx1.wxs | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/src/wixlib/NetFx1.wxs b/src/wixlib/NetFx1.wxs new file mode 100644 index 00000000..c1b266e8 --- /dev/null +++ b/src/wixlib/NetFx1.wxs | |||
@@ -0,0 +1,31 @@ | |||
1 | <?xml version="1.0" encoding="utf-8"?> | ||
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 | |||
4 | |||
5 | <Wix xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
6 | |||
7 | <!-- | ||
8 | .NET Framework installation state properties | ||
9 | |||
10 | Official documentation can be found at the following location: | ||
11 | |||
12 | .NET Framework 1.0 - http://msdn.microsoft.com/library/ms994349.aspx | ||
13 | --> | ||
14 | |||
15 | <!-- set to 3321-3705 if the .NET Framework 1.0 is installed (not set otherwise) --> | ||
16 | <Fragment> | ||
17 | <Property Id="NETFRAMEWORK10" Secure="yes"> | ||
18 | <RegistrySearch Id="NetFramework10" Root="HKLM" Key="SOFTWARE\Microsoft\.NETFramework\policy\v1.0" Name="3705" Type="raw" /> | ||
19 | </Property> | ||
20 | </Fragment> | ||
21 | |||
22 | <!-- Location of .NET Framework 1.0 redistributable install root directory --> | ||
23 | <Fragment> | ||
24 | <Property Id="NETFRAMEWORK10INSTALLROOTDIR" Secure="yes"> | ||
25 | <RegistrySearch Id="NetFxInstallRootForNetfx10Search" Type="raw" Root="HKLM" Key="Software\Microsoft\.NETFramework" Name="InstallRoot"> | ||
26 | <DirectorySearch Id="NetFx10InstallRootSearch" Path="v1.0.3705" Depth="0" /> | ||
27 | </RegistrySearch> | ||
28 | </Property> | ||
29 | </Fragment> | ||
30 | |||
31 | </Wix> | ||