summaryrefslogtreecommitdiff
path: root/src/ext/VisualStudio/wixlib/VS14.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/VisualStudio/wixlib/VS14.wxs')
-rw-r--r--src/ext/VisualStudio/wixlib/VS14.wxs186
1 files changed, 186 insertions, 0 deletions
diff --git a/src/ext/VisualStudio/wixlib/VS14.wxs b/src/ext/VisualStudio/wixlib/VS14.wxs
new file mode 100644
index 00000000..83449802
--- /dev/null
+++ b/src/ext/VisualStudio/wixlib/VS14.wxs
@@ -0,0 +1,186 @@
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="VS14_EXTENSIONS_DIR" Secure="yes">
7 <RegistrySearch Id="VS14DevEnvForExtensionsSearch" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\14.0\Setup\VS" Name="EnvironmentDirectory" Type="raw">
8 <DirectorySearch Id="VS14ExtensionsPathSearch" Path="Extensions" Depth="1" />
9 </RegistrySearch>
10 </Property>
11 </Fragment>
12
13 <Fragment>
14 <Property Id="VS14_PROJECTTEMPLATES_DIR" Secure="yes">
15 <RegistrySearch Id="VS14DevEnvForProjectTemplatesSearch" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\14.0\Setup\VS" Name="EnvironmentDirectory" Type="raw">
16 <DirectorySearch Id="VS14ProjectTemplatesPathSearch" Path="ProjectTemplates" Depth="1" />
17 </RegistrySearch>
18 </Property>
19 </Fragment>
20
21 <Fragment>
22 <Property Id="VS14_SCHEMAS_DIR" Secure="yes">
23 <RegistrySearch Id="VS14ProductPathSearch" Root="HKLM" Key="Software\Microsoft\VisualStudio\SxS\VS7" Name="14.0" Type="raw">
24 <DirectorySearch Id="VS14XmlPathSearch" Path="Xml" Depth="1">
25 <DirectorySearch Id="VS14XmlSchemasPathSearch" Path="Schemas" Depth="1" />
26 </DirectorySearch>
27 </RegistrySearch>
28 </Property>
29 </Fragment>
30
31 <Fragment>
32 <Property Id="VS14_ITEMTEMPLATES_DIR" Secure="yes">
33 <RegistrySearch Id="VS14DevEnvForItemTemplatesSearch" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\14.0\Setup\VS" Name="EnvironmentDirectory" Type="raw">
34 <DirectorySearch Id="VS14ItemTemplatesPathSearch" Path="ItemTemplates" Depth="1" />
35 </RegistrySearch>
36 </Property>
37 </Fragment>
38
39 <Fragment>
40 <Property Id="VS14_BOOTSTRAPPER_PACKAGE_FOLDER" Secure="yes">
41 <RegistrySearch Id="SearchForVS14BootstrapperPackageFolder" Root="HKLM" Key="Software\Microsoft\GenericBootstrapper\4.0" Name="Path" Type="raw" />
42 </Property>
43 </Fragment>
44
45 <Fragment>
46 <Property Id="VS14_ROOT_FOLDER" Secure="yes">
47 <RegistrySearch Id="SearchForVS14RootPath" Root="HKLM" Key="Software\Microsoft\VisualStudio\SxS\VS7" Name="14.0" Type="raw" />
48 </Property>
49 </Fragment>
50
51 <Fragment>
52 <Property Id="VS14DEVENV" Secure="yes">
53 <RegistrySearch Id="VS14DevEnvSearch" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\14.0\Setup\VS" Name="EnvironmentPath" Type="raw" />
54 </Property>
55 </Fragment>
56
57 <Fragment>
58 <CustomAction Id="VS14Setup" Property="VS14DEVENV" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" />
59 <PropertyRef Id="VS14DEVENV" />
60
61 <InstallExecuteSequence>
62 <Custom Action="VS14Setup" Before="InstallFinalize" Overridable="yes" Condition="VS14DEVENV" />
63 </InstallExecuteSequence>
64 </Fragment>
65
66 <Fragment>
67 <CustomAction Id="VS14InstallVSTemplates" Property="VS14DEVENV" ExeCommand="/InstallVSTemplates" Execute="deferred" Return="ignore" Impersonate="no" />
68 <PropertyRef Id="VS14DEVENV" />
69
70 <InstallExecuteSequence>
71 <Custom Action="VS14InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VS14DEVENV" />
72 </InstallExecuteSequence>
73 </Fragment>
74
75 <!-- Indicates whether the Visual C# project system is installed as a part of -->
76 <!-- Visual Studio 14 standard or higher. If this property is set, that -->
77 <!-- means Visual Studio 14 standard or higher is installed and the Visual -->
78 <!-- C# language tools were installed as a part of VS 14 setup. -->
79 <Fragment>
80 <Property Id="VS14_IDE_VCSHARP_PROJECTSYSTEM_INSTALLED" Secure="yes">
81 <RegistrySearch Id="SearchForVCS14ProjectSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\14.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 14 standard or higher. If this property is set, that -->
87 <!-- means Visual Studio 14 standard or higher is installed and the Visual -->
88 <!-- Basic language tools were installed as a part of VS 14 setup. -->
89 <Fragment>
90 <Property Id="VS14_IDE_VB_PROJECTSYSTEM_INSTALLED" Secure="yes">
91 <RegistrySearch Id="SearchForVB14ProjectSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\14.0\Setup\VB" Name="ProductDir" Type="raw" />
92 </Property>
93 </Fragment>
94
95 <!-- Indicates whether the Visual Web Developer 14 Express IDE component is installed. -->
96 <!-- If this property is set, that means Visual Web Developer 14 Express Edition is -->
97 <!-- installed on the system. -->
98 <Fragment>
99 <Property Id="VWD14EXPRESS_IDE" Secure="yes">
100 <RegistrySearch Id="VWD14ExpressSearch" Root="HKLM" Key="SOFTWARE\Microsoft\VWDExpress\14.0\Setup\VS" Name="EnvironmentPath" Type="raw" />
101 </Property>
102 </Fragment>
103 <!-- Custom action definition to run vwdexpress.exe /setup -->
104 <Fragment>
105 <CustomAction Id="VWD14Setup" Property="VWD14EXPRESS_IDE" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" />
106 <PropertyRef Id="VWD14EXPRESS_IDE" />
107 <InstallExecuteSequence>
108 <Custom Action="VWD14Setup" Before="InstallFinalize" Overridable="yes" Condition="VWD14EXPRESS_IDE" />
109 </InstallExecuteSequence>
110 </Fragment>
111 <!-- Custom action definition to run vwdexpress.exe /InstallVSTemplates -->
112 <Fragment>
113 <CustomAction Id="VWD14InstallVSTemplates" Property="VWD14EXPRESS_IDE" ExeCommand="/InstallVSTemplates" Execute="deferred" Return="ignore" Impersonate="no" />
114 <PropertyRef Id="VWD14EXPRESS_IDE" />
115 <InstallExecuteSequence>
116 <Custom Action="VWD14InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VWD14EXPRESS_IDE" />
117 </InstallExecuteSequence>
118 </Fragment>
119
120 <!-- Indicates whether the Visual Web Developer project system is installed as a part of -->
121 <!-- Visual Studio 14 standard or higher. If this property is set, that -->
122 <!-- means Visual Studio 14 standard or higher is installed and the Visual -->
123 <!-- Web Developer language tools were installed as a part of VS 14 setup. -->
124 <Fragment>
125 <Property Id="VS14_IDE_VWD_PROJECTSYSTEM_INSTALLED" Secure="yes">
126 <ComponentSearch Id="SearchForVWD14ProjectSystemUnderVSSetup" Guid="274EB373-6B78-5EBD-8A6C-6D8094E58ECB" />
127 <ComponentSearch Id="SearchForVWD14ProjectSystemUnderVWDSetup" Guid="71EBDA4A-4A15-426F-95C4-4FC051FD7AA4" Type="directory" />
128 </Property>
129 </Fragment>
130
131 <!-- Indicates whether the Visual C++ project system is installed as a part of -->
132 <!-- Visual Studio 14 standard or higher. If this property is set, that -->
133 <!-- means Visual Studio 14 standard or higher is installed and the Visual -->
134 <!-- C++ language tools were installed as a part of VS 14 setup. -->
135 <Fragment>
136 <Property Id="VS14_IDE_VC_PROJECTSYSTEM_INSTALLED" Secure="yes">
137 <RegistrySearch Id="SearchForVC14ProjectSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\14.0\Setup\VC" Name="ProductDir" Type="raw" />
138 </Property>
139 </Fragment>
140
141 <!-- Indicates whether the Visual Studio 14 Team Test project system is installed -->
142 <Fragment>
143 <Property Id="VS14_IDE_VSTS_TESTSYSTEM_INSTALLED" Secure="yes">
144 <RegistrySearch Id="SearchForVSTS14TestSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\14.0\Projects\{3AC096D0-A1C2-E12C-1390-A8335801FDAB}" Name="Package" Type="raw" />
145 </Property>
146 </Fragment>
147
148 <!-- Indicates whether the Visual Studio Modeling project system is installed -->
149 <Fragment>
150 <Property Id="VS14_IDE_MODELING_PROJECTSYSTEM_INSTALLED" Secure="yes">
151 <RegistrySearch Id="SearchForVSTS14ModelingSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\14.0\Projects\{f088123c-0e9e-452a-89e6-6ba2f21d5cac}" Name="Package" Type="raw" />
152 </Property>
153 </Fragment>
154
155 <!-- Indicates whether the Visual Studio F# project system is installed -->
156 <Fragment>
157 <Property Id="VS14_IDE_FSHARP_PROJECTSYSTEM_INSTALLED" Secure="yes">
158 <RegistrySearch Id="SearchForVSTS14FSharpSystemUnderVSSetup" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\14.0\Setup\F#" Name="ProductDir" Type="raw" />
159 </Property>
160 </Fragment>
161
162 <!-- Indicates whether the Visual Studio Express for Windows IDE component is installed. -->
163 <!-- If this property is set, that means Visual Studio Express for Windows is installed -->
164 <!-- on the system. -->
165 <Fragment>
166 <Property Id="VS14WINEXPRESS_IDE" Secure="yes">
167 <RegistrySearch Id="VS14WinExpressSearch" Root="HKLM" Key="SOFTWARE\Microsoft\VSWinExpress\14.0\Setup\VS" Name="EnvironmentPath" Type="raw" />
168 </Property>
169 </Fragment>
170 <!-- Custom action definition to run vswinexpress.exe /setup -->
171 <Fragment>
172 <CustomAction Id="VS14WinExpressSetup" Property="VS14WINEXPRESS_IDE" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" />
173 <PropertyRef Id="VS14WINEXPRESS_IDE" />
174 <InstallExecuteSequence>
175 <Custom Action="VS14WinExpressSetup" Before="InstallFinalize" Overridable="yes" Condition="VS14WINEXPRESS_IDE" />
176 </InstallExecuteSequence>
177 </Fragment>
178 <!-- Custom action definition to run vswinexpress.exe /InstallVSTemplates -->
179 <Fragment>
180 <CustomAction Id="VS14WinExpressInstallVSTemplates" Property="VS14WINEXPRESS_IDE" ExeCommand="/InstallVSTemplates" Execute="deferred" Return="ignore" Impersonate="no" />
181 <PropertyRef Id="VS14WINEXPRESS_IDE" />
182 <InstallExecuteSequence>
183 <Custom Action="VS14WinExpressInstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VS14WINEXPRESS_IDE" />
184 </InstallExecuteSequence>
185 </Fragment>
186</Wix>