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