blob: 1e5d36d986c26bdea336400ebc468b428820f90b (
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
|
<!-- 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">
<!-- Visual Studio 2003 .NET -->
<Fragment>
<Property Id="VS2003DEVENV" Secure="yes">
<RegistrySearch Id="VS2003DevEnvSearch" Root="HKLM" Key="SOFTWARE\Microsoft\VisualStudio\7.1\Setup\VS" Name="EnvironmentPath" Type="raw" />
</Property>
</Fragment>
<Fragment>
<CustomAction Id="VS2003Setup" Property="VS2003DEVENV" ExeCommand="/setup" Execute="deferred" Return="ignore" Impersonate="no" />
<PropertyRef Id="VS2003DEVENV" />
<InstallExecuteSequence>
<Custom Action="VS2003Setup" Before="InstallFinalize" Overridable="yes" Condition="VS2003DEVENV" />
</InstallExecuteSequence>
</Fragment>
<!-- Indicates whether or not the J# redistributable package 1.1 is installed. -->
<Fragment>
<Property Id="JSHARP_REDIST_11_INSTALLED" Secure="yes">
<RegistrySearch Id="JSharpRedist11RegKey" Root="HKLM" Key="Software\Microsoft\Visual JSharp Setup\Redist\v1.1.4322" Name="Install" Type="raw" />
</Property>
</Fragment>
</Wix>
|