aboutsummaryrefslogtreecommitdiff
path: root/src/ext/VisualStudio/wixlib/VS2003.wxs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ext/VisualStudio/wixlib/VS2003.wxs')
-rw-r--r--src/ext/VisualStudio/wixlib/VS2003.wxs27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/ext/VisualStudio/wixlib/VS2003.wxs b/src/ext/VisualStudio/wixlib/VS2003.wxs
new file mode 100644
index 00000000..1e5d36d9
--- /dev/null
+++ b/src/ext/VisualStudio/wixlib/VS2003.wxs
@@ -0,0 +1,27 @@
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 <!-- Visual Studio 2003 .NET -->
6 <Fragment>
7 <Property Id="VS2003DEVENV" Secure="yes">
8 <RegistrySearch Id="VS2003DevEnvSearch" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\7.1\Setup\VS" Name="EnvironmentPath" Type="raw" />
9 </Property>
10 </Fragment>
11
12 <Fragment>
13 <CustomAction Id="VS2003Setup" Property="VS2003DEVENV" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" />
14 <PropertyRef Id="VS2003DEVENV" />
15
16 <InstallExecuteSequence>
17 <Custom Action="VS2003Setup" Before="InstallFinalize" Overridable="yes" Condition="VS2003DEVENV" />
18 </InstallExecuteSequence>
19 </Fragment>
20
21 <!-- Indicates whether or not the J# redistributable package 1.1 is installed. -->
22 <Fragment>
23 <Property Id="JSHARP_REDIST_11_INSTALLED" Secure="yes">
24 <RegistrySearch Id="JSharpRedist11RegKey" Root="HKLM" Key="Software\Microsoft\Visual JSharp Setup\Redist\v1.1.4322" Name="Install" Type="raw" />
25 </Property>
26 </Fragment>
27</Wix>