blob: ef538099d45444ae382c213ddcfcb1db5e6b7354 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
|
<!-- 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. -->
<Wix xmlns="http://wixtoolset.org/schemas/v4/wxs">
<!-- Visual Studio 2005 -->
<Fragment>
<Property Id="VS2005DEVENV" Secure="yes">
<RegistrySearch Id="VS2005DevEnvSearch" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\8.0\Setup\VS" Name="EnvironmentPath" Type="raw" />
</Property>
</Fragment>
<Fragment>
<Property Id="VS2005_ITEMTEMPLATES_DIR" Secure="yes">
<RegistrySearch Id="VS2005DevEnvForItemTemplatesSearch" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\8.0\Setup\VS" Name="EnvironmentPath" Type="raw">
<DirectorySearch Id="VS2005ItemTemplatesPathSearch" Path="ItemTemplates" Depth="1" />
</RegistrySearch>
</Property>
</Fragment>
<Fragment>
<Property Id="VS2005_PROJECTTEMPLATES_DIR" Secure="yes">
<RegistrySearch Id="VS2005DevEnvForProjectTemplatesSearch" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\8.0\Setup\VS" Name="EnvironmentPath" Type="raw">
<DirectorySearch Id="VS2005ProjectTemplatesPathSearch" Path="ProjectTemplates" Depth="1" />
</RegistrySearch>
</Property>
</Fragment>
<Fragment>
<Property Id="VS2005_SCHEMAS_DIR" Secure="yes">
<RegistrySearch Id="VS2005ProductPathSearch" Root="HKLM" Key="Software\Microsoft\VisualStudio\SxS\VS7" Name="8.0" Type="raw">
<DirectorySearch Id="VS2005XmlPathSearch" Path="Xml" Depth="1">
<DirectorySearch Id="VS2005XmlSchemasPathSearch" Path="Schemas" Depth="1" />
</DirectorySearch>
</RegistrySearch>
</Property>
</Fragment>
<Fragment>
<Property Id="VS2005PROJECTAGGREGATOR2" Secure="yes">
<ComponentSearch Id="VS2005ProjectAggregator2Search" Guid="B0BB80E0-5CCC-474E-A75E-05DC1AE073BC" />
</Property>
</Fragment>
<Fragment>
<CustomAction Id="VS2005Setup" Property="VS2005DEVENV" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" />
<PropertyRef Id="VS2005DEVENV" />
<InstallExecuteSequence>
<Custom Action="VS2005Setup" Before="InstallFinalize" Overridable="yes" Condition="VS2005DEVENV" />
</InstallExecuteSequence>
</Fragment>
<Fragment>
<CustomAction Id="VS2005InstallVSTemplates" Property="VS2005DEVENV" ExeCommand="/InstallVSTemplates" Execute="deferred" Return="ignore" Impersonate="no" />
<PropertyRef Id="VS2005DEVENV" />
<InstallExecuteSequence>
<Custom Action="VS2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VS2005DEVENV" />
</InstallExecuteSequence>
</Fragment>
<!-- Location of the Visual Studio 2005 root installation directory. -->
<Fragment>
<Property Id="VS2005_ROOT_FOLDER" Secure="yes">
<RegistrySearch Id="SearchForVS2005RootPath" Root="HKLM" Key="Software\Microsoft\VisualStudio\SxS\VS7" Name="8.0" Type="raw" />
</Property>
</Fragment>
<!-- Indicates whether the Visual C# 2005 Express IDE component is installed. -->
<!-- If this property is set, that means Visual C# 2005 Express Edition is -->
<!-- installed on the system. -->
<Fragment>
<Property Id="VCSHARP2005EXPRESS_IDE" Secure="yes">
<ComponentSearch Id="SearchForVcsExpressIde2005Component" Guid="E8A67F23-21D0-4E7B-BBD3-54E2D505BED8" Type="file">
<FileSearch Id="VcsExpressIde2005" Name="vcsexpress.exe" />
</ComponentSearch>
</Property>
</Fragment>
<!-- Custom action definition to run vcsexpress.exe /setup -->
<Fragment>
<CustomAction Id="VCSHARP2005Setup" Property="VCSHARP2005EXPRESS_IDE" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" />
<PropertyRef Id="VCSHARP2005EXPRESS_IDE" />
<InstallExecuteSequence>
<Custom Action="VCSHARP2005Setup" Before="InstallFinalize" Overridable="yes" Condition="VCSHARP2005EXPRESS_IDE" />
</InstallExecuteSequence>
</Fragment>
<!-- Custom action definition to run vcsexpress.exe /InstallVSTemplates -->
<Fragment>
<CustomAction Id="VCSHARP2005InstallVSTemplates" Property="VCSHARP2005EXPRESS_IDE" ExeCommand="/InstallVSTemplates" Execute="deferred" Return="ignore" Impersonate="no" />
<PropertyRef Id="VCSHARP2005EXPRESS_IDE" />
<InstallExecuteSequence>
<Custom Action="VCSHARP2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VCSHARP2005EXPRESS_IDE" />
</InstallExecuteSequence>
</Fragment>
<!-- Indicates whether the Visual C# project system is installed as a part of -->
<!-- Visual Studio 2005 standard or higher. If this property is set, that -->
<!-- means Visual Studio 2005 standard or higher is installed and the Visual -->
<!-- C# language tools were installed as a part of VS 2005 setup. -->
<Fragment>
<Property Id="VS2005_IDE_VCSHARP_PROJECTSYSTEM_INSTALLED" Secure="yes">
<RegistrySearch Id="SearchForVCSProjectSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\8.0\Projects\{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}" Name="DefaultProjectExtension" Type="raw" />
</Property>
</Fragment>
<!-- Indicates whether the Visual Basic 2005 Express IDE component is installed. -->
<!-- If this property is set, that means Visual Basic 2005 Express Edition is -->
<!-- installed on the system. -->
<Fragment>
<Property Id="VB2005EXPRESS_IDE" Secure="yes">
<ComponentSearch Id="SearchForVbExpressIde2005Component" Guid="FCDD3EF0-FFF4-4391-9467-AA48ADC7028F" Type="file">
<FileSearch Id="VbExpressIde2005" Name="vbexpress.exe" />
</ComponentSearch>
</Property>
</Fragment>
<!-- Custom action definition to run vbexpress.exe /setup -->
<Fragment>
<CustomAction Id="VB2005Setup" Property="VB2005EXPRESS_IDE" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" />
<PropertyRef Id="VB2005EXPRESS_IDE" />
<InstallExecuteSequence>
<Custom Action="VB2005Setup" Before="InstallFinalize" Overridable="yes" Condition="VB2005EXPRESS_IDE" />
</InstallExecuteSequence>
</Fragment>
<!-- Custom action definition to run vbexpress.exe /InstallVSTemplates -->
<Fragment>
<CustomAction Id="VB2005InstallVSTemplates" Property="VB2005EXPRESS_IDE" ExeCommand="/InstallVSTemplates" Execute="deferred" Return="ignore" Impersonate="no" />
<PropertyRef Id="VB2005EXPRESS_IDE" />
<InstallExecuteSequence>
<Custom Action="VB2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VB2005EXPRESS_IDE" />
</InstallExecuteSequence>
</Fragment>
<!-- Indicates whether the Visual Basic project system is installed as a part of -->
<!-- Visual Studio 2005 standard or higher. If this property is set, that -->
<!-- means Visual Studio 2005 standard or higher is installed and the Visual -->
<!-- Basic language tools were installed as a part of VS 2005 setup. -->
<Fragment>
<Property Id="VS2005_IDE_VB_PROJECTSYSTEM_INSTALLED" Secure="yes">
<RegistrySearch Id="SearchForVBProjectSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\8.0\Projects\{F184B08F-C81C-45f6-A57F-5ABD9991F28F}" Name="DefaultProjectExtension" Type="raw" />
</Property>
</Fragment>
<!-- Indicates whether the Visual Web Developer 2005 Express IDE component is installed. -->
<!-- If this property is set, that means Visual Web Developer 2005 Express Edition is -->
<!-- installed on the system. -->
<Fragment>
<Property Id="VWD2005EXPRESS_IDE" Secure="yes">
<ComponentSearch Id="SearchForVwdExpressIde2005Component" Guid="56B053EA-AEFA-490A-A537-5EA145574862" Type="file">
<FileSearch Id="VwdExpressIde2005" Name="vwdexpress.exe" />
</ComponentSearch>
</Property>
</Fragment>
<!-- Custom action definition to run vwdexpress.exe /setup -->
<Fragment>
<CustomAction Id="VWD2005Setup" Property="VWD2005EXPRESS_IDE" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" />
<PropertyRef Id="VWD2005EXPRESS_IDE" />
<InstallExecuteSequence>
<Custom Action="VWD2005Setup" Before="InstallFinalize" Overridable="yes" Condition="VWD2005EXPRESS_IDE" />
</InstallExecuteSequence>
</Fragment>
<!-- Custom action definition to run vwdexpress.exe /InstallVSTemplates -->
<Fragment>
<CustomAction Id="VWD2005InstallVSTemplates" Property="VWD2005EXPRESS_IDE" ExeCommand="/InstallVSTemplates" Execute="deferred" Return="ignore" Impersonate="no" />
<PropertyRef Id="VWD2005EXPRESS_IDE" />
<InstallExecuteSequence>
<Custom Action="VWD2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VWD2005EXPRESS_IDE" />
</InstallExecuteSequence>
</Fragment>
<!-- Indicates whether the Visual Web Developer project system is installed as a part of -->
<!-- Visual Studio 2005 standard or higher. If this property is set, that -->
<!-- means Visual Studio 2005 standard or higher is installed and the Visual -->
<!-- Web Developer language tools were installed as a part of VS 2005 setup. -->
<Fragment>
<Property Id="VS2005_IDE_VWD_PROJECTSYSTEM_INSTALLED" Secure="yes">
<RegistrySearch Id="SearchForVWDProjectSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\8.0\Projects\{E24C65DC-7377-472B-9ABA-BC803B73C61A}" Name="DefaultProjectExtension" Type="raw" />
</Property>
</Fragment>
<!-- Indicates whether the Visual C++ 2005 Express IDE component is installed. -->
<!-- If this property is set, that means Visual C++ 2005 Express Edition is -->
<!-- installed on the system. -->
<Fragment>
<Property Id="VC2005EXPRESS_IDE" Secure="yes">
<ComponentSearch Id="SearchForVcExpressIde2005Component" Guid="83D8DFB7-73ED-4C83-9606-805F4CD7E1EE" Type="file">
<FileSearch Id="VcExpressIde2005" Name="vcexpress.exe" />
</ComponentSearch>
</Property>
</Fragment>
<!-- Custom action definition to run vcexpress.exe /setup -->
<Fragment>
<CustomAction Id="VC2005Setup" Property="VC2005EXPRESS_IDE" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" />
<PropertyRef Id="VC2005EXPRESS_IDE" />
<InstallExecuteSequence>
<Custom Action="VC2005Setup" Before="InstallFinalize" Overridable="yes" Condition="VC2005EXPRESS_IDE" />
</InstallExecuteSequence>
</Fragment>
<!-- Custom action definition to run vcexpress.exe /InstallVSTemplates -->
<Fragment>
<CustomAction Id="VC2005InstallVSTemplates" Property="VC2005EXPRESS_IDE" ExeCommand="/InstallVSTemplates" Execute="deferred" Return="ignore" Impersonate="no" />
<PropertyRef Id="VC2005EXPRESS_IDE" />
<InstallExecuteSequence>
<Custom Action="VC2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VC2005EXPRESS_IDE" />
</InstallExecuteSequence>
</Fragment>
<!-- Indicates whether the Visual C++ project system is installed as a part of -->
<!-- Visual Studio 2005 standard or higher. If this property is set, that -->
<!-- means Visual Studio 2005 standard or higher is installed and the Visual -->
<!-- C++ language tools were installed as a part of VS 2005 setup. -->
<Fragment>
<Property Id="VS2005_IDE_VC_PROJECTSYSTEM_INSTALLED" Secure="yes">
<RegistrySearch Id="SearchForVCProjectSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\8.0\Projects\{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}" Name="DefaultProjectExtension" Type="raw" />
</Property>
</Fragment>
<!-- Indicates whether the Visual J# 2005 Express IDE component is installed. -->
<!-- If this property is set, that means Visual J# 2005 Express Edition is -->
<!-- installed on the system. -->
<Fragment>
<Property Id="VJSHARP2005EXPRESS_IDE" Secure="yes">
<ComponentSearch Id="SearchForVjsExpressIde2005Component" Guid="7077FCC9-C3E4-437E-83ED-D5D7D8D9BB6C" Type="file">
<FileSearch Id="VjsExpressIde2005" Name="vjsexpress.exe" />
</ComponentSearch>
</Property>
</Fragment>
<!-- Custom action definition to run vjsexpress.exe /setup -->
<Fragment>
<CustomAction Id="VJSHARP2005Setup" Property="VJSHARP2005EXPRESS_IDE" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" />
<PropertyRef Id="VJSHARP2005EXPRESS_IDE" />
<InstallExecuteSequence>
<Custom Action="VJSHARP2005Setup" Before="InstallFinalize" Overridable="yes" Condition="VJSHARP2005EXPRESS_IDE" />
</InstallExecuteSequence>
</Fragment>
<!-- Custom action definition to run vjsexpress.exe /InstallVSTemplates -->
<Fragment>
<CustomAction Id="VJSHARP2005InstallVSTemplates" Property="VJSHARP2005EXPRESS_IDE" ExeCommand="/InstallVSTemplates" Execute="deferred" Return="ignore" Impersonate="no" />
<PropertyRef Id="VJSHARP2005EXPRESS_IDE" />
<InstallExecuteSequence>
<Custom Action="VJSHARP2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VJSHARP2005EXPRESS_IDE" />
</InstallExecuteSequence>
</Fragment>
<!-- Indicates whether the Visual J# project system is installed as a part of -->
<!-- Visual Studio 2005 standard or higher. If this property is set, that -->
<!-- means Visual Studio 2005 standard or higher is installed and the Visual -->
<!-- J# language tools were installed as a part of VS 2005 setup. -->
<Fragment>
<Property Id="VS2005_IDE_VJSHARP_PROJECTSYSTEM_INSTALLED" Secure="yes">
<RegistrySearch Id="SearchForVJSProjectSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\8.0\Projects\{E6FDF86B-F3D1-11D4-8576-0002A516ECE8}" Name="DefaultProjectExtension" Type="raw" />
</Property>
</Fragment>
<!-- Indicates whether the Visual Studio Code Name "Orcas" Development Tools -->
<!-- for .NET Framework 3.0 add-in is installed for Visual Studio 2005. -->
<Fragment>
<Property Id="VSEXTENSIONS_FOR_NETFX30_INSTALLED" Secure="yes">
<ComponentSearch Id="SearchForVSExtensionsForNetfx30RootComponent" Guid="72616A39-A8E6-4187-BC32-0950598B4499" Type="file" />
</Property>
</Fragment>
<!-- Indicates whether the Visual Studio Team Test project system is installed -->
<Fragment>
<Property Id="VS2005_IDE_VSTS_TESTSYSTEM_INSTALLED" Secure="yes">
<RegistrySearch Id="SearchForVSTSTestSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\8.0\Projects\{3AC096D0-A1C2-E12C-1390-A8335801FDAB}" Name="Package" Type="raw" />
</Property>
</Fragment>
<!-- Indicates whether the Web Application Project is installed as a part of -->
<!-- Visual Studio 2005 standard or higher. This project type is installed -->
<!-- as a standalone package and as a part of Visual Studio 2005 SP1. -->
<Fragment>
<Property Id="VS2005_WAP_PROJECT_INSTALLED" Secure="yes">
<RegistrySearch Id="SearchForVS2005WAPProject" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\8.0\Packages\{349c5850-65df-11da-9384-00065b846f21}" Name="ProductName" Type="raw" />
</Property>
</Fragment>
<!-- Indicates the service pack level for Visual Studio 2005 standard edition -->
<!-- and higher. -->
<Fragment>
<Property Id="VS2005_SP_LEVEL" Secure="yes">
<RegistrySearch Id="SearchForVS2005SP1" Root="HKLM" Key="SOFTWARE\Microsoft\DevDiv\VS\Servicing\8.0" Name="SP" Type="raw" />
</Property>
</Fragment>
<!-- Indicates the service pack level for Visual Basic 2005 Express Edition. -->
<Fragment>
<Property Id="VB2005EXPRESS_SP_LEVEL" Secure="yes">
<RegistrySearch Id="SearchForVBExp2005SP1" Root="HKLM" Key="SOFTWARE\Microsoft\DevDiv\VB\Servicing\8.0" Name="SP" Type="raw" />
</Property>
</Fragment>
<!-- Indicates the service pack level for Visual C++ 2005 Express Edition. -->
<Fragment>
<Property Id="VC2005EXPRESS_SP_LEVEL" Secure="yes">
<RegistrySearch Id="SearchForVCExp2005SP1" Root="HKLM" Key="SOFTWARE\Microsoft\DevDiv\VC\Servicing\8.0" Name="SP" Type="raw" />
</Property>
</Fragment>
<!-- Indicates the service pack level for Visual C# 2005 Express Edition. -->
<Fragment>
<Property Id="VCSHARP2005EXPRESS_SP_LEVEL" Secure="yes">
<RegistrySearch Id="SearchForVCSharpExp2005SP1" Root="HKLM" Key="SOFTWARE\Microsoft\DevDiv\VCS\Servicing\8.0" Name="SP" Type="raw" />
</Property>
</Fragment>
<!-- Indicates the service pack level for Visual J# 2005 Express Edition. -->
<Fragment>
<Property Id="VJSHARP2005EXPRESS_SP_LEVEL" Secure="yes">
<RegistrySearch Id="SearchForVJSharpExp2005SP1" Root="HKLM" Key="SOFTWARE\Microsoft\DevDiv\VJS\Servicing\8.0" Name="SP" Type="raw" />
</Property>
</Fragment>
<!-- Indicates the service pack level for Visual Web Developer 2005 Express -->
<!-- Edition. -->
<Fragment>
<Property Id="VWD2005EXPRESS_SP_LEVEL" Secure="yes">
<RegistrySearch Id="SearchForVWDExp2005SP1" Root="HKLM" Key="SOFTWARE\Microsoft\DevDiv\VNS\Servicing\8.0" Name="SP" Type="raw" />
</Property>
</Fragment>
<!-- Indicates the service pack level for Visual Studio 2005 Team Foundation. -->
<Fragment>
<Property Id="VSTF2005_SP_LEVEL" Secure="yes">
<RegistrySearch Id="SearchForVSTF2005SP1" Root="HKLM" Key="SOFTWARE\Microsoft\DevDiv\VSTF\Servicing\8.0" Name="SP" Type="raw" />
</Property>
</Fragment>
<!-- Indicates whether or not the Document Explorer 2005 runtime components are installed. -->
<Fragment>
<Property Id="DEXPLORE_2005_INSTALLED" Secure="yes">
<RegistrySearch Id="Dexplore2005RegKey" Root="HKLM" Key="Software\Microsoft\DExplore\v2.0.50727\1033" Name="Install" Type="raw" />
</Property>
</Fragment>
<!-- Indicates whether or not the J# redistributable package 2.0 first edition is installed. -->
<Fragment>
<Property Id="JSHARP_REDIST_20_INSTALLED" Secure="yes">
<RegistrySearch Id="JSharpRedist20RegKey" Root="HKLM" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Visual J# 2.0 Redistributable Package" Name="UninstallPath" Type="raw" />
</Property>
</Fragment>
<!-- Indicates whether or not the J# redistributable package 2.0 second edition is installed. -->
<Fragment>
<Property Id="JSHARP_REDIST_20SE_INSTALLED" Secure="yes">
<RegistrySearch Id="JSharpRedist20SERegKey" Root="HKLM" Key="Software\Microsoft\Windows\CurrentVersion\Uninstall\Microsoft Visual J# 2.0 Redistributable Package - SE" Name="UninstallPath" Type="raw" />
</Property>
</Fragment>
</Wix>
|