diff options
author | Rob Mensching <rob@firegiant.com> | 2025-02-14 12:53:59 -0800 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2025-03-18 15:55:06 -0700 |
commit | 777b28beb32b2013e9feb77a9a18af397265f4ba (patch) | |
tree | a4700ebafdb4ad80be301a6814a490e7b189b202 /src/xsd/directx.xsd | |
parent | 1f48dfeb5bc15bb9d3e90ac6b236dbff77819561 (diff) | |
download | wix-777b28beb32b2013e9feb77a9a18af397265f4ba.tar.gz wix-777b28beb32b2013e9feb77a9a18af397265f4ba.tar.bz2 wix-777b28beb32b2013e9feb77a9a18af397265f4ba.zip |
Migrate XSDs from web project
This is the new home for the XSDs. Closer to the code to hopefully be kept
better up to date as changes happen to the language.
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> | ||