blob: ef852747e621c0135380c18aed6e67f09b8bf786 (
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
|
<!-- 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">
<?include ..\..\caDecor.wxi ?>
<Fragment>
<Property Id="VS2017_ROOT_FOLDER" Secure="yes" />
</Fragment>
<Fragment>
<PropertyRef Id="VS2017_ROOT_FOLDER" />
<Property Id="VS2017_IDE_DIR" Secure="yes">
<DirectorySearch Id="VS2017DirectorySearch" Path="[VS2017_ROOT_FOLDER]">
<DirectorySearch Id="VS2017EnvironmentDirectorySearch" Path="Common7\IDE" Depth="1" />
</DirectorySearch>
</Property>
</Fragment>
<Fragment>
<Property Id="VS2017_EXTENSIONS_DIR" Secure="yes">
<DirectorySearchRef Id="VS2017EnvironmentDirectorySearch" Parent="VS2017DirectorySearch" Path="Common7\IDE">
<DirectorySearch Id="VS2017ExtensionsDirectorySearch" Path="Extensions" Depth="1" />
</DirectorySearchRef>
</Property>
</Fragment>
<Fragment>
<Property Id="VS2017_PROJECTTEMPLATES_DIR" Secure="yes">
<DirectorySearchRef Id="VS2017EnvironmentDirectorySearch" Parent="VS2017DirectorySearch" Path="Common7\IDE">
<DirectorySearch Id="VS2017ProjectTemplatesDirectorySearch" Path="ProjectTemplates" Depth="1" />
</DirectorySearchRef>
</Property>
</Fragment>
<Fragment>
<PropertyRef Id="VS2017_ROOT_FOLDER" />
<Property Id="VS2017_SCHEMAS_DIR" Secure="yes">
<DirectorySearch Id="VS2017XmlDirectorySearch" Path="[VS2017_ROOT_FOLDER]\Xml" Depth="1">
<DirectorySearch Id="VS2017XmlSchemasDirectorySearch" Path="Schemas" Depth="1" />
</DirectorySearch>
</Property>
</Fragment>
<Fragment>
<Property Id="VS2017_ITEMTEMPLATES_DIR" Secure="yes">
<DirectorySearchRef Id="VS2017EnvironmentDirectorySearch" Parent="VS2017DirectorySearch" Path="Common7\IDE">
<DirectorySearch Id="VS2017ItemTemplatesDirectorySearch" Path="ItemTemplates" Depth="1" />
</DirectorySearchRef>
</Property>
</Fragment>
<Fragment>
<PropertyRef Id="VS2017_ROOT_FOLDER" />
<Property Id="VS2017_BOOTSTRAPPER_PACKAGE_FOLDER" Secure="yes">
<DirectorySearch Id="VS2017SDKDirectorySearch" Path="[VS2017_ROOT_FOLDER]\SDK" Depth="1">
<DirectorySearch Id="SearchForVS2017BootstrapperPackageDirectory" Path="Bootstrapper" Depth="1" />
</DirectorySearch>
</Property>
</Fragment>
<Fragment>
<Property Id="VS2017DEVENV" Secure="yes">
<DirectorySearchRef Id="VS2017EnvironmentDirectorySearch" Parent="VS2017DirectorySearch" Path="Common7\IDE">
<FileSearch Id="VS2017DevEnvSearch" Name="devenv.exe" />
</DirectorySearchRef>
</Property>
</Fragment>
<Fragment>
<CustomAction Id="VS2017Setup" Property="VS2017DEVENV" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" />
<PropertyRef Id="VS2017DEVENV" />
<InstallExecuteSequence>
<Custom Action="VS2017Setup" Before="InstallFinalize" Overridable="yes" Condition="VS2017DEVENV" />
</InstallExecuteSequence>
</Fragment>
<Fragment>
<CustomAction Id="VS2017InstallVSTemplates" Property="VS2017DEVENV" ExeCommand="/InstallVSTemplates" Execute="deferred" Return="ignore" Impersonate="no" />
<PropertyRef Id="VS2017DEVENV" />
<InstallExecuteSequence>
<Custom Action="VS2017InstallVSTemplates" Before="InstallFinalize" Overridable="yes" Condition="VS2017DEVENV" />
</InstallExecuteSequence>
</Fragment>
<!-- Indicates whether the Visual C# project system is installed as a part of -->
<!-- Visual Studio 2017 standard or higher. If this property is set, that -->
<!-- means Visual Studio 2017 standard or higher is installed and the Visual -->
<!-- C# language tools were installed as a part of VS 2017 setup. -->
<Fragment>
<Property Id="VS2017_IDE_VCSHARP_PROJECTSYSTEM_INSTALLED" Secure="yes" />
</Fragment>
<!-- Indicates whether the Visual Basic project system is installed as a part of -->
<!-- Visual Studio 2017 standard or higher. If this property is set, that -->
<!-- means Visual Studio 2017 standard or higher is installed and the Visual -->
<!-- Basic language tools were installed as a part of VS 2017 setup. -->
<Fragment>
<Property Id="VS2017_IDE_VB_PROJECTSYSTEM_INSTALLED" Secure="yes" />
</Fragment>
<!-- Indicates whether the Visual Web Developer project system is installed as a part of -->
<!-- Visual Studio 2017 standard or higher. If this property is set, that -->
<!-- means Visual Studio 2017 standard or higher is installed and the Visual -->
<!-- Web Developer language tools were installed as a part of VS 2017 setup. -->
<Fragment>
<Property Id="VS2017_IDE_VWD_PROJECTSYSTEM_INSTALLED" Secure="yes" />
</Fragment>
<!-- Indicates whether the Visual C++ project system is installed as a part of -->
<!-- Visual Studio 2017 standard or higher. If this property is set, that -->
<!-- means Visual Studio 2017 standard or higher is installed and the Visual -->
<!-- C++ language tools were installed as a part of VS 2017 setup. -->
<Fragment>
<Property Id="VS2017_IDE_VC_PROJECTSYSTEM_INSTALLED" Secure="yes" />
</Fragment>
<!-- Indicates whether the Visual Studio 2017 Team Test project system is installed -->
<Fragment>
<Property Id="VS2017_IDE_VSTS_TESTSYSTEM_INSTALLED" Secure="yes" />
</Fragment>
<!-- Indicates whether the Visual Studio Modeling project system is installed -->
<Fragment>
<Property Id="VS2017_IDE_MODELING_PROJECTSYSTEM_INSTALLED" Secure="yes" />
</Fragment>
<!-- Indicates whether the Visual Studio F# project system is installed -->
<Fragment>
<Property Id="VS2017_IDE_FSHARP_PROJECTSYSTEM_INSTALLED" Secure="yes" />
</Fragment>
</Wix>
|