You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
2.1 KiB
44 lines
2.1 KiB
<?xml version="1.0"?>
|
|
<Schema name="Microsoft per Appliction Configuration Schema" xmlns="urn:schemas-microsoft-com:xml-data"
|
|
xmlns:dt="urn:schemas-microsoft-com:datatypes">
|
|
<!-- Attributes -->
|
|
<AttributeType name="manifestVersion" dt:type="enumeration" dt:values="1.0"/>
|
|
<AttributeType name="name" dt:type="string"/>
|
|
<AttributeType name="type" dt:type="enumeration" dt:values="win32-policy" required="yes"/>
|
|
<AttributeType name="publicKeyToken" dt:type="string"/>
|
|
<AttributeType name="language" dt:type="string"/>
|
|
<AttributeType name="processorArchitecture" dt:type="string"/>
|
|
<AttributeType name="version" dt:type="string"/>
|
|
<AttributeType name="oldVersion" dt:type="string"/>
|
|
<AttributeType name="newVersion" dt:type="string"/>
|
|
|
|
<!-- Elements-->
|
|
<ElementType name="configuration" model = "closed" content="eltOnly">
|
|
<element type ="windows" minOccurs="0" maxOccurs="1"/>
|
|
</ElementType>
|
|
<ElementType name="windows" content="eltOnly">
|
|
<element type="assemblyBinding" minOccurs="0" maxOccurs="1"/>
|
|
</ElementType>
|
|
<ElementType name="assemblyBinding" content="eltOnly">
|
|
<element type="assemblyIdentity" minOccurs="1" maxOccurs="1"/>
|
|
<element type="dependentAssembly" minOccurs="0" maxOccurs="*"/>
|
|
</ElementType>
|
|
<ElementType name="assemblyIdentity" model = "closed">
|
|
<attribute type="type" required="yes"/>
|
|
<attribute type="name" required="yes"/>
|
|
<attribute type="publicKeyToken" required="no"/>
|
|
<attribute type="language" required="no"/>
|
|
<attribute type="processorArchitecture" required="yes" />
|
|
<attribute type="version" required="no"/>
|
|
</ElementType>
|
|
<ElementType name="dependentAssembly" model = "closed" content="eltOnly">
|
|
<element type="assemblyIdentity" minOccurs="1" maxOccurs="1"/>
|
|
<element type="bindingRedirect" minOccurs="1" maxOccurs="1"/>
|
|
</ElementType>
|
|
<ElementType name="bindingRedirect" model = "closed">
|
|
<attribute type="oldVersion" required="yes"/>
|
|
<attribute type="newVersion" required="yes"/>
|
|
</ElementType>
|
|
</Schema>
|
|
|
|
|