diff options
Diffstat (limited to 'src/wixlib/VSExtension_Platform.wxi')
-rw-r--r-- | src/wixlib/VSExtension_Platform.wxi | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/wixlib/VSExtension_Platform.wxi b/src/wixlib/VSExtension_Platform.wxi new file mode 100644 index 00000000..30d107ef --- /dev/null +++ b/src/wixlib/VSExtension_Platform.wxi | |||
@@ -0,0 +1,18 @@ | |||
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 | <Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> | ||
5 | <?include caSuffix.wxi ?> | ||
6 | <Fragment> | ||
7 | <CustomAction Id="VSFindInstances$(var.Suffix)" BinaryKey="VSCA$(var.Suffix)" DllEntry="FindInstances" Execute="firstSequence" Return="check" SuppressModularization="yes" /> | ||
8 | <InstallExecuteSequence> | ||
9 | <Custom Action="VSFindInstances$(var.Suffix)" Before="AppSearch" Overridable="yes" /> | ||
10 | </InstallExecuteSequence> | ||
11 | <InstallUISequence> | ||
12 | <Custom Action="VSFindInstances$(var.Suffix)" Before="AppSearch" Overridable="yes" /> | ||
13 | </InstallUISequence> | ||
14 | </Fragment> | ||
15 | <Fragment> | ||
16 | <Binary Id="VSCA$(var.Suffix)" SourceFile="vsca.dll" /> | ||
17 | </Fragment> | ||
18 | </Include> | ||