main
wxs 27 lines 1.29 KB
Raw
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>