diff options
Diffstat (limited to 'src/wixlib/VS2005.wxs')
-rw-r--r-- | src/wixlib/VS2005.wxs | 39 |
1 files changed, 19 insertions, 20 deletions
diff --git a/src/wixlib/VS2005.wxs b/src/wixlib/VS2005.wxs index 3aadf08c..ef538099 100644 --- a/src/wixlib/VS2005.wxs +++ b/src/wixlib/VS2005.wxs | |||
@@ -1,5 +1,4 @@ | |||
1 | <?xml version="1.0" encoding="UTF-8"?> | 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"> |
@@ -47,7 +46,7 @@ | |||
47 | <PropertyRef Id="VS2005DEVENV" /> | 46 | <PropertyRef Id="VS2005DEVENV" /> |
48 | 47 | ||
49 | <InstallExecuteSequence> | 48 | <InstallExecuteSequence> |
50 | <Custom Action="VS2005Setup" Before="InstallFinalize" Overridable="yes">VS2005DEVENV</Custom> | 49 | <Custom Action="VS2005Setup" Before="InstallFinalize" Overridable="yes" Condition="VS2005DEVENV" /> |
51 | </InstallExecuteSequence> | 50 | </InstallExecuteSequence> |
52 | </Fragment> | 51 | </Fragment> |
53 | 52 | ||
@@ -56,7 +55,7 @@ | |||
56 | <PropertyRef Id="VS2005DEVENV" /> | 55 | <PropertyRef Id="VS2005DEVENV" /> |
57 | 56 | ||
58 | <InstallExecuteSequence> | 57 | <InstallExecuteSequence> |
59 | <Custom Action="VS2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes">VS2005DEVENV</Custom> | 58 | <Custom Action="VS2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VS2005DEVENV" /> |
60 | </InstallExecuteSequence> | 59 | </InstallExecuteSequence> |
61 | </Fragment> | 60 | </Fragment> |
62 | 61 | ||
@@ -72,8 +71,8 @@ | |||
72 | <!-- installed on the system. --> | 71 | <!-- installed on the system. --> |
73 | <Fragment> | 72 | <Fragment> |
74 | <Property Id="VCSHARP2005EXPRESS_IDE" Secure="yes"> | 73 | <Property Id="VCSHARP2005EXPRESS_IDE" Secure="yes"> |
75 | <ComponentSearch Id="SearchForVcsExpressIde2005Component" Guid="E8A67F23-21D0-4E7B-BBD3-54E2D505BED8" Type="file" > | 74 | <ComponentSearch Id="SearchForVcsExpressIde2005Component" Guid="E8A67F23-21D0-4E7B-BBD3-54E2D505BED8" Type="file"> |
76 | <FileSearch Id="VcsExpressIde2005" Name="vcsexpress.exe"/> | 75 | <FileSearch Id="VcsExpressIde2005" Name="vcsexpress.exe" /> |
77 | </ComponentSearch> | 76 | </ComponentSearch> |
78 | </Property> | 77 | </Property> |
79 | </Fragment> | 78 | </Fragment> |
@@ -84,7 +83,7 @@ | |||
84 | <PropertyRef Id="VCSHARP2005EXPRESS_IDE" /> | 83 | <PropertyRef Id="VCSHARP2005EXPRESS_IDE" /> |
85 | 84 | ||
86 | <InstallExecuteSequence> | 85 | <InstallExecuteSequence> |
87 | <Custom Action="VCSHARP2005Setup" Before="InstallFinalize" Overridable="yes">VCSHARP2005EXPRESS_IDE</Custom> | 86 | <Custom Action="VCSHARP2005Setup" Before="InstallFinalize" Overridable="yes" Condition="VCSHARP2005EXPRESS_IDE" /> |
88 | </InstallExecuteSequence> | 87 | </InstallExecuteSequence> |
89 | </Fragment> | 88 | </Fragment> |
90 | 89 | ||
@@ -94,7 +93,7 @@ | |||
94 | <PropertyRef Id="VCSHARP2005EXPRESS_IDE" /> | 93 | <PropertyRef Id="VCSHARP2005EXPRESS_IDE" /> |
95 | 94 | ||
96 | <InstallExecuteSequence> | 95 | <InstallExecuteSequence> |
97 | <Custom Action="VCSHARP2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes">VCSHARP2005EXPRESS_IDE</Custom> | 96 | <Custom Action="VCSHARP2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VCSHARP2005EXPRESS_IDE" /> |
98 | </InstallExecuteSequence> | 97 | </InstallExecuteSequence> |
99 | </Fragment> | 98 | </Fragment> |
100 | 99 | ||
@@ -114,7 +113,7 @@ | |||
114 | <Fragment> | 113 | <Fragment> |
115 | <Property Id="VB2005EXPRESS_IDE" Secure="yes"> | 114 | <Property Id="VB2005EXPRESS_IDE" Secure="yes"> |
116 | <ComponentSearch Id="SearchForVbExpressIde2005Component" Guid="FCDD3EF0-FFF4-4391-9467-AA48ADC7028F" Type="file"> | 115 | <ComponentSearch Id="SearchForVbExpressIde2005Component" Guid="FCDD3EF0-FFF4-4391-9467-AA48ADC7028F" Type="file"> |
117 | <FileSearch Id="VbExpressIde2005" Name="vbexpress.exe"/> | 116 | <FileSearch Id="VbExpressIde2005" Name="vbexpress.exe" /> |
118 | </ComponentSearch> | 117 | </ComponentSearch> |
119 | </Property> | 118 | </Property> |
120 | </Fragment> | 119 | </Fragment> |
@@ -125,7 +124,7 @@ | |||
125 | <PropertyRef Id="VB2005EXPRESS_IDE" /> | 124 | <PropertyRef Id="VB2005EXPRESS_IDE" /> |
126 | 125 | ||
127 | <InstallExecuteSequence> | 126 | <InstallExecuteSequence> |
128 | <Custom Action="VB2005Setup" Before="InstallFinalize" Overridable="yes">VB2005EXPRESS_IDE</Custom> | 127 | <Custom Action="VB2005Setup" Before="InstallFinalize" Overridable="yes" Condition="VB2005EXPRESS_IDE" /> |
129 | </InstallExecuteSequence> | 128 | </InstallExecuteSequence> |
130 | </Fragment> | 129 | </Fragment> |
131 | 130 | ||
@@ -135,7 +134,7 @@ | |||
135 | <PropertyRef Id="VB2005EXPRESS_IDE" /> | 134 | <PropertyRef Id="VB2005EXPRESS_IDE" /> |
136 | 135 | ||
137 | <InstallExecuteSequence> | 136 | <InstallExecuteSequence> |
138 | <Custom Action="VB2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes">VB2005EXPRESS_IDE</Custom> | 137 | <Custom Action="VB2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VB2005EXPRESS_IDE" /> |
139 | </InstallExecuteSequence> | 138 | </InstallExecuteSequence> |
140 | </Fragment> | 139 | </Fragment> |
141 | 140 | ||
@@ -155,7 +154,7 @@ | |||
155 | <Fragment> | 154 | <Fragment> |
156 | <Property Id="VWD2005EXPRESS_IDE" Secure="yes"> | 155 | <Property Id="VWD2005EXPRESS_IDE" Secure="yes"> |
157 | <ComponentSearch Id="SearchForVwdExpressIde2005Component" Guid="56B053EA-AEFA-490A-A537-5EA145574862" Type="file"> | 156 | <ComponentSearch Id="SearchForVwdExpressIde2005Component" Guid="56B053EA-AEFA-490A-A537-5EA145574862" Type="file"> |
158 | <FileSearch Id="VwdExpressIde2005" Name="vwdexpress.exe"/> | 157 | <FileSearch Id="VwdExpressIde2005" Name="vwdexpress.exe" /> |
159 | </ComponentSearch> | 158 | </ComponentSearch> |
160 | </Property> | 159 | </Property> |
161 | </Fragment> | 160 | </Fragment> |
@@ -166,7 +165,7 @@ | |||
166 | <PropertyRef Id="VWD2005EXPRESS_IDE" /> | 165 | <PropertyRef Id="VWD2005EXPRESS_IDE" /> |
167 | 166 | ||
168 | <InstallExecuteSequence> | 167 | <InstallExecuteSequence> |
169 | <Custom Action="VWD2005Setup" Before="InstallFinalize" Overridable="yes">VWD2005EXPRESS_IDE</Custom> | 168 | <Custom Action="VWD2005Setup" Before="InstallFinalize" Overridable="yes" Condition="VWD2005EXPRESS_IDE" /> |
170 | </InstallExecuteSequence> | 169 | </InstallExecuteSequence> |
171 | </Fragment> | 170 | </Fragment> |
172 | 171 | ||
@@ -176,7 +175,7 @@ | |||
176 | <PropertyRef Id="VWD2005EXPRESS_IDE" /> | 175 | <PropertyRef Id="VWD2005EXPRESS_IDE" /> |
177 | 176 | ||
178 | <InstallExecuteSequence> | 177 | <InstallExecuteSequence> |
179 | <Custom Action="VWD2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes">VWD2005EXPRESS_IDE</Custom> | 178 | <Custom Action="VWD2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VWD2005EXPRESS_IDE" /> |
180 | </InstallExecuteSequence> | 179 | </InstallExecuteSequence> |
181 | </Fragment> | 180 | </Fragment> |
182 | 181 | ||
@@ -196,7 +195,7 @@ | |||
196 | <Fragment> | 195 | <Fragment> |
197 | <Property Id="VC2005EXPRESS_IDE" Secure="yes"> | 196 | <Property Id="VC2005EXPRESS_IDE" Secure="yes"> |
198 | <ComponentSearch Id="SearchForVcExpressIde2005Component" Guid="83D8DFB7-73ED-4C83-9606-805F4CD7E1EE" Type="file"> | 197 | <ComponentSearch Id="SearchForVcExpressIde2005Component" Guid="83D8DFB7-73ED-4C83-9606-805F4CD7E1EE" Type="file"> |
199 | <FileSearch Id="VcExpressIde2005" Name="vcexpress.exe"/> | 198 | <FileSearch Id="VcExpressIde2005" Name="vcexpress.exe" /> |
200 | </ComponentSearch> | 199 | </ComponentSearch> |
201 | </Property> | 200 | </Property> |
202 | </Fragment> | 201 | </Fragment> |
@@ -207,7 +206,7 @@ | |||
207 | <PropertyRef Id="VC2005EXPRESS_IDE" /> | 206 | <PropertyRef Id="VC2005EXPRESS_IDE" /> |
208 | 207 | ||
209 | <InstallExecuteSequence> | 208 | <InstallExecuteSequence> |
210 | <Custom Action="VC2005Setup" Before="InstallFinalize" Overridable="yes">VC2005EXPRESS_IDE</Custom> | 209 | <Custom Action="VC2005Setup" Before="InstallFinalize" Overridable="yes" Condition="VC2005EXPRESS_IDE" /> |
211 | </InstallExecuteSequence> | 210 | </InstallExecuteSequence> |
212 | </Fragment> | 211 | </Fragment> |
213 | 212 | ||
@@ -217,7 +216,7 @@ | |||
217 | <PropertyRef Id="VC2005EXPRESS_IDE" /> | 216 | <PropertyRef Id="VC2005EXPRESS_IDE" /> |
218 | 217 | ||
219 | <InstallExecuteSequence> | 218 | <InstallExecuteSequence> |
220 | <Custom Action="VC2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes">VC2005EXPRESS_IDE</Custom> | 219 | <Custom Action="VC2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VC2005EXPRESS_IDE" /> |
221 | </InstallExecuteSequence> | 220 | </InstallExecuteSequence> |
222 | </Fragment> | 221 | </Fragment> |
223 | 222 | ||
@@ -237,7 +236,7 @@ | |||
237 | <Fragment> | 236 | <Fragment> |
238 | <Property Id="VJSHARP2005EXPRESS_IDE" Secure="yes"> | 237 | <Property Id="VJSHARP2005EXPRESS_IDE" Secure="yes"> |
239 | <ComponentSearch Id="SearchForVjsExpressIde2005Component" Guid="7077FCC9-C3E4-437E-83ED-D5D7D8D9BB6C" Type="file"> | 238 | <ComponentSearch Id="SearchForVjsExpressIde2005Component" Guid="7077FCC9-C3E4-437E-83ED-D5D7D8D9BB6C" Type="file"> |
240 | <FileSearch Id="VjsExpressIde2005" Name="vjsexpress.exe"/> | 239 | <FileSearch Id="VjsExpressIde2005" Name="vjsexpress.exe" /> |
241 | </ComponentSearch> | 240 | </ComponentSearch> |
242 | </Property> | 241 | </Property> |
243 | </Fragment> | 242 | </Fragment> |
@@ -248,7 +247,7 @@ | |||
248 | <PropertyRef Id="VJSHARP2005EXPRESS_IDE" /> | 247 | <PropertyRef Id="VJSHARP2005EXPRESS_IDE" /> |
249 | 248 | ||
250 | <InstallExecuteSequence> | 249 | <InstallExecuteSequence> |
251 | <Custom Action="VJSHARP2005Setup" Before="InstallFinalize" Overridable="yes">VJSHARP2005EXPRESS_IDE</Custom> | 250 | <Custom Action="VJSHARP2005Setup" Before="InstallFinalize" Overridable="yes" Condition="VJSHARP2005EXPRESS_IDE" /> |
252 | </InstallExecuteSequence> | 251 | </InstallExecuteSequence> |
253 | </Fragment> | 252 | </Fragment> |
254 | 253 | ||
@@ -258,7 +257,7 @@ | |||
258 | <PropertyRef Id="VJSHARP2005EXPRESS_IDE" /> | 257 | <PropertyRef Id="VJSHARP2005EXPRESS_IDE" /> |
259 | 258 | ||
260 | <InstallExecuteSequence> | 259 | <InstallExecuteSequence> |
261 | <Custom Action="VJSHARP2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes">VJSHARP2005EXPRESS_IDE</Custom> | 260 | <Custom Action="VJSHARP2005InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VJSHARP2005EXPRESS_IDE" /> |
262 | </InstallExecuteSequence> | 261 | </InstallExecuteSequence> |
263 | </Fragment> | 262 | </Fragment> |
264 | 263 | ||