summaryrefslogtreecommitdiff
path: root/src/ext/VisualStudio/wixlib/VS2003.wxs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2021-05-04 22:50:56 -0700
committerRob Mensching <rob@firegiant.com>2021-05-04 22:50:56 -0700
commita8a1e0d6f99c2b902a8f81d3d7f3503c506e8171 (patch)
treef003003bf293bb5f2a2db368acfd98639d315d44 /src/ext/VisualStudio/wixlib/VS2003.wxs
parente137eef6a20999a37a137414b8c8b9a8f5af3cd4 (diff)
downloadwix-a8a1e0d6f99c2b902a8f81d3d7f3503c506e8171.tar.gz
wix-a8a1e0d6f99c2b902a8f81d3d7f3503c506e8171.tar.bz2
wix-a8a1e0d6f99c2b902a8f81d3d7f3503c506e8171.zip
Move VisualStudio.wixext into ext
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>