aboutsummaryrefslogtreecommitdiff
path: root/src/wixlib/NetFx1.1.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/wixlib/NetFx1.1.wxs')
-rw-r--r--src/wixlib/NetFx1.1.wxs192
1 files changed, 192 insertions, 0 deletions
diff --git a/src/wixlib/NetFx1.1.wxs b/src/wixlib/NetFx1.1.wxs
new file mode 100644
index 00000000..406aef3f
--- /dev/null
+++ b/src/wixlib/NetFx1.1.wxs
@@ -0,0 +1,192 @@
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.1 - http://msdn.microsoft.com/library/ms994339.aspx
13 -->
14
15 <!-- set to #1 if the .NET Framework 1.1 is installed (not set otherwise) -->
16 <Fragment>
17 <Property Id="NETFRAMEWORK11" Secure="yes">
18 <RegistrySearch Id="NetFramework11" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322" Name="Install" Type="raw" />
19 </Property>
20 </Fragment>
21
22 <!-- Indicates the service pack level for the .NET Framework 1.1. -->
23 <Fragment>
24 <Property Id="NETFRAMEWORK11_SP_LEVEL" Secure="yes">
25 <RegistrySearch Id="NetFramework11SP" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322" Name="SP" Type="raw" />
26 </Property>
27 </Fragment>
28
29 <!-- Location of .NET Framework 1.1 redistributable install root directory -->
30 <Fragment>
31 <Property Id="NETFRAMEWORK11INSTALLROOTDIR" Secure="yes">
32 <RegistrySearch Id="NetFxInstallRootForNetfx11Search" Type="raw" Root="HKLM" Key="Software\Microsoft\.NETFramework" Name="InstallRoot">
33 <DirectorySearch Id="NetFx11InstallRootSearch" Path="v1.1.4322" Depth="0" />
34 </RegistrySearch>
35 </Property>
36 </Fragment>
37
38 <!-- set to #1 if the .NET Framework 1.1 Chinese (Simplified) language pack is installed (not set otherwise) -->
39 <Fragment>
40 <Property Id="NETFRAMEWORK11_ZH_CN_LANGPACK" Secure="yes">
41 <RegistrySearch Id="NetFramework11ZhCnLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\2052" Name="Install" Type="raw" />
42 </Property>
43 </Fragment>
44
45 <!-- set to #1 if the .NET Framework 1.1 Chinese (Traditional) language pack is installed (not set otherwise) -->
46 <Fragment>
47 <Property Id="NETFRAMEWORK11_ZH_TW_LANGPACK" Secure="yes">
48 <RegistrySearch Id="NetFramework11ZhTwLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1028" Name="Install" Type="raw" />
49 </Property>
50 </Fragment>
51
52 <!-- set to #1 if the .NET Framework 1.1 Czech language pack is installed (not set otherwise) -->
53 <Fragment>
54 <Property Id="NETFRAMEWORK11_CS_CZ_LANGPACK" Secure="yes">
55 <RegistrySearch Id="NetFramework11CsCzLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1029" Name="Install" Type="raw" />
56 </Property>
57 </Fragment>
58
59 <!-- set to #1 if the .NET Framework 1.1 Danish language pack is installed (not set otherwise) -->
60 <Fragment>
61 <Property Id="NETFRAMEWORK11_DA_DK_LANGPACK" Secure="yes">
62 <RegistrySearch Id="NetFramework11DaDkLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1030" Name="Install" Type="raw" />
63 </Property>
64 </Fragment>
65
66 <!-- set to #1 if the .NET Framework 1.1 Dutch language pack is installed (not set otherwise) -->
67 <Fragment>
68 <Property Id="NETFRAMEWORK11_NL_NL_LANGPACK" Secure="yes">
69 <RegistrySearch Id="NetFramework11NlNlLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1043" Name="Install" Type="raw" />
70 </Property>
71 </Fragment>
72
73 <!-- set to #1 if the .NET Framework 1.1 Finnish language pack is installed (not set otherwise) -->
74 <Fragment>
75 <Property Id="NETFRAMEWORK11_FI_FI_LANGPACK" Secure="yes">
76 <RegistrySearch Id="NetFramework11FiFiLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1035" Name="Install" Type="raw" />
77 </Property>
78 </Fragment>
79
80 <!-- set to #1 if the .NET Framework 1.1 French language pack is installed (not set otherwise) -->
81 <Fragment>
82 <Property Id="NETFRAMEWORK11_FR_FR_LANGPACK" Secure="yes">
83 <RegistrySearch Id="NetFramework11FrFrLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1036" Name="Install" Type="raw" />
84 </Property>
85 </Fragment>
86
87 <!-- set to #1 if the .NET Framework 1.1 German language pack is installed (not set otherwise) -->
88 <Fragment>
89 <Property Id="NETFRAMEWORK11_DE_DE_LANGPACK" Secure="yes">
90 <RegistrySearch Id="NetFramework11DeDeLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1031" Name="Install" Type="raw" />
91 </Property>
92 </Fragment>
93
94 <!-- set to #1 if the .NET Framework 1.1 Greek language pack is installed (not set otherwise) -->
95 <Fragment>
96 <Property Id="NETFRAMEWORK11_EL_GR_LANGPACK" Secure="yes">
97 <RegistrySearch Id="NetFramework11ElGrLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1032" Name="Install" Type="raw" />
98 </Property>
99 </Fragment>
100
101 <!-- set to #1 if the .NET Framework 1.1 Hungarian language pack is installed (not set otherwise) -->
102 <Fragment>
103 <Property Id="NETFRAMEWORK11_HU_HU_LANGPACK" Secure="yes">
104 <RegistrySearch Id="NetFramework11HuHuLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1038" Name="Install" Type="raw" />
105 </Property>
106 </Fragment>
107
108 <!-- set to #1 if the .NET Framework 1.1 Italian language pack is installed (not set otherwise) -->
109 <Fragment>
110 <Property Id="NETFRAMEWORK11_IT_IT_LANGPACK" Secure="yes">
111 <RegistrySearch Id="NetFramework11ItItLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1040" Name="Install" Type="raw" />
112 </Property>
113 </Fragment>
114
115 <!-- set to #1 if the .NET Framework 1.1 Japanese language pack is installed (not set otherwise) -->
116 <Fragment>
117 <Property Id="NETFRAMEWORK11_JA_JP_LANGPACK" Secure="yes">
118 <RegistrySearch Id="NetFramework11JaJpLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1041" Name="Install" Type="raw" />
119 </Property>
120 </Fragment>
121
122 <!-- set to #1 if the .NET Framework 1.1 Korean language pack is installed (not set otherwise) -->
123 <Fragment>
124 <Property Id="NETFRAMEWORK11_KO_KR_LANGPACK" Secure="yes">
125 <RegistrySearch Id="NetFramework11KoKrLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1042" Name="Install" Type="raw" />
126 </Property>
127 </Fragment>
128
129 <!-- set to #1 if the .NET Framework 1.1 Norwegian language pack is installed (not set otherwise) -->
130 <Fragment>
131 <Property Id="NETFRAMEWORK11_NB_NO_LANGPACK" Secure="yes">
132 <RegistrySearch Id="NetFramework11NbNoLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1044" Name="Install" Type="raw" />
133 </Property>
134 </Fragment>
135
136 <!-- set to #1 if the .NET Framework 1.1 Polish language pack is installed (not set otherwise) -->
137 <Fragment>
138 <Property Id="NETFRAMEWORK11_PL_PL_LANGPACK" Secure="yes">
139 <RegistrySearch Id="NetFramework11PlPlLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1045" Name="Install" Type="raw" />
140 </Property>
141 </Fragment>
142
143 <!-- set to #1 if the .NET Framework 1.1 Portuguese (Brazil) language pack is installed (not set otherwise) -->
144 <Fragment>
145 <Property Id="NETFRAMEWORK11_PT_BR_LANGPACK" Secure="yes">
146 <RegistrySearch Id="NetFramework11PtBrLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1046" Name="Install" Type="raw" />
147 </Property>
148 </Fragment>
149
150 <!-- set to #1 if the .NET Framework 1.1 Portuguese (Portugal) language pack is installed (not set otherwise) -->
151 <Fragment>
152 <Property Id="NETFRAMEWORK11_PT_PT_LANGPACK" Secure="yes">
153 <RegistrySearch Id="NetFramework11PtPtLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\2070" Name="Install" Type="raw" />
154 </Property>
155 </Fragment>
156
157 <!-- set to #1 if the .NET Framework 1.1 Russian language pack is installed (not set otherwise) -->
158 <Fragment>
159 <Property Id="NETFRAMEWORK11_RU_RU_LANGPACK" Secure="yes">
160 <RegistrySearch Id="NetFramework11RuRuLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1049" Name="Install" Type="raw" />
161 </Property>
162 </Fragment>
163
164 <!-- set to #1 if the .NET Framework 1.1 Spanish language pack is installed (not set otherwise) -->
165 <Fragment>
166 <Property Id="NETFRAMEWORK11_ES_ES_LANGPACK" Secure="yes">
167 <RegistrySearch Id="NetFramework11EsEsLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\3082" Name="Install" Type="raw" />
168 </Property>
169 </Fragment>
170
171 <!-- set to #1 if the .NET Framework 1.1 Swedish language pack is installed (not set otherwise) -->
172 <Fragment>
173 <Property Id="NETFRAMEWORK11_SV_SE_LANGPACK" Secure="yes">
174 <RegistrySearch Id="NetFramework11SvSeLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1053" Name="Install" Type="raw" />
175 </Property>
176 </Fragment>
177
178 <!-- set to #1 if the .NET Framework 1.1 Turkish language pack is installed (not set otherwise) -->
179 <Fragment>
180 <Property Id="NETFRAMEWORK11_TR_TR_LANGPACK" Secure="yes">
181 <RegistrySearch Id="NetFramework11TrTrLp" Root="HKLM" Key="Software\Microsoft\NET Framework Setup\NDP\v1.1.4322\1055" Name="Install" Type="raw" />
182 </Property>
183 </Fragment>
184
185 <!-- location of the .NET Framework 1.1 SDK installation root -->
186 <Fragment>
187 <Property Id="NETFRAMEWORK11SDKDIR" Secure="yes">
188 <RegistrySearch Id="NetFramework11SDKDir" Root="HKLM" Key="Software\Microsoft\.NETFramework" Name="sdkInstallRootv1.1" Type="raw" />
189 </Property>
190 </Fragment>
191
192</Wix>