| 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 | <Include xmlns="http://wixtoolset.org/schemas/v4/wxs"> |
| 5 | <?include ..\..\caDecor.wxi ?> |
| 6 | |
| 7 | <!-- DirectX Custom Action DLL Definitions --> |
| 8 | <Fragment> |
| 9 | <Binary Id="$(var.Prefix)DXCA$(var.Suffix)" SourceFile="!(bindpath.$(var.platform))dxca.dll" /> |
| 10 | </Fragment> |
| 11 | |
| 12 | <Fragment> |
| 13 | <CustomAction Id="$(var.Prefix)QueryDirectXCaps$(var.Suffix)" DllEntry="WixQueryDirectXCaps" Return="ignore" BinaryRef="$(var.Prefix)DXCA$(var.Suffix)" /> |
| 14 | |
| 15 | <InstallUISequence> |
| 16 | <Custom Action="virtual $(var.Prefix)QueryDirectXCaps$(var.Suffix)" Before="LaunchConditions" /> |
| 17 | </InstallUISequence> |
| 18 | |
| 19 | <InstallExecuteSequence> |
| 20 | <Custom Action="virtual $(var.Prefix)QueryDirectXCaps$(var.Suffix)" Before="LaunchConditions" /> |
| 21 | </InstallExecuteSequence> |
| 22 | </Fragment> |
| 23 | </Include> |