diff options
Diffstat (limited to 'src/WixToolset.Data/WindowsInstaller/Xsd')
| -rw-r--r-- | src/WixToolset.Data/WindowsInstaller/Xsd/data.xsd (renamed from src/WixToolset.Data/WindowsInstaller/Xsd/outputs.xsd) | 10 | ||||
| -rw-r--r-- | src/WixToolset.Data/WindowsInstaller/Xsd/pdbs.xsd | 32 |
2 files changed, 5 insertions, 37 deletions
diff --git a/src/WixToolset.Data/WindowsInstaller/Xsd/outputs.xsd b/src/WixToolset.Data/WindowsInstaller/Xsd/data.xsd index 00e20f12..a3dc7e2b 100644 --- a/src/WixToolset.Data/WindowsInstaller/Xsd/outputs.xsd +++ b/src/WixToolset.Data/WindowsInstaller/Xsd/data.xsd | |||
| @@ -3,20 +3,20 @@ | |||
| 3 | 3 | ||
| 4 | 4 | ||
| 5 | <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" | 5 | <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" |
| 6 | targetNamespace="http://wixtoolset.org/schemas/v4/wixout" | 6 | targetNamespace="http://wixtoolset.org/schemas/v4/windowsinstallerdata" |
| 7 | xmlns="http://wixtoolset.org/schemas/v4/wixout" | 7 | xmlns="http://wixtoolset.org/schemas/v4/windowsinstallerdata" |
| 8 | xmlns:objs="http://wixtoolset.org/schemas/v4/wixobj" | 8 | xmlns:objs="http://wixtoolset.org/schemas/v4/wixobj" |
| 9 | xmlns:tbls="http://wixtoolset.org/schemas/v4/wi/tables"> | 9 | xmlns:tbls="http://wixtoolset.org/schemas/v4/wi/tables"> |
| 10 | <xs:annotation> | 10 | <xs:annotation> |
| 11 | <xs:documentation> | 11 | <xs:documentation> |
| 12 | Schema for describing WiX Output files (.wixout). | 12 | Schema for describing WiX Windows Installer Data files. |
| 13 | </xs:documentation> | 13 | </xs:documentation> |
| 14 | </xs:annotation> | 14 | </xs:annotation> |
| 15 | 15 | ||
| 16 | <xs:import namespace="http://wixtoolset.org/schemas/v4/wixobj" schemaLocation="objects.xsd" /> | 16 | <xs:import namespace="http://wixtoolset.org/schemas/v4/wixobj" schemaLocation="objects.xsd" /> |
| 17 | <xs:import namespace="http://wixtoolset.org/schemas/v4/wi/tables" schemaLocation="tables.xsd" /> | 17 | <xs:import namespace="http://wixtoolset.org/schemas/v4/wi/tables" schemaLocation="tables.xsd" /> |
| 18 | 18 | ||
| 19 | <xs:element name="wixOutput"> | 19 | <xs:element name="windowsInstallerData"> |
| 20 | <xs:complexType> | 20 | <xs:complexType> |
| 21 | <xs:sequence> | 21 | <xs:sequence> |
| 22 | <xs:element ref="tbls:tableDefinitions" /> | 22 | <xs:element ref="tbls:tableDefinitions" /> |
| @@ -54,7 +54,7 @@ | |||
| 54 | <xs:element name="subStorage"> | 54 | <xs:element name="subStorage"> |
| 55 | <xs:complexType> | 55 | <xs:complexType> |
| 56 | <xs:sequence minOccurs="1" maxOccurs="1"> | 56 | <xs:sequence minOccurs="1" maxOccurs="1"> |
| 57 | <xs:element ref="wixOutput" /> | 57 | <xs:element ref="windowsInstallerData" /> |
| 58 | </xs:sequence> | 58 | </xs:sequence> |
| 59 | <xs:attribute name="name" type="xs:string"> | 59 | <xs:attribute name="name" type="xs:string"> |
| 60 | <xs:annotation> | 60 | <xs:annotation> |
diff --git a/src/WixToolset.Data/WindowsInstaller/Xsd/pdbs.xsd b/src/WixToolset.Data/WindowsInstaller/Xsd/pdbs.xsd deleted file mode 100644 index c1d1756d..00000000 --- a/src/WixToolset.Data/WindowsInstaller/Xsd/pdbs.xsd +++ /dev/null | |||
| @@ -1,32 +0,0 @@ | |||
| 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 | targetNamespace="http://wixtoolset.org/schemas/v4/wixpdb" | ||
| 7 | xmlns="http://wixtoolset.org/schemas/v4/wixpdb" | ||
| 8 | xmlns:outs="http://wixtoolset.org/schemas/v4/wixout"> | ||
| 9 | <xs:annotation> | ||
| 10 | <xs:documentation> | ||
| 11 | Schema for describing WiX Pdb files (.wixpdb). | ||
| 12 | </xs:documentation> | ||
| 13 | </xs:annotation> | ||
| 14 | |||
| 15 | <xs:import namespace="http://wixtoolset.org/schemas/v4/wixobj" schemaLocation="objects.xsd" /> | ||
| 16 | <xs:import namespace="http://wixtoolset.org/schemas/v4/wixout" schemaLocation="outputs.xsd" /> | ||
| 17 | <xs:import namespace="http://wixtoolset.org/schemas/v4/wi/tables" schemaLocation="tables.xsd" /> | ||
| 18 | |||
| 19 | <xs:element name="wixPdb"> | ||
| 20 | <xs:complexType> | ||
| 21 | <xs:sequence> | ||
| 22 | <xs:element ref="outs:wixOutput" minOccurs="0" maxOccurs="unbounded" /> | ||
| 23 | </xs:sequence> | ||
| 24 | |||
| 25 | <xs:attribute name="version" type="xs:string" use="required"> | ||
| 26 | <xs:annotation> | ||
| 27 | <xs:documentation>Version of WiX used to create this pdb file</xs:documentation> | ||
| 28 | </xs:annotation> | ||
| 29 | </xs:attribute> | ||
| 30 | </xs:complexType> | ||
| 31 | </xs:element> | ||
| 32 | </xs:schema> | ||
