diff options
Diffstat (limited to 'src/xsd/directx.xsd')
-rw-r--r-- | src/xsd/directx.xsd | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/src/xsd/directx.xsd b/src/xsd/directx.xsd new file mode 100644 index 00000000..efac3587 --- /dev/null +++ b/src/xsd/directx.xsd | |||
@@ -0,0 +1,53 @@ | |||
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 | |||
5 | <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | ||
6 | xmlns:xse="http://wixtoolset.org/schemas/XmlSchemaExtension" | ||
7 | xmlns:html="http://www.w3.org/1999/xhtml" | ||
8 | xmlns:wxs="http://wixtoolset.org/schemas/v4/wxs" | ||
9 | targetNamespace="http://wixtoolset.org/schemas/v4/wxs/directx" | ||
10 | xmlns="http://wixtoolset.org/schemas/v4/wxs/directx"> | ||
11 | <xs:annotation> | ||
12 | <xs:documentation> | ||
13 | The source code schema for the WiX Toolset DirectX Extension. | ||
14 | </xs:documentation> | ||
15 | </xs:annotation> | ||
16 | |||
17 | <xs:import namespace="http://wixtoolset.org/schemas/v4/wxs" /> | ||
18 | |||
19 | <xs:element name="GetCapabilities"> | ||
20 | <xs:annotation> | ||
21 | <xs:appinfo> | ||
22 | <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Fragment" /> | ||
23 | <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Module" /> | ||
24 | <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="Package" /> | ||
25 | <xse:parent namespace="http://wixtoolset.org/schemas/v4/wxs" ref="UI" /> | ||
26 | </xs:appinfo> | ||
27 | <xs:documentation> | ||
28 | Schedules the WixToolset.DirectX.wixext custom action for the current platform to | ||
29 | detect DirectX capabilities. For more information, see [DirectX custom actions](../../../tools/wixext/directx). | ||
30 | </xs:documentation> | ||
31 | </xs:annotation> | ||
32 | <xs:complexType> | ||
33 | <xs:choice minOccurs="0" maxOccurs="unbounded"> | ||
34 | <xs:any namespace="##other" processContents="lax"> | ||
35 | <xs:annotation> | ||
36 | <xs:documentation> | ||
37 | Extensibility point in the WiX XML Schema. Schema extensions can register additional | ||
38 | elements at this point in the schema. | ||
39 | </xs:documentation> | ||
40 | </xs:annotation> | ||
41 | </xs:any> | ||
42 | </xs:choice> | ||
43 | <xs:anyAttribute namespace="##other" processContents="lax"> | ||
44 | <xs:annotation> | ||
45 | <xs:documentation> | ||
46 | Extensibility point in the WiX XML Schema. Schema extensions can register additional | ||
47 | attributes at this point in the schema. | ||
48 | </xs:documentation> | ||
49 | </xs:annotation> | ||
50 | </xs:anyAttribute> | ||
51 | </xs:complexType> | ||
52 | </xs:element> | ||
53 | </xs:schema> | ||