diff options
Diffstat (limited to 'src/ext/VisualStudio/wixlib/VS2013.wxs')
-rw-r--r-- | src/ext/VisualStudio/wixlib/VS2013.wxs | 252 |
1 files changed, 252 insertions, 0 deletions
diff --git a/src/ext/VisualStudio/wixlib/VS2013.wxs b/src/ext/VisualStudio/wixlib/VS2013.wxs new file mode 100644 index 00000000..6681b43f --- /dev/null +++ b/src/ext/VisualStudio/wixlib/VS2013.wxs | |||
@@ -0,0 +1,252 @@ | |||
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 | <Fragment> | ||
6 | <Property Id="VS2013_EXTENSIONS_DIR" Secure="yes"> | ||
7 | <RegistrySearch Id="VS2013DevEnvForExtensionsSearch" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\12.0\Setup\VS" Name="EnvironmentDirectory" Type="raw"> | ||
8 | <DirectorySearch Id="VS2013ExtensionsPathSearch" Path="Extensions" Depth="1" /> | ||
9 | </RegistrySearch> | ||
10 | </Property> | ||
11 | </Fragment> | ||
12 | |||
13 | <Fragment> | ||
14 | <Property Id="VS2013_PROJECTTEMPLATES_DIR" Secure="yes"> | ||
15 | <RegistrySearch Id="VS2013DevEnvForProjectTemplatesSearch" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\12.0\Setup\VS" Name="EnvironmentDirectory" Type="raw"> | ||
16 | <DirectorySearch Id="VS2013ProjectTemplatesPathSearch" Path="ProjectTemplates" Depth="1" /> | ||
17 | </RegistrySearch> | ||
18 | </Property> | ||
19 | </Fragment> | ||
20 | |||
21 | <Fragment> | ||
22 | <Property Id="VS2013_SCHEMAS_DIR" Secure="yes"> | ||
23 | <RegistrySearch Id="VS2013ProductPathSearch" Root="HKLM" Key="Software\Microsoft\VisualStudio\SxS\VS7" Name="12.0" Type="raw"> | ||
24 | <DirectorySearch Id="VS2013XmlPathSearch" Path="Xml" Depth="1"> | ||
25 | <DirectorySearch Id="VS2013XmlSchemasPathSearch" Path="Schemas" Depth="1" /> | ||
26 | </DirectorySearch> | ||
27 | </RegistrySearch> | ||
28 | </Property> | ||
29 | </Fragment> | ||
30 | |||
31 | <Fragment> | ||
32 | <Property Id="VS2013_ITEMTEMPLATES_DIR" Secure="yes"> | ||
33 | <RegistrySearch Id="VS2013DevEnvForItemTemplatesSearch" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\12.0\Setup\VS" Name="EnvironmentDirectory" Type="raw"> | ||
34 | <DirectorySearch Id="VS2013ItemTemplatesPathSearch" Path="ItemTemplates" Depth="1" /> | ||
35 | </RegistrySearch> | ||
36 | </Property> | ||
37 | </Fragment> | ||
38 | |||
39 | <Fragment> | ||
40 | <Property Id="VS2013_BOOTSTRAPPER_PACKAGE_FOLDER" Secure="yes"> | ||
41 | <RegistrySearch Id="SearchForVS2013BootstrapperPackageFolder" Root="HKLM" Key="Software\Microsoft\GenericBootstrapper\12.0" Name="Path" Type="raw" /> | ||
42 | </Property> | ||
43 | </Fragment> | ||
44 | |||
45 | <Fragment> | ||
46 | <Property Id="VS2013_ROOT_FOLDER" Secure="yes"> | ||
47 | <RegistrySearch Id="SearchForVS2013RootPath" Root="HKLM" Key="Software\Microsoft\VisualStudio\SxS\VS7" Name="12.0" Type="raw" /> | ||
48 | </Property> | ||
49 | </Fragment> | ||
50 | |||
51 | <Fragment> | ||
52 | <Property Id="VS2013DEVENV" Secure="yes"> | ||
53 | <RegistrySearch Id="VS2013DevEnvSearch" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\12.0\Setup\VS" Name="EnvironmentPath" Type="raw" /> | ||
54 | </Property> | ||
55 | </Fragment> | ||
56 | |||
57 | <Fragment> | ||
58 | <CustomAction Id="VS2013Setup" Property="VS2013DEVENV" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" /> | ||
59 | <PropertyRef Id="VS2013DEVENV" /> | ||
60 | |||
61 | <InstallExecuteSequence> | ||
62 | <Custom Action="VS2013Setup" Before="InstallFinalize" Overridable="yes" Condition="VS2013DEVENV" /> | ||
63 | </InstallExecuteSequence> | ||
64 | </Fragment> | ||
65 | |||
66 | <Fragment> | ||
67 | <CustomAction Id="VS2013InstallVSTemplates" Property="VS2013DEVENV" ExeCommand="/InstallVSTemplates" Execute="deferred" Return="ignore" Impersonate="no" /> | ||
68 | <PropertyRef Id="VS2013DEVENV" /> | ||
69 | |||
70 | <InstallExecuteSequence> | ||
71 | <Custom Action="VS2013InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VS2013DEVENV" /> | ||
72 | </InstallExecuteSequence> | ||
73 | </Fragment> | ||
74 | |||
75 | <!-- Indicates whether the Visual C# project system is installed as a part of --> | ||
76 | <!-- Visual Studio 2013 Pro or higher. If this property is set, that --> | ||
77 | <!-- means Visual Studio 2013 Pro or higher is installed and the Visual --> | ||
78 | <!-- C# language tools were installed as a part of VS 2013 setup. --> | ||
79 | <Fragment> | ||
80 | <Property Id="VS2013_IDE_VCSHARP_PROJECTSYSTEM_INSTALLED" Secure="yes"> | ||
81 | <RegistrySearch Id="SearchForVCS2013ProjectSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\12.0\Setup\VC#" Name="ProductDir" Type="raw" /> | ||
82 | </Property> | ||
83 | </Fragment> | ||
84 | |||
85 | <!-- Indicates whether the Visual Basic project system is installed as a part of --> | ||
86 | <!-- Visual Studio 2013 Pro or higher. If this property is set, that --> | ||
87 | <!-- means Visual Studio 2013 Pro or higher is installed and the Visual --> | ||
88 | <!-- Basic language tools were installed as a part of VS 2013 setup. --> | ||
89 | <Fragment> | ||
90 | <Property Id="VS2013_IDE_VB_PROJECTSYSTEM_INSTALLED" Secure="yes"> | ||
91 | <RegistrySearch Id="SearchForVB2013ProjectSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\12.0\Setup\VB" Name="ProductDir" Type="raw" /> | ||
92 | </Property> | ||
93 | </Fragment> | ||
94 | |||
95 | <!-- Indicates whether the Visual Web Developer 2013 Express IDE component is installed. --> | ||
96 | <!-- If this property is set, that means Visual Web Developer 2013 Express Edition is --> | ||
97 | <!-- installed on the system. --> | ||
98 | <Fragment> | ||
99 | <Property Id="VWD2013EXPRESS_IDE" Secure="yes"> | ||
100 | <ComponentSearch Id="SearchForVwdExpressIde2013Component" Guid="{04B98358-C73B-40F7-9946-AA80B316DA84}" Type="file"> | ||
101 | <FileSearch Id="VwdExpressIde2013" Name="vwdexpress.exe" /> | ||
102 | </ComponentSearch> | ||
103 | </Property> | ||
104 | </Fragment> | ||
105 | <!-- Custom action definition to run vwdexpress.exe /setup --> | ||
106 | <Fragment> | ||
107 | <CustomAction Id="VWD2013Setup" Property="VWD2013EXPRESS_IDE" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" /> | ||
108 | <PropertyRef Id="VWD2013EXPRESS_IDE" /> | ||
109 | <InstallExecuteSequence> | ||
110 | <Custom Action="VWD2013Setup" Before="InstallFinalize" Overridable="yes" Condition="VWD2013EXPRESS_IDE" /> | ||
111 | </InstallExecuteSequence> | ||
112 | </Fragment> | ||
113 | <!-- Custom action definition to run vwdexpress.exe /InstallVSTemplates --> | ||
114 | <Fragment> | ||
115 | <CustomAction Id="VWD2013InstallVSTemplates" Property="VWD2013EXPRESS_IDE" ExeCommand="/InstallVSTemplates" Execute="deferred" Return="ignore" Impersonate="no" /> | ||
116 | <PropertyRef Id="VWD2013EXPRESS_IDE" /> | ||
117 | <InstallExecuteSequence> | ||
118 | <Custom Action="VWD2013InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VWD2013EXPRESS_IDE" /> | ||
119 | </InstallExecuteSequence> | ||
120 | </Fragment> | ||
121 | |||
122 | <!-- Indicates whether the Visual Studio 2013 Express IDE for Phone component is installed. --> | ||
123 | <Fragment> | ||
124 | <Property Id="VPD2013EXPRESS_IDE" Secure="yes"> | ||
125 | <RegistrySearch Id="VPD2013ExpressForPhoneEnvSearch" Root="HKLM" Key="SOFTWARE\Microsoft\VPDExpress\12.0\Setup\VS" Name="EnvironmentPath" Type="raw" /> | ||
126 | </Property> | ||
127 | </Fragment> | ||
128 | <!-- Custom action definition to run VPDexpress.exe /setup --> | ||
129 | <Fragment> | ||
130 | <CustomAction Id="VPD2013Setup" Property="VPD2013EXPRESS_IDE" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" /> | ||
131 | <PropertyRef Id="VPD2013EXPRESS_IDE" /> | ||
132 | <InstallExecuteSequence> | ||
133 | <Custom Action="VPD2013Setup" Before="InstallFinalize" Overridable="yes" Condition="VPD2013EXPRESS_IDE" /> | ||
134 | </InstallExecuteSequence> | ||
135 | </Fragment> | ||
136 | <!-- Custom action definition to run VPDexpress.exe /InstallVSTemplates --> | ||
137 | <Fragment> | ||
138 | <CustomAction Id="VPD2013InstallVSTemplates" Property="VPD2013EXPRESS_IDE" ExeCommand="/InstallVSTemplates" Execute="deferred" Return="ignore" Impersonate="no" /> | ||
139 | <PropertyRef Id="VPD2013EXPRESS_IDE" /> | ||
140 | <InstallExecuteSequence> | ||
141 | <Custom Action="VPD2013InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VPD2013EXPRESS_IDE" /> | ||
142 | </InstallExecuteSequence> | ||
143 | </Fragment> | ||
144 | |||
145 | <!-- Indicates whether the Visual Web Developer project system is installed as a part of --> | ||
146 | <!-- Visual Studio 2013 Pro or higher. If this property is set, that --> | ||
147 | <!-- means Visual Studio 2013 Pro or higher is installed and the Visual --> | ||
148 | <!-- Web Developer language tools were installed as a part of VS 2013 setup. --> | ||
149 | <Fragment> | ||
150 | <Property Id="VS2013_IDE_VWD_PROJECTSYSTEM_INSTALLED" Secure="yes"> | ||
151 | <ComponentSearch Id="SearchForVWD2013ProjectSystemUnderVSSetup" Guid="{CDA2DE5A-F6F4-48D0-B9BA-58CFD381143C}" /> | ||
152 | <ComponentSearch Id="SearchForVWD2013ProjectSystemUnderVWDSetup" Guid="{C6E8D1B3-85F3-4F3A-A6AE-4166F917C9FD}" Type="directory" /> | ||
153 | </Property> | ||
154 | </Fragment> | ||
155 | |||
156 | <!-- Indicates whether the Visual C++ project system is installed as a part of --> | ||
157 | <!-- Visual Studio 2013 Pro or higher. If this property is set, that --> | ||
158 | <!-- means Visual Studio 2013 Pro or higher is installed and the Visual --> | ||
159 | <!-- C++ language tools were installed as a part of VS 2013 setup. --> | ||
160 | <Fragment> | ||
161 | <Property Id="VS2013_IDE_VC_PROJECTSYSTEM_INSTALLED" Secure="yes"> | ||
162 | <RegistrySearch Id="SearchForVC2013ProjectSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\12.0\Setup\VC" Name="ProductDir" Type="raw" /> | ||
163 | </Property> | ||
164 | </Fragment> | ||
165 | |||
166 | <!-- Indicates whether the Visual Studio 2013 Team Test project system is installed --> | ||
167 | <Fragment> | ||
168 | <Property Id="VS2013_IDE_VSTS_TESTSYSTEM_INSTALLED" Secure="yes"> | ||
169 | <RegistrySearch Id="SearchForVSTS2013TestSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\12.0\Projects\{3AC096D0-A1C2-E12C-1390-A8335801FDAB}" Name="Package" Type="raw" /> | ||
170 | </Property> | ||
171 | </Fragment> | ||
172 | |||
173 | <!-- Indicates whether the Windows Installer XML project system is installed for VS2013 --> | ||
174 | <Fragment> | ||
175 | <Property Id="VS2013_IDE_WIX_PROJECTSYSTEM_INSTALLED" Secure="yes"> | ||
176 | <!-- Component search for the .pkgdef file for VS2013 --> | ||
177 | <ComponentSearch Id="SearchForVS2013WixSystemUnderVSSetup" Guid="{768F32E1-BAAB-5203-822D-3BD85F9BD26E}" /> | ||
178 | </Property> | ||
179 | </Fragment> | ||
180 | |||
181 | <!-- Indicates whether the Visual Studio Modeling project system is installed --> | ||
182 | <Fragment> | ||
183 | <Property Id="VS2013_IDE_MODELING_PROJECTSYSTEM_INSTALLED" Secure="yes"> | ||
184 | <RegistrySearch Id="SearchForVSTS2013ModelingSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\12.0\Projects\{f088123c-0e9e-452a-89e6-6ba2f21d5cac}" Name="Package" Type="raw" /> | ||
185 | </Property> | ||
186 | </Fragment> | ||
187 | |||
188 | <!-- Indicates whether the Visual Studio F# project system is installed --> | ||
189 | <Fragment> | ||
190 | <Property Id="VS2013_IDE_FSHARP_PROJECTSYSTEM_INSTALLED" Secure="yes"> | ||
191 | <RegistrySearch Id="SearchForVSTS2013FSharpSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\12.0\Setup\F#" Name="ProductDir" Type="raw" /> | ||
192 | </Property> | ||
193 | </Fragment> | ||
194 | |||
195 | <!-- Indicates whether the Visual Studio Express for Windows IDE component is installed. --> | ||
196 | <!-- If this property is set, that means Visual Studio Express for Windows is installed --> | ||
197 | <!-- on the system. --> | ||
198 | <Fragment> | ||
199 | <Property Id="VS2013WINEXPRESS_IDE" Secure="yes"> | ||
200 | <ComponentSearch Id="SearchForVS2013WinExpressIdeComponent" Guid="{5E7D5287-3ADA-4A8E-9953-C6B702BD1F01}" Type="file"> | ||
201 | <FileSearch Id="VS2013WinExpressIde" Name="vswinexpress.exe" /> | ||
202 | </ComponentSearch> | ||
203 | </Property> | ||
204 | </Fragment> | ||
205 | |||
206 | <!-- Custom action definition to run vswinexpress.exe /setup --> | ||
207 | <Fragment> | ||
208 | <CustomAction Id="VS2013WinExpressSetup" Property="VS2013WINEXPRESS_IDE" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" /> | ||
209 | <PropertyRef Id="VS2013WINEXPRESS_IDE" /> | ||
210 | <InstallExecuteSequence> | ||
211 | <Custom Action="VS2013WinExpressSetup" Before="InstallFinalize" Overridable="yes" Condition="VS2013WINEXPRESS_IDE" /> | ||
212 | </InstallExecuteSequence> | ||
213 | </Fragment> | ||
214 | |||
215 | <!-- Custom action definition to run vswinexpress.exe /InstallVSTemplates --> | ||
216 | <Fragment> | ||
217 | <CustomAction Id="VS2013WinExpressInstallVSTemplates" Property="VS2013WINEXPRESS_IDE" ExeCommand="/InstallVSTemplates" Execute="deferred" Return="ignore" Impersonate="no" /> | ||
218 | <PropertyRef Id="VS2013WINEXPRESS_IDE" /> | ||
219 | <InstallExecuteSequence> | ||
220 | <Custom Action="VS2013WinExpressInstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VS2013WINEXPRESS_IDE" /> | ||
221 | </InstallExecuteSequence> | ||
222 | </Fragment> | ||
223 | |||
224 | <!-- Indicates whether the Visual Studio Express for Windows Desktop IDE component is installed. --> | ||
225 | <!-- If this property is set, that means Visual Studio Express for Windows Desktop is installed --> | ||
226 | <!-- on the system. --> | ||
227 | <Fragment> | ||
228 | <Property Id="VS2013WDEXPRESS_IDE" Secure="yes"> | ||
229 | <ComponentSearch Id="SearchForVS2013WDExpressIdeComponent" Guid="{6C65247B-900C-45AD-8ED8-3F20E668348E}" Type="file"> | ||
230 | <FileSearch Id="VS2013WDExpressIde" Name="WDExpress.exe" /> | ||
231 | </ComponentSearch> | ||
232 | </Property> | ||
233 | </Fragment> | ||
234 | |||
235 | <!-- Custom action definition to run WDExpress.exe /setup --> | ||
236 | <Fragment> | ||
237 | <CustomAction Id="VS2013WDExpressSetup" Property="VS2013WDEXPRESS_IDE" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" /> | ||
238 | <PropertyRef Id="VS2013WDEXPRESS_IDE" /> | ||
239 | <InstallExecuteSequence> | ||
240 | <Custom Action="VS2013WDExpressSetup" Before="InstallFinalize" Overridable="yes" Condition="VS2013WDEXPRESS_IDE" /> | ||
241 | </InstallExecuteSequence> | ||
242 | </Fragment> | ||
243 | |||
244 | <!-- Custom action definition to run WDExpress.exe /InstallVSTemplates --> | ||
245 | <Fragment> | ||
246 | <CustomAction Id="VS2013WDExpressInstallVSTemplates" Property="VS2013WDEXPRESS_IDE" ExeCommand="/InstallVSTemplates" Execute="deferred" Return="ignore" Impersonate="no" /> | ||
247 | <PropertyRef Id="VS2013WDEXPRESS_IDE" /> | ||
248 | <InstallExecuteSequence> | ||
249 | <Custom Action="VS2013WDExpressInstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VS2013WDEXPRESS_IDE" /> | ||
250 | </InstallExecuteSequence> | ||
251 | </Fragment> | ||
252 | </Wix> | ||